Skip to content

Instantly share code, notes, and snippets.

@YouthBread
Last active December 17, 2023 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save YouthBread/4481cdd85d60a503a986d658404232c8 to your computer and use it in GitHub Desktop.
Save YouthBread/4481cdd85d60a503a986d658404232c8 to your computer and use it in GitHub Desktop.
Basketball court - Interactive
license: mit

Intro

This is a basketball court that I implemented using D3.jS. This court has a interactive feature that user can use a slider to choose a specific season's data. The initial version of this visualization is plotting the marks for each shot is using the intuitive green dot and red cross which represent those he made and those he missed. And the data update is following the general update pattern.

After looking at the suggestion from professor, I switch to use contour map for better display. When Kobe shoots a lot in a single seaon, the marks will overlap but the heatmap will not.

Interaction Part

User can use the slider to choose a specific season's Kobe Bryant shoting data. Begin with his rookie season 1996-97 and ending with his final season 2015-16. By using the control, the basketball court will automatically update the data represent different season. The heatmap will show where Kobe liked to make his moves.

Reference

The contour is referencing Mike Bostock's block Density Contours

The Slider is referencing Andrew Wang's block Chart Slider

The function that I use to draw the arc of the court is referencing virajsanghvi/d3.basketball-shot-chart.

The size of the court is referencing Basketball Court Dimensions & Measurements

function add_court_component(){
var Basket = court_g.append('circle');
var Backboard = court_g.append('rect');
var Outterbox = court_g.append('rect');
var Innerbox = court_g.append('rect');
var CornerThreeLeft = court_g.append('rect');
var CornerThreeRight = court_g.append('rect');
var OuterLine = court_g.append('rect');
}
function draw_court(){
const width = 480;
const height = width/50*47;
court_g.attr("width", width)
.attr("height", height)
const innerWidth = width - margin.left - margin.right;
const innerHeight = height - margin.top - margin.bottom;
court_xScale.range([margin.left, innerWidth])
.nice();
court_yScale.range([margin.top, innerHeight])
.nice();
Basket.attr('cx', court_xScale(0))
.attr('cy', court_yScale(-0.75))
.attr('r', court_yScale(0.75)-court_yScale(0))
.style('fill', 'None')
.style('stroke', 'black');
Backboard.attr('x', court_xScale(-3))
.attr('y', court_yScale(-1.5))
.attr('width', court_xScale(3)-court_xScale(-3))
.attr('height', 1)
.style('fill', 'none')
.style('stroke', 'black');
Outterbox
.attr('x', court_xScale(-8))
.attr('y', court_yScale(-4))
.attr('width', court_xScale(8)-court_xScale(-8))
.attr('height', court_yScale(15)-court_yScale(-4))
.style('fill', 'none')
.style('stroke', 'black');
Innerbox
.attr('x', court_xScale(-6))
.attr('y', court_yScale(-4))
.attr('width', court_xScale(6)-court_xScale(-6))
.attr('height', court_yScale(15)-court_yScale(-4))
.style('fill', 'none')
.style('stroke', 'black');
CornerThreeLeft
.attr('x', court_xScale(-22))
.attr('y', court_yScale(-4))
.attr('width', 1)
.attr('height', court_yScale(10)-court_yScale(-4))
.style('fill', 'none')
.style('stroke', 'black');
CornerThreeRight
.attr('x', court_xScale(22))
.attr('y', court_yScale(-4))
.attr('width', 1)
.attr('height', court_yScale(10)-court_yScale(-4))
.style('fill', 'none')
.style('stroke', 'black');
OuterLine
.attr('x', court_xScale(-25))
.attr('y', court_yScale(-4))
.attr('width', court_xScale(25)-court_xScale(-25))
.attr('height', court_yScale(43)-court_yScale(-4))
.style('fill', 'none')
.style('stroke', 'black');
appendArcPath(RestrictedArea, court_xScale(3)-court_xScale(0), (90)*(Math.PI/180), (270)*(Math.PI/180))
.attr('fill', 'none')
.attr("stroke", "black")
.attr("transform", "translate(" + court_xScale(0) + ", " +court_yScale(-0.75) +")");
appendArcPath(TopFreeThrow, court_xScale(6)-court_xScale(0), (90)*(Math.PI/180), (270)*(Math.PI/180))
.attr('fill', 'none')
.attr("stroke", "black")
.attr("transform", "translate(" + court_xScale(0) + ", " +court_yScale(15) +")");
appendArcPath(BottomFreeThrow, court_xScale(6)-court_xScale(0), (-90)*(Math.PI/180), (90)*(Math.PI/180))
.attr('fill', 'none')
.attr("stroke", "black")
.style("stroke-dasharray", ("3, 3"))
.attr("transform", "translate(" + court_xScale(0) + ", " +court_yScale(15) +")");
var angle = Math.atan((10-0.75)/(22))* 180 / Math.PI
var dis = court_yScale(18);
appendArcPath(ThreeLine, dis, (angle+90)*(Math.PI/180), (270-angle)*(Math.PI/180))
.attr('fill', 'none')
.attr("stroke", "black")
.attr('class', 'shot-chart-court-3pt-line')
.attr("transform", "translate(" + court_xScale(0) + ", " +court_yScale(0) +")");
appendArcPath(CenterOuter, court_xScale(6)-court_xScale(0), (-90)*(Math.PI/180), (90)*(Math.PI/180))
.attr('fill', 'none')
.attr("stroke", "black")
.attr("transform", "translate(" + court_xScale(0) + ", " +court_yScale(43) +")");
appendArcPath(CenterInner, court_xScale(2)-court_xScale(0), (-90)*(Math.PI/180), (90)*(Math.PI/180))
.attr('fill', 'none')
.attr("stroke", "black")
.attr("transform", "translate(" + court_xScale(0) + ", " +court_yScale(43) +")");
}
function appendArcPath(base, radius, startAngle, endAngle) {
var points = 30;
var angle = d3.scaleLinear()
.domain([0, points - 1])
.range([startAngle, endAngle]);
var line = d3.lineRadial()
.radius(radius)
.angle(function(d, i) { return angle(i); });
return base.datum(d3.range(points))
.attr("d", line);
}
function Heat_Map(year){
const width = 480;
const height = width/50*47;
const innerWidth = width - margin.left - margin.right;
const innerHeight = height - margin.top - margin.bottom;
shot_xScale.range([margin.left, innerWidth])
.nice();
shot_yScale.range([margin.top, innerHeight])
.nice();
d3.csv('kobe.csv', data => {
//filtering the unreasonable shot
var data = data.filter(d=>d.loc_y < 400)
var temp_data = d3.nest()
.key(function(d) { return d.season; })
.entries(data);
var target = (year.getFullYear()).toString()+'-'+(year.getFullYear()+1).toString().substring(2, 4)
temp_data = temp_data.filter(d=>d.key==target);
var shot = temp_data[0].values;
shot = d3.contourDensity()
.x(function(d) { return shot_xScale(d.loc_x); })
.y(function(d) { return shot_yScale(d.loc_y); })
.size([innerWidth, innerHeight])
.bandwidth(30)
(shot)
var heatmap = heat_g.selectAll('path').data(shot)
heatmap.exit().remove();
heatmap
.attr('fill', 'none')
.attr('stroke', '#000')
.attr('stroke-width', 0)
.attr('stroke-linejoin', 'round')
.enter().append('path')
.merge(heatmap)
.attr('fill', function(d) { return color(d.value); })
.attr('d', d3.geoPath());
// var shot_contour = heat_g.selectAll('.heat_map').data(d3.contourDensity()
// .x(function(d) { return shot_xScale(d.loc_x); })
// .y(function(d) { return shot_yScale(d.loc_y); })
// .size([innerWidth, innerHeight])
// .bandwidth(10)
// (shot))
// console.log(shot_contour)
// shot_contour.exit().remove();
// heat_g
// .enter().append('path')
// .merge(shot_contour)
// .attr('class','heat_map')
// .attr('fill', 'none')
// .attr('stroke', '#000')
// .attr('stroke-width', 0.5)
// .attr('stroke-linejoin', 'round')
// .attr('fill', function(d) { return color(d.value); })
// .attr('d', d3.geoPath());
});
}
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width'>
<script src='https://d3js.org/d3.v4.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3-legend/2.24.0/d3-legend.min.js'></script>
<script src="https://d3js.org/d3-contour.v1.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src='Court.js'></script>
<script src='Shot.js'></script>
<script src='Slider.js'></script>
<script src='Table.js'></script>
<script src='HeatMap.js'></script>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700' rel='stylesheet'>
<title>Visualization Project</title>
<link rel='stylesheet' href='css/styles.css'>
</head>
<body>
<style>
body {
font-family: 'Open Sans', sans-serif;
}
#court {
position: fixed;
left: 0px;
right: 0px;
top: 50px;
bottom: 0px;
}
.slider rect {
fill: gray;
shape-rendering: crispEdges;
}
.slider line {
fill: none;
stroke: red;
opacity: 0.3;
shape-rendering: crispEdges;
}
</style>
<h2 id='caption'></h2>
<div id='court'></div>
<div id='stats'></div>
<script>
const margin = { left: 20, right: 20, top: 20, bottom: 20 };
var chartDiv = document.getElementById('court');
var court = d3.select(chartDiv).append('court').append('svg');
court.attr('width', 480)
.attr('height', 480/50*47)
court.append('table');
var heat_g = court.append('g')
var court_g = court.append('g');
var title = d3.select(document.getElementById('caption')).append('text');
// var data_g = d3.select(chartDiv).append('shot').append('svg')
var slider_axis = court.append('g')
.attr('class', 'slider-axis');
var slider_rect = court.append('g')
.attr('class', 'slider-rect');
var rect_entity = slider_rect.append('rect');
const court_xScale = d3.scaleLinear()
.domain([-25, 25]);
const court_yScale = d3.scaleLinear()
.domain([-4,43]);
const shot_xScale = d3.scaleLinear()
.domain([-250, 250]);
const shot_yScale = d3.scaleLinear()
.domain([-45,420]);
var color = d3.scaleSequential(d3.interpolateOrRd)
.domain([5e-6, 3e-2]); // Points per square pixel.
var Basket = court_g.append('circle');
var Backboard = court_g.append('rect');
var Outterbox = court_g.append('rect');
var Innerbox = court_g.append('rect');
var CornerThreeLeft = court_g.append('rect');
var CornerThreeRight = court_g.append('rect');
var OuterLine = court_g.append('rect');
var RestrictedArea = court_g.append('path')
var TopFreeThrow = court_g.append('path')
var BottomFreeThrow = court_g.append('path')
var ThreeLine = court_g.append('path')
var CenterOuter = court_g.append('path')
var CenterInner = court_g.append('path')
draw_court();
// add_shot();
Slider();
// window.addEventListener('resize', draw_court);
// window.addEventListener('resize', Slider);
</script>
</body>
</html>
function add_shot(year){
const width = 480;
const height = width/50*47;
const innerWidth = width - margin.left - margin.right;
const innerHeight = height - margin.top - margin.bottom;
shot_xScale.range([margin.left, innerWidth])
.nice();
shot_yScale.range([margin.top, innerHeight])
.nice();
d3.csv('kobe.csv', data => {
var data = data.filter(d=>d.loc_y < 400)
var temp_data = d3.nest()
.key(function(d) { return d.season; })
.key(function(d) { return d.shot_made_flag; })
.entries(data);
var target = (year.getFullYear()).toString()+'-'+(year.getFullYear()+1).toString().substring(2, 4)
temp_data = temp_data.filter(d=>d.key==target);
var made = temp_data[0].values[0];
var miss = temp_data[0].values[1];
var circles_made = court.selectAll('.circle_made').data(made.values)
circles_made.exit().remove();
circles_made
.enter().append('circle')
.merge(circles_made)
.attr('class','circle_made')
.attr('cx', d => shot_xScale(d.loc_x))
.attr('cy', d => shot_yScale(d.loc_y))
.attr('fill', 'green')
.attr('fill-opacity', 0.4)
.attr('r', 3);
var circles_miss = court.selectAll('.circle_miss').data(miss.values)
circles_miss.exit().remove();
circles_miss
.enter().append('path')
.merge(circles_miss)
.attr('class','circle_miss')
.attr('transform',function(d,i) { return 'translate('+shot_xScale(d.loc_x)+','+shot_yScale(d.loc_y)+')';})
.attr('d', d3.symbol().type(d3.symbols[1]).size(30))
.attr('fill-opacity', 0.4)
.attr('fill','red');
});
}
function Slider () {
const width = 480
const height = width/50*47;
const innerWidth = width - margin.left - margin.right;
const innerHeight = height - margin.top - margin.bottom;
slider_axis.attr('transform', `translate(0, ${innerHeight+20})`)
slider_rect.attr("width", innerWidth)
.attr("height", innerHeight)
.attr('transform', `translate(0, ${innerHeight})`)
var minDate = new Date('1997'),
scale = d3.scaleTime()
.domain([minDate, d3.timeYear.offset(minDate, 19)])
.range([margin.left, innerWidth])
.clamp(true),
format = d3.timeFormat('%Y');
updateHeader(minDate)
// add_shot(minDate)
Stat_Table(minDate);
Heat_Map(minDate);
slider_axis
.attr('class', 'axis')
.call(d3.axisBottom(scale).ticks(d3.timeYear.every(2)));
slider_rect
.attr("class", "slider")
.call(d3.drag().on('drag', dragged));
var rectWidth = 8;
rect_entity.attr("x", margin.left)
.attr("y", 0)
.attr("width", rectWidth)
.attr("height", 20);
function updateHeader(date) {
title.text(format(date)+'-'+(date.getFullYear()+1).toString()+' season shoting map')
.attr('x', margin.left)
.attr('y', margin.top);
}
function dragged(d) {
const parseTime = d3.timeParse("%Y");
var prev = title.text().split('-')[0]
var x = Math.min(d3.event.x, innerWidth);
value = scale.invert(x);
d3.select('.slider').attr('transform', 'translate(' + Math.max(0,Math.min(x, x-margin.left)) + ',' + innerHeight + ')');
updateHeader(value);
if (value.getFullYear() != parseTime(prev).getFullYear()) Heat_Map(value); Stat_Table(value);
//add_shot(value); Stat_Table(value);
}
}
function Stat_Table(year){
var format = d3.timeFormat('%Y');
d3.csv('stat.csv', data => {
var target_season = format(year)+'-'+(year.getFullYear()+1).toString().substring(2, 4);
var data = data.filter(d=>d.Season===target_season);
function tabulate(data, columns) {
d3.select('table').remove()
var table = d3.select('court').append('table')
var thead = table.append('thead')
var tbody = table.append('tbody');
// append the header row
thead.append('tr')
.selectAll('th')
.data(columns).enter()
.append('th')
.text(function (column) { return column; });
// create a row for each object in the data
var rows = tbody.selectAll('tr')
.data(data)
.enter()
.append('tr');
// create a cell in each row for each column
var cells = rows.selectAll('td')
.data(function (row) {
return columns.map(function (column) {
return {column: column, value: row[column]};
})
})
.enter()
.append('td')
.text(function (d) { return d.value; });
return table;
}
// render the table(s)
tabulate(data, ['Season','ORB','AST', 'STL', 'BLK', 'PTS']); // 2 column table
})
}
We can't make this file beautiful and searchable because it's too large.
action_type,combined_shot_type,game_event_id,game_id,lat,loc_x,loc_y,lon,minutes_remaining,period,playoffs,season,seconds_remaining,shot_distance,shot_made_flag,shot_type,shot_zone_area,shot_zone_basic,shot_zone_range,game_date,matchup,opponent
Jump Shot,Jump Shot,12,20000012,34.0443,-157,0,-118.4268,10,1,0,2000-01,22,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,10/31/00,LAL @ POR,POR
Jump Shot,Jump Shot,35,20000012,33.9093,-101,135,-118.3708,7,1,0,2000-01,45,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,10/31/00,LAL @ POR,POR
Jump Shot,Jump Shot,43,20000012,33.8693,138,175,-118.1318,6,1,0,2000-01,52,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,10/31/00,LAL @ POR,POR
Driving Dunk Shot,Dunk,155,20000012,34.0443,0,0,-118.2698,6,2,0,2000-01,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/31/00,LAL @ POR,POR
Jump Shot,Jump Shot,244,20000012,34.0553,-145,-11,-118.4148,9,3,0,2000-01,32,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,10/31/00,LAL @ POR,POR
Layup Shot,Layup,251,20000012,34.0443,0,0,-118.2698,8,3,0,2000-01,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/31/00,LAL @ POR,POR
Jump Shot,Jump Shot,265,20000012,33.9363,-65,108,-118.3348,6,3,0,2000-01,12,12,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,10/31/00,LAL @ POR,POR
Running Jump Shot,Jump Shot,294,20000012,33.9193,-33,125,-118.3028,3,3,0,2000-01,36,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,10/31/00,LAL @ POR,POR
Jump Shot,Jump Shot,309,20000012,33.8063,-94,238,-118.3638,1,3,0,2000-01,56,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,10/31/00,LAL @ POR,POR
Jump Shot,Jump Shot,4,20000019,33.9173,121,127,-118.1488,11,1,0,2000-01,0,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/1/00,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,27,20000019,33.9343,-67,110,-118.3368,7,1,0,2000-01,9,12,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,66,20000019,34.0403,-94,4,-118.3638,2,1,0,2000-01,44,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,80,20000019,33.9973,-23,47,-118.2928,1,1,0,2000-01,16,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,86,20000019,33.8523,62,192,-118.2078,0,1,0,2000-01,48,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,138,20000019,33.8183,-117,226,-118.3868,8,2,0,2000-01,50,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,244,20000019,33.9473,-132,97,-118.4018,11,3,0,2000-01,29,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,255,20000019,33.9003,3,144,-118.2668,10,3,0,2000-01,8,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,265,20000019,33.9173,134,127,-118.1358,9,3,0,2000-01,4,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/1/00,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,274,20000019,33.9343,-16,110,-118.2858,7,3,0,2000-01,57,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/1/00,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,299,20000019,33.8943,-109,150,-118.3788,5,3,0,2000-01,47,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/1/00,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,307,20000019,33.9813,-46,63,-118.3158,5,3,0,2000-01,11,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/1/00,LAL vs. UTA,UTA
Layup Shot,Layup,332,20000019,34.0443,0,0,-118.2698,2,3,0,2000-01,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,345,20000019,33.8483,-58,196,-118.3278,2,3,0,2000-01,4,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,369,20000019,33.8583,-183,186,-118.4528,0,3,0,2000-01,30,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,400,20000019,33.8713,85,173,-118.1848,8,4,0,2000-01,19,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,429,20000019,33.9573,3,87,-118.2668,6,4,0,2000-01,22,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/1/00,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,488,20000019,34.0403,121,4,-118.1488,1,4,0,2000-01,20,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,499,20000019,34.0103,127,34,-118.1428,0,4,0,2000-01,30,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/1/00,LAL vs. UTA,UTA
Jump Shot,Jump Shot,184,20000047,33.8603,91,184,-118.1788,3,2,0,2000-01,30,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/4/00,LAL @ VAN,VAN
Jump Shot,Jump Shot,202,20000047,33.7723,-27,272,-118.2968,0,2,0,2000-01,4,27,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/4/00,LAL @ VAN,VAN
Jump Shot,Jump Shot,212,20000047,33.9783,-176,66,-118.4458,11,3,0,2000-01,12,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/4/00,LAL @ VAN,VAN
Layup Shot,Layup,219,20000047,34.0403,7,4,-118.2628,10,3,0,2000-01,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/00,LAL @ VAN,VAN
Jump Shot,Jump Shot,229,20000047,33.9113,150,133,-118.1198,8,3,0,2000-01,59,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/4/00,LAL @ VAN,VAN
Jump Shot,Jump Shot,233,20000047,34.0293,49,15,-118.2208,8,3,0,2000-01,29,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/4/00,LAL @ VAN,VAN
Layup Shot,Layup,289,20000047,34.0403,-4,4,-118.2738,3,3,0,2000-01,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/00,LAL @ VAN,VAN
Reverse Dunk Shot,Dunk,295,20000047,34.0403,-4,4,-118.2738,2,3,0,2000-01,55,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/00,LAL @ VAN,VAN
Slam Dunk Shot,Dunk,300,20000047,34.0353,1,9,-118.2688,2,3,0,2000-01,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/00,LAL @ VAN,VAN
Jump Shot,Jump Shot,398,20000047,33.9243,121,120,-118.1488,4,4,0,2000-01,55,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/4/00,LAL @ VAN,VAN
Layup Shot,Layup,445,20000047,34.0353,1,9,-118.2688,1,4,0,2000-01,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/00,LAL @ VAN,VAN
Layup Shot,Layup,446,20000047,34.0353,-12,9,-118.2818,1,4,0,2000-01,6,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/00,LAL @ VAN,VAN
Jump Shot,Jump Shot,7,20000049,33.9743,24,70,-118.2458,10,1,0,2000-01,33,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/00,LAL vs. LAC,LAC
Jump Shot,Jump Shot,11,20000049,34.0483,-189,-4,-118.4588,10,1,0,2000-01,4,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/5/00,LAL vs. LAC,LAC
Jump Shot,Jump Shot,80,20000049,33.8503,-155,194,-118.4248,2,1,0,2000-01,33,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/5/00,LAL vs. LAC,LAC
Jump Shot,Jump Shot,105,20000049,33.8163,1,228,-118.2688,11,2,0,2000-01,26,22,1,3PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/5/00,LAL vs. LAC,LAC
Driving Layup Shot,Layup,132,20000049,34.0443,0,0,-118.2698,8,2,0,2000-01,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/00,LAL vs. LAC,LAC
Slam Dunk Shot,Dunk,190,20000049,34.0443,0,0,-118.2698,4,2,0,2000-01,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/00,LAL vs. LAC,LAC
Jump Shot,Jump Shot,214,20000049,33.9363,-33,108,-118.3028,2,2,0,2000-01,2,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/5/00,LAL vs. LAC,LAC
Layup Shot,Layup,232,20000049,33.9953,22,49,-118.2478,0,2,0,2000-01,47,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/00,LAL vs. LAC,LAC
Driving Layup Shot,Layup,260,20000049,34.0443,0,0,-118.2698,9,3,0,2000-01,32,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/00,LAL vs. LAC,LAC
Driving Layup Shot,Layup,353,20000049,34.0233,56,21,-118.2138,0,3,0,2000-01,37,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/00,LAL vs. LAC,LAC
Running Jump Shot,Jump Shot,369,20000049,34.0183,121,26,-118.1488,0,3,0,2000-01,1,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/5/00,LAL vs. LAC,LAC
Jump Shot,Jump Shot,28,20000058,33.9873,231,57,-118.0388,8,1,0,2000-01,17,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/7/00,LAL @ HOU,HOU
Driving Layup Shot,Layup,33,20000058,34.0443,0,0,-118.2698,7,1,0,2000-01,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/00,LAL @ HOU,HOU
Driving Dunk Shot,Dunk,41,20000058,34.0443,0,0,-118.2698,7,1,0,2000-01,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,73,20000058,33.7873,7,257,-118.2628,3,1,0,2000-01,11,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/7/00,LAL @ HOU,HOU
Driving Layup Shot,Layup,131,20000058,34.0443,0,0,-118.2698,7,2,0,2000-01,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,186,20000058,33.9873,51,57,-118.2188,2,2,0,2000-01,40,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,201,20000058,33.8543,167,190,-118.1028,0,2,0,2000-01,10,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,215,20000058,33.8543,-119,190,-118.3888,11,3,0,2000-01,2,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,225,20000058,33.9873,16,57,-118.2538,9,3,0,2000-01,10,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,236,20000058,33.9343,-84,110,-118.3538,7,3,0,2000-01,24,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,306,20000058,34.0023,-71,42,-118.3408,0,3,0,2000-01,1,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,368,20000058,33.9113,30,133,-118.2398,5,4,0,2000-01,1,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,425,20000058,33.8883,1,156,-118.2688,0,4,0,2000-01,46,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/7/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,2,20000068,33.8333,132,211,-118.1378,11,1,0,2000-01,41,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/8/00,LAL @ SAS,SAS
Slam Dunk Shot,Dunk,11,20000068,34.0403,-8,4,-118.2778,10,1,0,2000-01,59,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,39,20000068,33.9173,132,127,-118.1378,6,1,0,2000-01,36,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,44,20000068,33.8563,-29,188,-118.2988,5,1,0,2000-01,54,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,70,20000068,33.9683,140,76,-118.1298,2,1,0,2000-01,24,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Turnaround Jump Shot,Jump Shot,74,20000068,34.0443,140,0,-118.1298,1,1,0,2000-01,48,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,79,20000068,33.8883,-1,156,-118.2708,1,1,0,2000-01,25,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,82,20000068,34.0403,-151,4,-118.4208,0,1,0,2000-01,47,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,101,20000068,33.9683,110,76,-118.1598,10,2,0,2000-01,57,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,115,20000068,33.9573,132,87,-118.1378,9,2,0,2000-01,37,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,184,20000068,33.7933,-58,251,-118.3278,3,2,0,2000-01,50,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,192,20000068,33.8843,-94,160,-118.3638,3,2,0,2000-01,15,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,215,20000068,33.8943,-193,150,-118.4628,0,2,0,2000-01,53,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,217,20000068,34.0443,140,0,-118.1298,0,2,0,2000-01,48,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,228,20000068,34.0353,39,9,-118.2308,11,3,0,2000-01,26,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,241,20000068,33.8943,24,150,-118.2458,9,3,0,2000-01,20,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Slam Dunk Shot,Dunk,253,20000068,34.0443,-1,0,-118.2708,7,3,0,2000-01,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,262,20000068,33.9113,119,133,-118.1508,6,3,0,2000-01,40,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,300,20000068,34.0253,119,19,-118.1508,3,3,0,2000-01,0,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,314,20000068,34.0023,-193,42,-118.4628,0,3,0,2000-01,48,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,322,20000068,33.9893,-166,55,-118.4358,0,3,0,2000-01,21,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,339,20000068,33.9283,24,116,-118.2458,10,4,0,2000-01,39,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,365,20000068,33.8883,-65,156,-118.3348,7,4,0,2000-01,8,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Turnaround Jump Shot,Jump Shot,370,20000068,34.0183,-166,26,-118.4358,6,4,0,2000-01,25,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,379,20000068,33.9683,-58,76,-118.3278,5,4,0,2000-01,14,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,395,20000068,33.9743,-37,70,-118.3068,3,4,0,2000-01,38,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/8/00,LAL @ SAS,SAS
Jump Shot,Jump Shot,4,20000098,33.8563,-94,188,-118.3638,11,1,0,2000-01,9,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/12/00,LAL vs. HOU,HOU
Driving Layup Shot,Layup,11,20000098,34.0443,0,0,-118.2698,10,1,0,2000-01,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Reverse Layup Shot,Layup,19,20000098,34.0443,0,0,-118.2698,9,1,0,2000-01,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Tip Shot,Tip Shot,20,20000098,34.0443,0,0,-118.2698,9,1,0,2000-01,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Slam Dunk Shot,Dunk,111,20000098,34.0443,0,0,-118.2698,3,1,0,2000-01,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Driving Layup Shot,Layup,130,20000098,34.0443,0,0,-118.2698,0,1,0,2000-01,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,135,20000098,33.9033,85,141,-118.1848,0,1,0,2000-01,21,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,170,20000098,33.8863,-88,158,-118.3578,8,2,0,2000-01,50,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/12/00,LAL vs. HOU,HOU
Driving Dunk Shot,Dunk,174,20000098,34.0443,0,0,-118.2698,8,2,0,2000-01,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Running Hook Shot,Hook Shot,236,20000098,34.0443,0,0,-118.2698,0,2,0,2000-01,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,240,20000098,33.7683,1,276,-118.2688,0,2,0,2000-01,4,27,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,274,20000098,34.0523,155,-8,-118.1148,8,3,0,2000-01,38,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,307,20000098,34.0313,-155,13,-118.4248,5,3,0,2000-01,18,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,309,20000098,33.9113,-84,133,-118.3538,4,3,0,2000-01,34,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,317,20000098,34.0523,-178,-8,-118.4478,3,3,0,2000-01,51,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,320,20000098,33.9553,16,89,-118.2538,3,3,0,2000-01,40,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,322,20000098,33.9383,-48,106,-118.3178,3,3,0,2000-01,33,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,340,20000098,34.0313,-170,13,-118.4398,2,3,0,2000-01,5,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,362,20000098,33.9113,-119,133,-118.3888,0,3,0,2000-01,14,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,381,20000098,34.0043,9,40,-118.2608,10,4,0,2000-01,52,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,426,20000098,33.9623,-84,82,-118.3538,6,4,0,2000-01,34,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/12/00,LAL vs. HOU,HOU
Jump Shot,Jump Shot,444,20000098,33.9853,9,59,-118.2608,4,4,0,2000-01,57,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Driving Dunk Shot,Dunk,468,20000098,34.0443,0,0,-118.2698,3,4,0,2000-01,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Running Jump Shot,Jump Shot,488,20000098,33.9853,9,59,-118.2608,1,4,0,2000-01,38,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Tip Shot,Tip Shot,493,20000098,34.0443,0,0,-118.2698,1,4,0,2000-01,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/00,LAL vs. HOU,HOU
Driving Layup Shot,Layup,34,20000108,34.0443,0,0,-118.2698,7,1,0,2000-01,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Alley Oop Dunk Shot,Dunk,77,20000108,34.0443,0,0,-118.2698,3,1,0,2000-01,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,86,20000108,34.0483,129,-4,-118.1408,2,1,0,2000-01,25,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,93,20000108,33.9473,-98,97,-118.3678,0,1,0,2000-01,48,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,108,20000108,33.9663,167,78,-118.1028,11,2,0,2000-01,16,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,118,20000108,33.7953,108,249,-118.1618,10,2,0,2000-01,19,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/14/00,LAL vs. DEN,DEN
Running Jump Shot,Jump Shot,129,20000108,33.8693,100,175,-118.1698,9,2,0,2000-01,7,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/14/00,LAL vs. DEN,DEN
Layup Shot,Layup,199,20000108,34.0443,0,0,-118.2698,1,2,0,2000-01,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Driving Layup Shot,Layup,219,20000108,34.0443,0,0,-118.2698,0,2,0,2000-01,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,243,20000108,33.8753,115,169,-118.1548,10,3,0,2000-01,23,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,303,20000108,33.9723,1,72,-118.2688,5,3,0,2000-01,23,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Driving Dunk Shot,Dunk,352,20000108,34.0443,0,0,-118.2698,0,3,0,2000-01,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,360,20000108,33.8143,113,230,-118.1568,11,4,0,2000-01,43,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/14/00,LAL vs. DEN,DEN
Layup Shot,Layup,368,20000108,34.0443,0,0,-118.2698,10,4,0,2000-01,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Slam Dunk Shot,Dunk,371,20000108,34.0443,0,0,-118.2698,10,4,0,2000-01,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Layup Shot,Layup,416,20000108,34.0443,0,0,-118.2698,5,4,0,2000-01,37,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/00,LAL vs. DEN,DEN
Jump Shot,Jump Shot,2,20000124,33.8503,98,194,-118.1718,11,1,0,2000-01,42,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,5,20000124,33.8603,-117,184,-118.3868,11,1,0,2000-01,7,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,24,20000124,34.0463,-168,-2,-118.4378,8,1,0,2000-01,53,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,31,20000124,34.0083,70,36,-118.1998,8,1,0,2000-01,16,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/16/00,LAL @ SAC,SAC
Driving Layup Shot,Layup,34,20000124,34.0443,0,0,-118.2698,7,1,0,2000-01,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,70,20000124,34.0023,-37,42,-118.3068,2,1,0,2000-01,47,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,79,20000124,33.9283,163,116,-118.1068,1,1,0,2000-01,5,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,139,20000124,33.8653,113,179,-118.1568,8,2,0,2000-01,13,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,150,20000124,34.0463,169,-2,-118.1008,6,2,0,2000-01,27,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,200,20000124,33.8883,91,156,-118.1788,0,2,0,2000-01,52,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,209,20000124,33.9513,134,93,-118.1358,0,2,0,2000-01,19,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,212,20000124,33.5673,47,477,-118.2228,0,2,0,2000-01,0,47,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,240,20000124,33.9073,11,137,-118.2588,8,3,0,2000-01,52,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,304,20000124,34.0313,199,13,-118.0708,2,3,0,2000-01,55,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,323,20000124,33.8083,77,236,-118.1928,0,3,0,2000-01,1,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,341,20000124,33.7973,11,247,-118.2588,9,4,0,2000-01,18,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,378,20000124,33.8143,-103,230,-118.3728,5,4,0,2000-01,43,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,437,20000124,33.7973,-31,247,-118.3008,0,4,0,2000-01,2,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,478,20000124,33.9453,-10,99,-118.2798,2,5,0,2000-01,5,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,480,20000124,33.9443,13,100,-118.2568,2,5,0,2000-01,7,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,498,20000124,33.8443,-73,200,-118.3428,0,5,0,2000-01,24,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/16/00,LAL @ SAC,SAC
Jump Shot,Jump Shot,18,20000140,33.8603,-77,184,-118.3468,10,1,0,2000-01,5,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,25,20000140,33.8673,188,177,-118.0818,9,1,0,2000-01,7,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/18/00,LAL @ DEN,DEN
Driving Layup Shot,Layup,31,20000140,34.0443,0,0,-118.2698,8,1,0,2000-01,15,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,70,20000140,33.9073,-128,137,-118.3978,4,1,0,2000-01,22,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/18/00,LAL @ DEN,DEN
Alley Oop Dunk Shot,Dunk,73,20000140,34.0443,0,0,-118.2698,4,1,0,2000-01,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,112,20000140,33.9513,1,93,-118.2688,11,2,0,2000-01,19,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,158,20000140,33.8843,115,160,-118.1548,6,2,0,2000-01,51,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,162,20000140,33.8443,159,200,-118.1108,6,2,0,2000-01,11,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,238,20000140,34.0443,167,0,-118.1028,0,2,0,2000-01,21,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,246,20000140,33.7993,-162,245,-118.4318,11,3,0,2000-01,17,29,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,269,20000140,34.0503,167,-6,-118.1028,8,3,0,2000-01,35,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,285,20000140,33.8943,-4,150,-118.2738,6,3,0,2000-01,24,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,297,20000140,34.0353,-185,9,-118.4548,5,3,0,2000-01,1,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,311,20000140,34.0253,237,19,-118.0328,3,3,0,2000-01,21,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,333,20000140,34.0253,-229,19,-118.4988,0,3,0,2000-01,47,22,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/18/00,LAL @ DEN,DEN
Driving Layup Shot,Layup,350,20000140,34.0443,0,0,-118.2698,11,4,0,2000-01,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/00,LAL @ DEN,DEN
Reverse Dunk Shot,Dunk,398,20000140,34.0443,0,0,-118.2698,7,4,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,448,20000140,33.9623,37,82,-118.2328,1,4,0,2000-01,18,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,450,20000140,33.9573,-42,87,-118.3118,0,4,0,2000-01,46,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/18/00,LAL @ DEN,DEN
Jump Shot,Jump Shot,17,20000147,33.7973,28,247,-118.2418,9,1,0,2000-01,3,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,48,20000147,33.9473,7,97,-118.2628,6,1,0,2000-01,10,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/19/00,LAL vs. CHI,CHI
Slam Dunk Shot,Dunk,83,20000147,34.0443,0,0,-118.2698,3,1,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Layup Shot,Layup,114,20000147,34.0443,0,0,-118.2698,0,1,0,2000-01,13,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Slam Dunk Shot,Dunk,153,20000147,34.0443,0,0,-118.2698,7,2,0,2000-01,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,166,20000147,33.9093,115,135,-118.1548,6,2,0,2000-01,3,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,213,20000147,33.8603,142,184,-118.1278,0,2,0,2000-01,44,23,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/19/00,LAL vs. CHI,CHI
Slam Dunk Shot,Dunk,224,20000147,34.0443,0,0,-118.2698,11,3,0,2000-01,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Layup Shot,Layup,229,20000147,34.0443,0,0,-118.2698,10,3,0,2000-01,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,231,20000147,33.8813,79,163,-118.1908,9,3,0,2000-01,45,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,251,20000147,33.9033,142,141,-118.1278,7,3,0,2000-01,22,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,257,20000147,33.9193,30,125,-118.2398,6,3,0,2000-01,43,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/19/00,LAL vs. CHI,CHI
Running Jump Shot,Jump Shot,276,20000147,33.9473,-60,97,-118.3298,4,3,0,2000-01,55,11,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/19/00,LAL vs. CHI,CHI
Driving Layup Shot,Layup,302,20000147,34.0443,0,0,-118.2698,1,3,0,2000-01,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,330,20000147,33.7993,115,245,-118.1548,11,4,0,2000-01,13,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,334,20000147,33.8603,-132,184,-118.4018,10,4,0,2000-01,52,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/19/00,LAL vs. CHI,CHI
Driving Layup Shot,Layup,342,20000147,34.0443,0,0,-118.2698,10,4,0,2000-01,12,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Layup Shot,Layup,344,20000147,34.0443,0,0,-118.2698,10,4,0,2000-01,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/00,LAL vs. CHI,CHI
Running Jump Shot,Jump Shot,437,20000147,33.9683,-25,76,-118.2948,2,4,0,2000-01,20,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,440,20000147,33.9363,-145,108,-118.4148,1,4,0,2000-01,37,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,454,20000147,34.0733,-208,-29,-118.4778,0,4,0,2000-01,31,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/19/00,LAL vs. CHI,CHI
Jump Shot,Jump Shot,10,20000168,33.8963,-105,148,-118.3748,10,1,0,2000-01,5,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/22/00,LAL vs. GSW,GSW
Jump Shot,Jump Shot,26,20000168,33.8693,-48,175,-118.3178,8,1,0,2000-01,0,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/22/00,LAL vs. GSW,GSW
Jump Shot,Jump Shot,51,20000168,33.7973,-77,247,-118.3468,4,1,0,2000-01,58,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/22/00,LAL vs. GSW,GSW
Driving Layup Shot,Layup,74,20000168,34.0443,0,0,-118.2698,2,1,0,2000-01,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Layup Shot,Layup,81,20000168,34.0443,0,0,-118.2698,2,1,0,2000-01,20,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Slam Dunk Shot,Dunk,84,20000168,34.0443,0,0,-118.2698,2,1,0,2000-01,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Jump Shot,Jump Shot,87,20000168,33.8183,142,226,-118.1278,1,1,0,2000-01,43,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/22/00,LAL vs. GSW,GSW
Alley Oop Dunk Shot,Dunk,121,20000168,34.0443,0,0,-118.2698,10,2,0,2000-01,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Jump Shot,Jump Shot,134,20000168,33.8733,-63,171,-118.3328,9,2,0,2000-01,16,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/22/00,LAL vs. GSW,GSW
Alley Oop Dunk Shot,Dunk,192,20000168,34.0443,0,0,-118.2698,3,2,0,2000-01,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Jump Shot,Jump Shot,202,20000168,33.8693,64,175,-118.2058,2,2,0,2000-01,30,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/22/00,LAL vs. GSW,GSW
Driving Dunk Shot,Dunk,241,20000168,34.0443,0,0,-118.2698,9,3,0,2000-01,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Driving Layup Shot,Layup,246,20000168,34.0443,0,0,-118.2698,9,3,0,2000-01,12,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Jump Shot,Jump Shot,271,20000168,33.8083,115,236,-118.1548,6,3,0,2000-01,31,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/22/00,LAL vs. GSW,GSW
Dunk Shot,Dunk,273,20000168,34.0443,0,0,-118.2698,6,3,0,2000-01,9,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Turnaround Jump Shot,Jump Shot,288,20000168,34.0373,163,7,-118.1068,5,3,0,2000-01,20,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/22/00,LAL vs. GSW,GSW
Layup Shot,Layup,331,20000168,34.0443,0,0,-118.2698,2,3,0,2000-01,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Driving Layup Shot,Layup,333,20000168,34.0443,0,0,-118.2698,2,3,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Layup Shot,Layup,342,20000168,34.0443,0,0,-118.2698,1,3,0,2000-01,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/00,LAL vs. GSW,GSW
Jump Shot,Jump Shot,8,20000180,34.0043,64,40,-118.2058,10,1,0,2000-01,33,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/24/00,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,45,20000180,34.0463,-105,-2,-118.3748,7,1,0,2000-01,33,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/24/00,LAL vs. MIN,MIN
Reverse Layup Shot,Layup,60,20000180,34.0443,0,0,-118.2698,5,1,0,2000-01,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,83,20000180,33.9493,64,95,-118.2058,3,1,0,2000-01,56,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,107,20000180,34.0423,-132,2,-118.4018,1,1,0,2000-01,4,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,242,20000180,34.0273,73,17,-118.1968,10,3,0,2000-01,53,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/24/00,LAL vs. MIN,MIN
Dunk Shot,Dunk,252,20000180,34.0443,0,0,-118.2698,9,3,0,2000-01,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,276,20000180,33.8903,-132,154,-118.4018,6,3,0,2000-01,24,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/24/00,LAL vs. MIN,MIN
Layup Shot,Layup,279,20000180,34.0443,0,0,-118.2698,5,3,0,2000-01,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,315,20000180,34.0213,235,23,-118.0348,2,3,0,2000-01,42,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,346,20000180,33.8693,28,175,-118.2418,0,3,0,2000-01,21,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,356,20000180,33.8733,184,171,-118.0858,11,4,0,2000-01,38,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/24/00,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,373,20000180,33.9833,127,61,-118.1428,9,4,0,2000-01,50,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/24/00,LAL vs. MIN,MIN
Turnaround Jump Shot,Jump Shot,377,20000180,33.9553,28,89,-118.2418,9,4,0,2000-01,36,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/24/00,LAL vs. MIN,MIN
Jump Shot,Jump Shot,395,20000180,33.8313,-84,213,-118.3538,7,4,0,2000-01,30,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/24/00,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,418,20000180,33.9003,-119,144,-118.3888,5,4,0,2000-01,24,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/24/00,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,14,20000198,33.9343,0,110,-118.2698,10,1,0,2000-01,25,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/27/00,LAL @ LAC,LAC
Driving Layup Shot,Layup,47,20000198,34.0443,0,0,-118.2698,7,1,0,2000-01,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,52,20000198,33.9643,127,80,-118.1428,6,1,0,2000-01,17,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,57,20000198,33.8253,-143,219,-118.4128,5,1,0,2000-01,44,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,155,20000198,33.9033,77,141,-118.1928,7,2,0,2000-01,18,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/27/00,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,161,20000198,33.9743,-6,70,-118.2758,6,2,0,2000-01,35,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/27/00,LAL @ LAC,LAC
Driving Layup Shot,Layup,215,20000198,34.0443,0,0,-118.2698,2,2,0,2000-01,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/00,LAL @ LAC,LAC
Layup Shot,Layup,218,20000198,34.0443,0,0,-118.2698,1,2,0,2000-01,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,228,20000198,33.8293,144,215,-118.1258,0,2,0,2000-01,36,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,255,20000198,33.8673,-63,177,-118.3328,11,3,0,2000-01,24,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,287,20000198,33.7853,100,259,-118.1698,7,3,0,2000-01,20,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/27/00,LAL @ LAC,LAC
Turnaround Jump Shot,Jump Shot,309,20000198,33.9663,-48,78,-118.3178,4,3,0,2000-01,53,9,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,315,20000198,33.8463,153,198,-118.1168,3,3,0,2000-01,42,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/27/00,LAL @ LAC,LAC
Alley Oop Layup shot,Layup,325,20000198,34.0233,-56,21,-118.3258,2,3,0,2000-01,15,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/27/00,LAL @ LAC,LAC
Driving Layup Shot,Layup,343,20000198,34.0443,0,0,-118.2698,0,3,0,2000-01,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,370,20000198,34.0333,201,11,-118.0688,11,4,0,2000-01,7,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/27/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,15,20000206,34.0103,243,34,-118.0268,9,1,0,2000-01,42,24,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,79,20000206,33.8123,123,232,-118.1468,5,1,0,2000-01,0,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,91,20000206,33.9073,-157,137,-118.4268,3,1,0,2000-01,30,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,135,20000206,33.9343,138,110,-118.1318,11,2,0,2000-01,8,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,166,20000206,33.9073,102,137,-118.1678,8,2,0,2000-01,40,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,223,20000206,34.0273,186,17,-118.0838,3,2,0,2000-01,47,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/28/00,LAL vs. IND,IND
Driving Layup Shot,Layup,235,20000206,34.0443,0,0,-118.2698,2,2,0,2000-01,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/00,LAL vs. IND,IND
Slam Dunk Shot,Dunk,307,20000206,34.0443,0,0,-118.2698,8,3,0,2000-01,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,320,20000206,33.7993,142,245,-118.1278,7,3,0,2000-01,22,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,323,20000206,33.9743,-33,70,-118.3028,6,3,0,2000-01,52,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,325,20000206,34.0023,-12,42,-118.2818,6,3,0,2000-01,48,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,348,20000206,33.9403,121,104,-118.1488,4,3,0,2000-01,58,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/28/00,LAL vs. IND,IND
Driving Layup Shot,Layup,358,20000206,34.0443,0,0,-118.2698,4,3,0,2000-01,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,367,20000206,33.8813,79,163,-118.1908,3,3,0,2000-01,18,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,371,20000206,34.0443,-94,0,-118.3638,2,3,0,2000-01,57,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/28/00,LAL vs. IND,IND
Running Jump Shot,Jump Shot,374,20000206,33.9093,-124,135,-118.3938,2,3,0,2000-01,19,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/28/00,LAL vs. IND,IND
Running Dunk Shot,Dunk,385,20000206,34.0443,0,0,-118.2698,1,3,0,2000-01,15,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,410,20000206,33.6353,108,409,-118.1618,0,3,0,2000-01,0,42,0,3PT Field Goal,Back Court(BC),Above the Break 3,Back Court Shot,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,421,20000206,33.9093,-67,135,-118.3368,10,4,0,2000-01,32,15,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,429,20000206,33.8203,-160,224,-118.4298,10,4,0,2000-01,6,27,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/28/00,LAL vs. IND,IND
Jump Shot,Jump Shot,11,20000222,34.0353,-134,9,-118.4038,10,1,0,2000-01,59,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,40,20000222,34.0293,-122,15,-118.3918,8,1,0,2000-01,37,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,50,20000222,33.9283,-101,116,-118.3708,7,1,0,2000-01,10,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/30/00,LAL @ SEA,SEA
Running Jump Shot,Jump Shot,109,20000222,34.0253,-29,19,-118.2988,0,1,0,2000-01,48,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,111,20000222,33.7993,-50,245,-118.3198,0,1,0,2000-01,24,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,115,20000222,33.5783,-150,466,-118.4198,0,1,0,2000-01,0,48,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,11/30/00,LAL @ SEA,SEA
Layup Shot,Layup,123,20000222,34.0313,-29,13,-118.2988,11,2,0,2000-01,48,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,151,20000222,34.0253,-35,19,-118.3048,9,2,0,2000-01,0,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,220,20000222,34.0253,-35,19,-118.3048,1,2,0,2000-01,54,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/00,LAL @ SEA,SEA
Slam Dunk Shot,Dunk,267,20000222,34.0443,0,0,-118.2698,9,3,0,2000-01,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,272,20000222,33.8373,167,207,-118.1028,9,3,0,2000-01,6,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/30/00,LAL @ SEA,SEA
Slam Dunk Shot,Dunk,294,20000222,34.0443,0,0,-118.2698,7,3,0,2000-01,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,335,20000222,33.8673,60,177,-118.2098,3,3,0,2000-01,45,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/30/00,LAL @ SEA,SEA
Driving Layup Shot,Layup,358,20000222,34.0443,0,0,-118.2698,1,3,0,2000-01,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/00,LAL @ SEA,SEA
Jump Shot,Jump Shot,24,20000230,33.7913,-86,253,-118.3558,9,1,0,2000-01,34,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,46,20000230,33.9763,172,68,-118.0978,7,1,0,2000-01,28,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,54,20000230,34.0163,-50,28,-118.3198,6,1,0,2000-01,35,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,61,20000230,33.8793,-86,165,-118.3558,5,1,0,2000-01,30,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,67,20000230,34.0163,-79,28,-118.3488,4,1,0,2000-01,50,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/1/00,LAL vs. SAS,SAS
Driving Dunk Shot,Dunk,75,20000230,34.0443,0,0,-118.2698,4,1,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,86,20000230,33.9003,18,144,-118.2518,2,1,0,2000-01,33,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,96,20000230,33.9893,123,55,-118.1468,2,1,0,2000-01,0,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/1/00,LAL vs. SAS,SAS
Driving Layup Shot,Layup,112,20000230,34.0443,0,0,-118.2698,0,1,0,2000-01,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,193,20000230,34.0593,-170,-15,-118.4398,4,2,0,2000-01,40,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,197,20000230,33.9283,159,116,-118.1108,4,2,0,2000-01,14,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,259,20000230,33.8963,32,148,-118.2378,11,3,0,2000-01,35,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,278,20000230,33.8463,5,198,-118.2648,9,3,0,2000-01,10,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,297,20000230,33.7973,-149,247,-118.4188,6,3,0,2000-01,27,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/1/00,LAL vs. SAS,SAS
Driving Layup Shot,Layup,300,20000230,34.0443,0,0,-118.2698,5,3,0,2000-01,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,310,20000230,33.9113,-79,133,-118.3488,4,3,0,2000-01,41,15,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,332,20000230,34.0043,-23,40,-118.2928,3,3,0,2000-01,8,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,370,20000230,33.8903,66,154,-118.2038,0,3,0,2000-01,37,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,372,20000230,33.7873,-86,257,-118.3558,0,3,0,2000-01,0,27,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,376,20000230,33.8463,75,198,-118.1948,11,4,0,2000-01,42,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Slam Dunk Shot,Dunk,386,20000230,34.0443,0,0,-118.2698,11,4,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,401,20000230,33.9763,-58,68,-118.3278,9,4,0,2000-01,42,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,404,20000230,33.9833,60,61,-118.2098,9,4,0,2000-01,7,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,416,20000230,33.7913,117,253,-118.1528,7,4,0,2000-01,34,27,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,421,20000230,34.0273,-50,17,-118.3198,6,4,0,2000-01,49,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Slam Dunk Shot,Dunk,425,20000230,34.0443,0,0,-118.2698,6,4,0,2000-01,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,444,20000230,33.8353,18,209,-118.2518,4,4,0,2000-01,0,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,477,20000230,33.8843,-136,160,-118.4058,0,4,0,2000-01,51,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/1/00,LAL vs. SAS,SAS
Jump Shot,Jump Shot,10,20000246,33.9173,60,127,-118.2098,10,1,0,2000-01,26,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/3/00,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,19,20000246,33.9113,87,133,-118.1828,9,1,0,2000-01,11,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/3/00,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,28,20000246,33.9623,39,82,-118.2308,8,1,0,2000-01,34,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,45,20000246,34.0423,-149,2,-118.4188,6,1,0,2000-01,46,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,55,20000246,33.8013,110,243,-118.1598,5,1,0,2000-01,26,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,95,20000246,34.0313,110,13,-118.1598,1,1,0,2000-01,29,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,135,20000246,33.9623,11,82,-118.2588,8,2,0,2000-01,57,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,137,20000246,33.9893,-16,55,-118.2858,8,2,0,2000-01,53,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,139,20000246,34.0423,237,2,-118.0328,8,2,0,2000-01,48,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,178,20000246,33.8463,11,198,-118.2588,5,2,0,2000-01,18,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,199,20000246,33.9173,-185,127,-118.4548,1,2,0,2000-01,49,22,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/3/00,LAL vs. DAL,DAL
Driving Dunk Shot,Dunk,206,20000246,34.0443,0,0,-118.2698,1,2,0,2000-01,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,221,20000246,33.9553,11,89,-118.2588,0,2,0,2000-01,25,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,230,20000246,33.8843,18,160,-118.2518,0,2,0,2000-01,0,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/3/00,LAL vs. DAL,DAL
Slam Dunk Shot,Dunk,245,20000246,34.0443,0,0,-118.2698,10,3,0,2000-01,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,278,20000246,33.7593,-98,285,-118.3678,6,3,0,2000-01,17,30,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,290,20000246,33.9993,-157,45,-118.4268,5,3,0,2000-01,12,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,297,20000246,33.8583,-92,186,-118.3618,4,3,0,2000-01,5,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,304,20000246,34.0163,-149,28,-118.4188,3,3,0,2000-01,25,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/3/00,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,308,20000246,34.0163,75,28,-118.1948,3,3,0,2000-01,3,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/3/00,LAL vs. DAL,DAL
Jump Shot,Jump Shot,336,20000246,34.0313,138,13,-118.1318,0,3,0,2000-01,17,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/3/00,LAL vs. DAL,DAL
Tip Shot,Tip Shot,348,20000246,34.0443,0,0,-118.2698,0,3,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/00,LAL vs. DAL,DAL
Driving Layup Shot,Layup,375,20000246,34.0443,0,0,-118.2698,8,4,0,2000-01,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/00,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,391,20000246,33.9343,-115,110,-118.3848,7,4,0,2000-01,31,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/3/00,LAL vs. DAL,DAL
Slam Dunk Shot,Dunk,20,20000258,34.0443,0,0,-118.2698,9,1,0,2000-01,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/00,LAL vs. PHI,PHI
Running Jump Shot,Jump Shot,46,20000258,33.8793,-65,165,-118.3348,7,1,0,2000-01,27,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Running Jump Shot,Jump Shot,50,20000258,33.9113,81,133,-118.1888,6,1,0,2000-01,48,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,78,20000258,33.9343,138,110,-118.1318,3,1,0,2000-01,33,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,119,20000258,33.6503,231,394,-118.0388,0,1,0,2000-01,0,45,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,125,20000258,33.8393,5,205,-118.2648,11,2,0,2000-01,21,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,133,20000258,33.8963,-44,148,-118.3138,10,2,0,2000-01,41,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/5/00,LAL vs. PHI,PHI
Driving Layup Shot,Layup,147,20000258,34.0213,18,23,-118.2518,9,2,0,2000-01,26,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,156,20000258,33.9553,123,89,-118.1468,8,2,0,2000-01,6,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,173,20000258,33.9173,-92,127,-118.3618,5,2,0,2000-01,48,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/5/00,LAL vs. PHI,PHI
Driving Layup Shot,Layup,180,20000258,34.0443,0,0,-118.2698,5,2,0,2000-01,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,201,20000258,33.7873,32,257,-118.2378,3,2,0,2000-01,40,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,218,20000258,33.9663,33,78,-118.2368,2,2,0,2000-01,34,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,252,20000258,33.9803,-212,64,-118.4818,0,2,0,2000-01,0,22,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,278,20000258,33.8963,123,148,-118.1468,9,3,0,2000-01,27,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Layup Shot,Layup,280,20000258,34.0443,0,0,-118.2698,9,3,0,2000-01,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,305,20000258,33.9073,-122,137,-118.3918,6,3,0,2000-01,36,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Running Jump Shot,Jump Shot,322,20000258,34.0593,123,-15,-118.1468,4,3,0,2000-01,46,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,324,20000258,34.0593,-149,-15,-118.4188,4,3,0,2000-01,16,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,379,20000258,34.0043,237,40,-118.0328,11,4,0,2000-01,26,24,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,389,20000258,33.8843,-1,160,-118.2708,10,4,0,2000-01,13,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,422,20000258,34.0593,-176,-15,-118.4458,6,4,0,2000-01,35,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Layup Shot,Layup,425,20000258,34.0443,0,0,-118.2698,6,4,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,436,20000258,33.8523,39,192,-118.2308,5,4,0,2000-01,2,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/5/00,LAL vs. PHI,PHI
Slam Dunk Shot,Dunk,470,20000258,34.0443,0,0,-118.2698,1,4,0,2000-01,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/00,LAL vs. PHI,PHI
Running Jump Shot,Jump Shot,480,20000258,34.0273,60,17,-118.2098,0,4,0,2000-01,38,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/5/00,LAL vs. PHI,PHI
Jump Shot,Jump Shot,4,20000267,33.9283,150,116,-118.1198,11,1,0,2000-01,41,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,10,20000267,33.8843,102,160,-118.1678,10,1,0,2000-01,54,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Tip Shot,Tip Shot,44,20000267,34.0443,0,0,-118.2698,7,1,0,2000-01,27,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,73,20000267,33.8773,-4,167,-118.2738,4,1,0,2000-01,37,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,78,20000267,34.0653,-168,-21,-118.4378,3,1,0,2000-01,38,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,81,20000267,33.9953,1,49,-118.2688,3,1,0,2000-01,10,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,92,20000267,34.0443,144,0,-118.1258,2,1,0,2000-01,6,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,117,20000267,33.9833,-31,61,-118.3008,10,2,0,2000-01,5,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Layup Shot,Layup,125,20000267,34.0443,0,0,-118.2698,9,2,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Turnaround Jump Shot,Jump Shot,134,20000267,34.0403,180,4,-118.0898,7,2,0,2000-01,57,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,145,20000267,34.0443,159,0,-118.1108,6,2,0,2000-01,2,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/6/00,LAL @ GSW,GSW
Driving Layup Shot,Layup,194,20000267,34.0443,0,0,-118.2698,1,2,0,2000-01,14,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Layup Shot,Layup,203,20000267,34.0233,-18,21,-118.2878,0,2,0,2000-01,7,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Reverse Layup Shot,Layup,217,20000267,34.0443,0,0,-118.2698,11,3,0,2000-01,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,220,20000267,34.0483,231,-4,-118.0388,10,3,0,2000-01,59,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,249,20000267,34.0233,-39,21,-118.3088,8,3,0,2000-01,28,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,307,20000267,33.9053,96,139,-118.1738,3,3,0,2000-01,31,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,315,20000267,33.8773,-60,167,-118.3298,2,3,0,2000-01,34,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,334,20000267,34.0483,-231,-4,-118.5008,0,3,0,2000-01,29,23,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/6/00,LAL @ GSW,GSW
Running Jump Shot,Jump Shot,382,20000267,33.9663,1,78,-118.2688,7,4,0,2000-01,35,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,399,20000267,34.0403,-231,4,-118.5008,5,4,0,2000-01,55,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,418,20000267,34.0653,-225,-21,-118.4948,3,4,0,2000-01,42,22,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,434,20000267,33.9663,-73,78,-118.3428,2,4,0,2000-01,9,10,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,445,20000267,33.8883,-60,156,-118.3298,1,4,0,2000-01,5,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,455,20000267,34.0403,-189,4,-118.4588,0,4,0,2000-01,22,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,466,20000267,33.7933,30,251,-118.2398,0,4,0,2000-01,0,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,494,20000267,34.0483,-147,-4,-118.4168,2,5,0,2000-01,26,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/6/00,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,496,20000267,34.0443,0,0,-118.2698,2,5,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,506,20000267,34.0443,-153,0,-118.4228,1,5,0,2000-01,18,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,515,20000267,34.0333,108,11,-118.1618,0,5,0,2000-01,34,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,529,20000267,33.7263,-96,318,-118.3658,0,5,0,2000-01,0,33,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/6/00,LAL @ GSW,GSW
Jump Shot,Jump Shot,32,20000280,33.9893,26,55,-118.2438,8,1,0,2000-01,27,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,41,20000280,33.9453,172,99,-118.0978,7,1,0,2000-01,19,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,89,20000280,33.8693,11,175,-118.2588,3,1,0,2000-01,5,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,96,20000280,33.8693,75,175,-118.1948,1,1,0,2000-01,51,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,114,20000280,33.9763,-50,68,-118.3198,0,1,0,2000-01,11,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,126,20000280,34.0463,186,-2,-118.0838,11,2,0,2000-01,24,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Slam Dunk Shot,Dunk,139,20000280,34.0443,0,0,-118.2698,9,2,0,2000-01,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/00,LAL vs. SEA,SEA
Layup Shot,Layup,202,20000280,34.0443,0,0,-118.2698,3,2,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,208,20000280,33.9283,159,116,-118.1108,2,2,0,2000-01,30,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Driving Layup Shot,Layup,214,20000280,34.0443,0,0,-118.2698,2,2,0,2000-01,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,245,20000280,33.8523,60,192,-118.2098,11,3,0,2000-01,34,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,248,20000280,34.0313,-44,13,-118.3138,11,3,0,2000-01,2,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,252,20000280,34.0463,172,-2,-118.0978,10,3,0,2000-01,46,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,277,20000280,33.9113,102,133,-118.1678,8,3,0,2000-01,32,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,286,20000280,33.9173,-23,127,-118.2928,7,3,0,2000-01,27,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,294,20000280,33.9003,123,144,-118.1468,6,3,0,2000-01,16,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,301,20000280,33.8353,138,209,-118.1318,5,3,0,2000-01,33,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,314,20000280,34.0273,-58,17,-118.3278,3,3,0,2000-01,55,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,374,20000280,33.8523,-71,192,-118.3408,11,4,0,2000-01,47,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,377,20000280,33.9723,-1,72,-118.2708,11,4,0,2000-01,7,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,468,20000280,34.0233,-145,21,-118.4148,2,4,0,2000-01,9,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/8/00,LAL vs. SEA,SEA
Jump Shot,Jump Shot,8,20000297,33.8633,123,181,-118.1468,10,1,0,2000-01,42,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,19,20000297,33.8843,-130,160,-118.3998,9,1,0,2000-01,21,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/10/00,LAL vs. DET,DET
Slam Dunk Shot,Dunk,21,20000297,34.0443,0,0,-118.2698,9,1,0,2000-01,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,26,20000297,33.7973,-115,247,-118.3848,8,1,0,2000-01,32,27,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,28,20000297,33.9243,132,120,-118.1378,7,1,0,2000-01,59,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,39,20000297,34.0043,-170,40,-118.4398,6,1,0,2000-01,48,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/10/00,LAL vs. DET,DET
Layup Shot,Layup,100,20000297,34.0443,0,0,-118.2698,1,1,0,2000-01,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,116,20000297,33.7263,-176,318,-118.4458,0,1,0,2000-01,0,36,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/10/00,LAL vs. DET,DET
Running Jump Shot,Jump Shot,127,20000297,33.9173,66,127,-118.2038,10,2,0,2000-01,38,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/10/00,LAL vs. DET,DET
Slam Dunk Shot,Dunk,212,20000297,34.0443,0,0,-118.2698,3,2,0,2000-01,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,265,20000297,33.8463,-143,198,-118.4128,9,3,0,2000-01,28,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,269,20000297,33.9073,102,137,-118.1678,8,3,0,2000-01,46,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/10/00,LAL vs. DET,DET
Running Jump Shot,Jump Shot,282,20000297,33.9833,-10,61,-118.2798,7,3,0,2000-01,42,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,286,20000297,33.7973,-10,247,-118.2798,6,3,0,2000-01,38,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,291,20000297,33.9343,138,110,-118.1318,6,3,0,2000-01,16,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/10/00,LAL vs. DET,DET
Reverse Layup Shot,Layup,312,20000297,34.0443,0,0,-118.2698,3,3,0,2000-01,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,342,20000297,33.9113,60,133,-118.2098,0,3,0,2000-01,32,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,346,20000297,33.9453,-185,99,-118.4548,0,3,0,2000-01,3,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,359,20000297,33.9663,-1,78,-118.2708,10,4,0,2000-01,58,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/10/00,LAL vs. DET,DET
Jump Shot,Jump Shot,10,20000309,33.9833,-23,61,-118.2928,10,1,0,2000-01,50,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Driving Layup Shot,Layup,15,20000309,34.0443,0,0,-118.2698,10,1,0,2000-01,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Layup Shot,Layup,17,20000309,34.0443,0,0,-118.2698,10,1,0,2000-01,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Layup Shot,Layup,29,20000309,34.0443,0,0,-118.2698,9,1,0,2000-01,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,33,20000309,34.0213,75,23,-118.1948,9,1,0,2000-01,11,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Layup Shot,Layup,71,20000309,34.0443,0,0,-118.2698,5,1,0,2000-01,14,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Dunk Shot,Dunk,81,20000309,34.0443,0,0,-118.2698,4,1,0,2000-01,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,115,20000309,33.8693,11,175,-118.2588,1,1,0,2000-01,56,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/12/00,LAL vs. MIL,MIL
Slam Dunk Shot,Dunk,180,20000309,34.0443,0,0,-118.2698,6,2,0,2000-01,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,192,20000309,34.0163,-197,28,-118.4668,5,2,0,2000-01,13,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/12/00,LAL vs. MIL,MIL
Layup Shot,Layup,203,20000309,34.0443,0,0,-118.2698,4,2,0,2000-01,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,208,20000309,33.9343,138,110,-118.1318,3,2,0,2000-01,44,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,218,20000309,33.7533,11,291,-118.2588,2,2,0,2000-01,35,29,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,243,20000309,33.7913,-98,253,-118.3678,0,2,0,2000-01,39,27,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,250,20000309,33.8083,-122,236,-118.3918,0,2,0,2000-01,22,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,259,20000309,33.9173,110,127,-118.1598,11,3,0,2000-01,46,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,296,20000309,33.8693,81,175,-118.1888,7,3,0,2000-01,27,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,325,20000309,34.0213,110,23,-118.1598,2,3,0,2000-01,52,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/12/00,LAL vs. MIL,MIL
Running Jump Shot,Jump Shot,355,20000309,33.9833,32,61,-118.2378,0,3,0,2000-01,50,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,413,20000309,33.8123,153,232,-118.1168,6,4,0,2000-01,51,27,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,419,20000309,34.0163,87,28,-118.1828,6,4,0,2000-01,18,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,430,20000309,33.8253,-130,219,-118.3998,4,4,0,2000-01,50,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,433,20000309,33.8253,144,219,-118.1258,4,4,0,2000-01,3,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,449,20000309,33.7973,-107,247,-118.3768,2,4,0,2000-01,50,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,458,20000309,34.0313,-86,13,-118.3558,2,4,0,2000-01,28,8,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,460,20000309,34.0373,-136,7,-118.4058,2,4,0,2000-01,26,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/12/00,LAL vs. MIL,MIL
Running Jump Shot,Jump Shot,482,20000309,33.9993,-71,45,-118.3408,0,4,0,2000-01,12,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/12/00,LAL vs. MIL,MIL
Jump Shot,Jump Shot,510,20000309,33.7743,-71,270,-118.3408,0,4,0,2000-01,0,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/12/00,LAL vs. MIL,MIL
Running Jump Shot,Jump Shot,75,20000320,34.0103,-27,34,-118.2968,3,1,0,2000-01,52,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/13/00,LAL @ POR,POR
Running Jump Shot,Jump Shot,103,20000320,33.9533,-27,91,-118.2968,0,1,0,2000-01,40,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/13/00,LAL @ POR,POR
Layup Shot,Layup,105,20000320,34.0443,0,0,-118.2698,0,1,0,2000-01,13,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/00,LAL @ POR,POR
Driving Layup Shot,Layup,110,20000320,34.0443,0,0,-118.2698,0,1,0,2000-01,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/00,LAL @ POR,POR
Driving Layup Shot,Layup,120,20000320,34.0443,0,0,-118.2698,10,2,0,2000-01,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,127,20000320,34.0293,81,15,-118.1888,10,2,0,2000-01,24,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,142,20000320,34.0403,81,4,-118.1888,9,2,0,2000-01,6,8,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,156,20000320,33.9723,-4,72,-118.2738,7,2,0,2000-01,56,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,221,20000320,33.8923,96,152,-118.1738,1,2,0,2000-01,54,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/13/00,LAL @ POR,POR
Driving Layup Shot,Layup,223,20000320,34.0443,0,0,-118.2698,1,2,0,2000-01,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/00,LAL @ POR,POR
Running Jump Shot,Jump Shot,247,20000320,33.9933,-12,51,-118.2818,0,2,0,2000-01,0,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,297,20000320,34.0593,108,-15,-118.1618,7,3,0,2000-01,8,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/13/00,LAL @ POR,POR
Running Jump Shot,Jump Shot,351,20000320,33.9933,1,51,-118.2688,0,3,0,2000-01,35,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,360,20000320,33.8463,-122,198,-118.3918,11,4,0,2000-01,39,23,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,402,20000320,33.8963,81,148,-118.1888,6,4,0,2000-01,2,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,414,20000320,34.0403,191,4,-118.0788,4,4,0,2000-01,32,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,417,20000320,34.0483,167,-4,-118.1028,3,4,0,2000-01,54,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/13/00,LAL @ POR,POR
Running Jump Shot,Jump Shot,439,20000320,34.0333,-42,11,-118.3118,1,4,0,2000-01,19,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/13/00,LAL @ POR,POR
Driving Layup Shot,Layup,444,20000320,34.0443,0,0,-118.2698,1,4,0,2000-01,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/00,LAL @ POR,POR
Driving Dunk Shot,Dunk,465,20000320,34.0443,0,0,-118.2698,0,4,0,2000-01,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/00,LAL @ POR,POR
Jump Shot,Jump Shot,469,20000320,33.8063,-56,238,-118.3258,0,4,0,2000-01,30,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/13/00,LAL @ POR,POR
Driving Layup Shot,Layup,23,20000334,34.0443,0,0,-118.2698,9,1,0,2000-01,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/00,LAL vs. VAN,VAN
Alley Oop Layup shot,Layup,41,20000334,34.0443,0,0,-118.2698,6,1,0,2000-01,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,58,20000334,33.9173,-115,127,-118.3848,4,1,0,2000-01,40,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,117,20000334,34.0463,-136,-2,-118.4058,10,2,0,2000-01,59,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,121,20000334,33.9893,-58,55,-118.3278,10,2,0,2000-01,35,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,199,20000334,33.9383,75,106,-118.1948,3,2,0,2000-01,16,12,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,218,20000334,33.8183,110,226,-118.1598,1,2,0,2000-01,35,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,223,20000334,33.8523,-157,192,-118.4268,1,2,0,2000-01,1,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,238,20000334,33.8903,102,154,-118.1678,11,3,0,2000-01,48,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/15/00,LAL vs. VAN,VAN
Driving Layup Shot,Layup,240,20000334,34.0443,0,0,-118.2698,11,3,0,2000-01,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/00,LAL vs. VAN,VAN
Dunk Shot,Dunk,249,20000334,34.0443,0,0,-118.2698,10,3,0,2000-01,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/00,LAL vs. VAN,VAN
Reverse Layup Shot,Layup,267,20000334,34.0443,0,0,-118.2698,8,3,0,2000-01,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/00,LAL vs. VAN,VAN
Jump Shot,Jump Shot,273,20000334,33.9623,138,82,-118.1318,7,3,0,2000-01,9,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/15/00,LAL vs. VAN,VAN
Layup Shot,Layup,296,20000334,34.0443,0,0,-118.2698,5,3,0,2000-01,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/00,LAL vs. VAN,VAN
Turnaround Jump Shot,Jump Shot,377,20000334,33.8693,39,175,-118.2308,8,4,0,2000-01,43,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/15/00,LAL vs. VAN,VAN
Driving Dunk Shot,Dunk,20,20000347,34.0443,0,0,-118.2698,10,1,0,2000-01,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,33,20000347,34.0333,-141,11,-118.4108,8,1,0,2000-01,58,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/17/00,LAL @ TOR,TOR
Driving Finger Roll Shot,Layup,40,20000347,34.0443,0,0,-118.2698,8,1,0,2000-01,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,58,20000347,34.0483,-206,-4,-118.4758,6,1,0,2000-01,15,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,61,20000347,34.0063,-149,38,-118.4188,5,1,0,2000-01,45,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,72,20000347,33.9223,-176,122,-118.4458,4,1,0,2000-01,44,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,81,20000347,33.9173,153,127,-118.1168,3,1,0,2000-01,24,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,94,20000347,33.7893,-4,255,-118.2738,1,1,0,2000-01,45,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,98,20000347,34.0063,-155,38,-118.4248,1,1,0,2000-01,12,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,110,20000347,33.9173,144,127,-118.1258,0,1,0,2000-01,15,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,114,20000347,33.4243,100,620,-118.1698,0,1,0,2000-01,0,62,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,12/17/00,LAL @ TOR,TOR
Driving Finger Roll Shot,Layup,162,20000347,34.0443,0,0,-118.2698,7,2,0,2000-01,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,205,20000347,33.8353,16,209,-118.2538,5,2,0,2000-01,17,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,319,20000347,33.8793,-191,165,-118.4608,7,3,0,2000-01,50,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/17/00,LAL @ TOR,TOR
Layup Shot,Layup,357,20000347,34.0443,0,0,-118.2698,4,3,0,2000-01,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,380,20000347,33.9723,1,72,-118.2688,2,3,0,2000-01,1,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,405,20000347,33.9513,-176,93,-118.4458,11,4,0,2000-01,48,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,416,20000347,33.8843,1,160,-118.2688,10,4,0,2000-01,35,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Turnaround Jump Shot,Jump Shot,423,20000347,33.9993,159,45,-118.1108,9,4,0,2000-01,24,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,475,20000347,33.9553,-206,89,-118.4758,4,4,0,2000-01,53,22,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,480,20000347,34.0233,237,21,-118.0328,3,4,0,2000-01,28,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,483,20000347,34.0403,129,4,-118.1408,3,4,0,2000-01,4,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,538,20000347,33.7893,-4,255,-118.2738,0,4,0,2000-01,0,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/17/00,LAL @ TOR,TOR
Turnaround Jump Shot,Jump Shot,547,20000347,33.9953,123,49,-118.1468,4,5,0,2000-01,40,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/17/00,LAL @ TOR,TOR
Driving Finger Roll Shot,Layup,569,20000347,34.0443,0,0,-118.2698,1,5,0,2000-01,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/00,LAL @ TOR,TOR
Jump Shot,Jump Shot,32,20000352,34.0463,-130,-2,-118.3998,7,1,0,2000-01,46,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,44,20000352,33.9173,-115,127,-118.3848,6,1,0,2000-01,58,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,52,20000352,34.0443,-56,0,-118.3258,5,1,0,2000-01,51,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Layup Shot,Layup,80,20000352,34.0443,0,0,-118.2698,2,1,0,2000-01,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,92,20000352,33.9283,62,116,-118.2078,0,1,0,2000-01,0,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,100,20000352,33.8083,47,236,-118.2228,11,2,0,2000-01,14,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,111,20000352,33.8633,161,181,-118.1088,9,2,0,2000-01,11,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/19/00,LAL @ MIA,MIA
Running Jump Shot,Jump Shot,115,20000352,33.9973,56,47,-118.2138,8,2,0,2000-01,48,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,125,20000352,33.8793,125,165,-118.1448,7,2,0,2000-01,59,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,139,20000352,34.0213,153,23,-118.1168,5,2,0,2000-01,52,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/19/00,LAL @ MIA,MIA
Running Jump Shot,Jump Shot,200,20000352,33.9973,24,47,-118.2458,0,2,0,2000-01,4,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Driving Layup Shot,Layup,221,20000352,34.0443,0,0,-118.2698,10,3,0,2000-01,26,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,237,20000352,33.9073,-71,137,-118.3408,8,3,0,2000-01,35,15,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/19/00,LAL @ MIA,MIA
Running Jump Shot,Jump Shot,239,20000352,34.0373,32,7,-118.2378,8,3,0,2000-01,9,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,263,20000352,34.0213,-157,23,-118.4268,5,3,0,2000-01,7,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,295,20000352,33.8733,-109,171,-118.3788,1,3,0,2000-01,57,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,301,20000352,33.9283,110,116,-118.1598,0,3,0,2000-01,57,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/19/00,LAL @ MIA,MIA
Driving Layup Shot,Layup,313,20000352,34.0443,0,0,-118.2698,0,3,0,2000-01,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,322,20000352,34.0673,182,-23,-118.0878,11,4,0,2000-01,13,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/19/00,LAL @ MIA,MIA
Driving Layup Shot,Layup,330,20000352,34.0443,0,0,-118.2698,10,4,0,2000-01,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/00,LAL @ MIA,MIA
Running Jump Shot,Jump Shot,387,20000352,34.0443,83,0,-118.1868,3,4,0,2000-01,30,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/19/00,LAL @ MIA,MIA
Jump Shot,Jump Shot,12,20000373,33.8963,-149,148,-118.4188,10,1,0,2000-01,50,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,15,20000373,33.8463,-63,198,-118.3328,9,1,0,2000-01,54,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/21/00,LAL @ HOU,HOU
Layup Shot,Layup,27,20000373,34.0443,0,0,-118.2698,7,1,0,2000-01,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,33,20000373,33.9153,1,129,-118.2688,6,1,0,2000-01,35,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,40,20000373,33.8163,123,228,-118.1468,5,1,0,2000-01,50,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/21/00,LAL @ HOU,HOU
Dunk Shot,Dunk,83,20000373,34.0443,0,0,-118.2698,1,1,0,2000-01,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Dunk Shot,Dunk,112,20000373,34.0443,0,0,-118.2698,11,2,0,2000-01,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,116,20000373,33.8633,79,181,-118.1908,10,2,0,2000-01,13,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/21/00,LAL @ HOU,HOU
Alley Oop Layup shot,Layup,174,20000373,34.0443,0,0,-118.2698,6,2,0,2000-01,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,178,20000373,34.0143,41,30,-118.2288,5,2,0,2000-01,50,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,186,20000373,33.9553,-94,89,-118.3638,4,2,0,2000-01,47,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,202,20000373,33.8483,98,196,-118.1718,3,2,0,2000-01,26,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/21/00,LAL @ HOU,HOU
Layup Shot,Layup,254,20000373,34.0443,0,0,-118.2698,10,3,0,2000-01,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,260,20000373,34.0253,-107,19,-118.3768,9,3,0,2000-01,47,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,262,20000373,34.0143,136,30,-118.1338,9,3,0,2000-01,6,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,297,20000373,33.8653,-73,179,-118.3428,6,3,0,2000-01,21,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/21/00,LAL @ HOU,HOU
Dunk Shot,Dunk,328,20000373,34.0443,0,0,-118.2698,3,3,0,2000-01,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,375,20000373,33.9813,20,63,-118.2498,10,4,0,2000-01,32,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Alley Oop Dunk Shot,Dunk,392,20000373,34.0443,0,0,-118.2698,7,4,0,2000-01,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,458,20000373,33.9813,106,63,-118.1638,1,4,0,2000-01,35,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,469,20000373,33.8373,49,207,-118.2208,0,4,0,2000-01,27,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/21/00,LAL @ HOU,HOU
Jump Shot,Jump Shot,2,20000379,33.9453,-136,99,-118.4058,11,1,0,2000-01,39,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,37,20000379,33.9283,140,116,-118.1298,7,1,0,2000-01,27,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,59,20000379,34.0293,-166,15,-118.4358,4,1,0,2000-01,36,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Tip Shot,Tip Shot,105,20000379,34.0443,0,0,-118.2698,0,1,0,2000-01,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/00,LAL @ DAL,DAL
Slam Dunk Shot,Dunk,116,20000379,34.0443,0,0,-118.2698,0,1,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/00,LAL @ DAL,DAL
Layup Shot,Layup,151,20000379,34.0443,0,0,-118.2698,9,2,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,154,20000379,34.0353,226,9,-118.0438,8,2,0,2000-01,50,22,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,211,20000379,33.8943,-115,150,-118.3848,3,2,0,2000-01,18,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,218,20000379,33.9893,146,55,-118.1238,2,2,0,2000-01,54,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,232,20000379,33.8223,-65,222,-118.3348,1,2,0,2000-01,43,23,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,235,20000379,33.8843,-1,160,-118.2708,1,2,0,2000-01,17,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,254,20000379,33.9683,-130,76,-118.3998,11,3,0,2000-01,18,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,372,20000379,33.8673,-130,177,-118.3998,10,4,0,2000-01,42,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,416,20000379,34.0443,-151,0,-118.4208,4,4,0,2000-01,57,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,439,20000379,34.0573,176,-13,-118.0938,2,4,0,2000-01,56,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Jump Shot,Jump Shot,463,20000379,33.9783,-187,66,-118.4568,1,4,0,2000-01,11,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/22/00,LAL @ DAL,DAL
Turnaround Jump Shot,Jump Shot,6,20000397,34.0273,81,17,-118.1888,10,1,0,2000-01,42,8,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,18,20000397,33.8793,81,165,-118.1888,8,1,0,2000-01,50,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,77,20000397,33.8733,117,171,-118.1528,2,1,0,2000-01,49,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,88,20000397,33.8463,-157,198,-118.4268,1,1,0,2000-01,37,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,109,20000397,33.9343,45,110,-118.2248,0,1,0,2000-01,25,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/00,LAL vs. POR,POR
Driving Layup Shot,Layup,112,20000397,34.0443,0,0,-118.2698,0,1,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,119,20000397,33.8903,144,154,-118.1258,11,2,0,2000-01,14,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/00,LAL vs. POR,POR
Running Jump Shot,Jump Shot,232,20000397,33.9933,45,51,-118.2248,0,2,0,2000-01,5,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,252,20000397,34.0633,-136,-19,-118.4058,10,3,0,2000-01,7,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/25/00,LAL vs. POR,POR
Turnaround Jump Shot,Jump Shot,258,20000397,33.9073,5,137,-118.2648,9,3,0,2000-01,39,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,263,20000397,33.8843,94,160,-118.1758,8,3,0,2000-01,50,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/00,LAL vs. POR,POR
Running Jump Shot,Jump Shot,286,20000397,33.9243,45,120,-118.2248,6,3,0,2000-01,23,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,288,20000397,33.8183,-157,226,-118.4268,5,3,0,2000-01,47,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,306,20000397,33.8903,123,154,-118.1468,4,3,0,2000-01,37,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,339,20000397,33.8253,144,219,-118.1258,1,3,0,2000-01,16,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,362,20000397,33.8123,144,232,-118.1258,0,3,0,2000-01,0,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,372,20000397,33.8843,117,160,-118.1528,10,4,0,2000-01,41,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,447,20000397,34.0043,39,40,-118.2308,3,4,0,2000-01,26,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/00,LAL vs. POR,POR
Jump Shot,Jump Shot,12,20000420,33.8293,-84,215,-118.3538,10,1,0,2000-01,28,23,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/28/00,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,16,20000420,34.0233,-105,21,-118.3748,9,1,0,2000-01,57,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,22,20000420,34.0443,100,0,-118.1698,8,1,0,2000-01,38,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,45,20000420,34.0403,138,4,-118.1318,5,1,0,2000-01,1,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,92,20000420,34.0233,94,21,-118.1758,0,1,0,2000-01,54,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,114,20000420,33.8523,159,192,-118.1108,10,2,0,2000-01,20,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/00,LAL @ PHX,PHX
Reverse Layup Shot,Layup,175,20000420,34.0443,0,0,-118.2698,4,2,0,2000-01,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/00,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,196,20000420,34.0163,-141,28,-118.4108,2,2,0,2000-01,46,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,198,20000420,33.9763,167,68,-118.1028,2,2,0,2000-01,26,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,218,20000420,33.8693,1,175,-118.2688,0,2,0,2000-01,45,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,225,20000420,33.8013,1,243,-118.2688,0,2,0,2000-01,30,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,232,20000420,33.9473,-4,97,-118.2738,11,3,0,2000-01,47,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/28/00,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,238,20000420,33.9723,123,72,-118.1468,11,3,0,2000-01,0,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,257,20000420,33.8393,-141,205,-118.4108,8,3,0,2000-01,21,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/28/00,LAL @ PHX,PHX
Driving Layup Shot,Layup,269,20000420,34.0443,0,0,-118.2698,7,3,0,2000-01,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/00,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,329,20000420,34.0483,195,-4,-118.0748,2,3,0,2000-01,54,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,354,20000420,34.0443,159,0,-118.1108,0,3,0,2000-01,35,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/00,LAL @ PHX,PHX
Jump Shot,Jump Shot,27,20000434,34.0233,201,21,-118.0688,9,1,0,2000-01,8,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,29,20000434,33.9993,174,45,-118.0958,8,1,0,2000-01,50,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,37,20000434,33.8223,-141,222,-118.4108,7,1,0,2000-01,29,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,39,20000434,33.8843,195,160,-118.0748,6,1,0,2000-01,44,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/30/00,LAL @ LAC,LAC
Alley Oop Dunk Shot,Dunk,74,20000434,34.0443,0,0,-118.2698,2,1,0,2000-01,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,80,20000434,33.9993,-162,45,-118.4318,1,1,0,2000-01,53,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/30/00,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,88,20000434,33.9893,-12,55,-118.2818,0,1,0,2000-01,40,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,153,20000434,33.7893,1,255,-118.2688,6,2,0,2000-01,20,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/30/00,LAL @ LAC,LAC
Reverse Layup Shot,Layup,174,20000434,34.0443,0,0,-118.2698,3,2,0,2000-01,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,188,20000434,33.9953,64,49,-118.2058,2,2,0,2000-01,1,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,197,20000434,33.8393,-141,205,-118.4108,0,2,0,2000-01,27,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,236,20000434,33.8063,-71,238,-118.3408,8,3,0,2000-01,38,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,270,20000434,33.8163,-141,228,-118.4108,3,3,0,2000-01,54,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,298,20000434,34.0293,129,15,-118.1408,1,3,0,2000-01,53,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/30/00,LAL @ LAC,LAC
Jump Shot,Jump Shot,19,20000456,33.8083,-50,236,-118.3198,9,1,0,2000-01,34,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,34,20000456,34.0633,-130,-19,-118.3998,8,1,0,2000-01,12,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,89,20000456,34.0733,-143,-29,-118.4128,1,1,0,2000-01,38,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,99,20000456,33.8353,-143,209,-118.4128,0,1,0,2000-01,18,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,113,20000456,34.0423,144,2,-118.1258,10,2,0,2000-01,39,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,149,20000456,33.9493,153,95,-118.1168,7,2,0,2000-01,25,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,168,20000456,33.9453,-107,99,-118.3768,4,2,0,2000-01,56,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/3/01,LAL vs. UTA,UTA
Turnaround Jump Shot,Jump Shot,176,20000456,33.9623,94,82,-118.1758,3,2,0,2000-01,46,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/3/01,LAL vs. UTA,UTA
Slam Dunk Shot,Dunk,179,20000456,34.0443,0,0,-118.2698,3,2,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,189,20000456,33.9283,159,116,-118.1108,2,2,0,2000-01,10,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/3/01,LAL vs. UTA,UTA
Reverse Dunk Shot,Dunk,194,20000456,34.0443,0,0,-118.2698,1,2,0,2000-01,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/3/01,LAL vs. UTA,UTA
Driving Dunk Shot,Dunk,309,20000456,34.0443,0,0,-118.2698,0,3,0,2000-01,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,316,20000456,33.7533,-16,291,-118.2858,0,3,0,2000-01,0,29,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,366,20000456,33.8083,110,236,-118.1598,8,4,0,2000-01,31,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,412,20000456,33.9343,153,110,-118.1168,4,4,0,2000-01,42,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/3/01,LAL vs. UTA,UTA
Alley Oop Dunk Shot,Dunk,424,20000456,34.0443,0,0,-118.2698,3,4,0,2000-01,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,430,20000456,33.8013,102,243,-118.1678,2,4,0,2000-01,43,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,443,20000456,34.0313,-227,13,-118.4968,1,4,0,2000-01,2,22,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,454,20000456,33.8353,45,209,-118.2248,0,4,0,2000-01,26,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/3/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,11,20000484,33.8463,-143,198,-118.4128,10,1,0,2000-01,9,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/7/01,LAL vs. LAC,LAC
Driving Layup Shot,Layup,33,20000484,34.0443,0,0,-118.2698,8,1,0,2000-01,7,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,37,20000484,34.0103,-176,34,-118.4458,7,1,0,2000-01,33,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/7/01,LAL vs. LAC,LAC
Running Jump Shot,Jump Shot,46,20000484,33.9113,54,133,-118.2158,6,1,0,2000-01,9,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,56,20000484,33.9283,102,116,-118.1678,5,1,0,2000-01,4,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/7/01,LAL vs. LAC,LAC
Layup Shot,Layup,58,20000484,34.0443,0,0,-118.2698,4,1,0,2000-01,50,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,70,20000484,33.8903,45,154,-118.2248,4,1,0,2000-01,12,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,78,20000484,33.9173,-44,127,-118.3138,3,1,0,2000-01,56,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,166,20000484,34.0593,-170,-15,-118.4398,7,2,0,2000-01,16,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,175,20000484,34.0593,165,-15,-118.1048,6,2,0,2000-01,23,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/7/01,LAL vs. LAC,LAC
Running Jump Shot,Jump Shot,189,20000484,33.9833,54,61,-118.2158,5,2,0,2000-01,12,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/7/01,LAL vs. LAC,LAC
Running Jump Shot,Jump Shot,193,20000484,34.0043,-130,40,-118.3998,4,2,0,2000-01,42,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/7/01,LAL vs. LAC,LAC
Slam Dunk Shot,Dunk,219,20000484,34.0443,0,0,-118.2698,2,2,0,2000-01,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,244,20000484,33.9723,26,72,-118.2438,0,2,0,2000-01,2,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,351,20000484,34.0103,193,34,-118.0768,1,3,0,2000-01,55,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,468,20000484,33.8393,-79,205,-118.3488,4,4,0,2000-01,46,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,485,20000484,33.8013,94,243,-118.1758,2,4,0,2000-01,46,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,492,20000484,33.9833,237,61,-118.0328,2,4,0,2000-01,1,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,497,20000484,33.7873,54,257,-118.2158,1,4,0,2000-01,26,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/7/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,11,20000519,33.9113,-10,133,-118.2798,10,1,0,2000-01,28,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,33,20000519,33.8903,-71,154,-118.3408,8,1,0,2000-01,22,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,117,20000519,33.8393,-44,205,-118.3138,10,2,0,2000-01,41,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,191,20000519,33.8633,172,181,-118.0978,2,2,0,2000-01,31,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,224,20000519,33.8903,-107,154,-118.3768,11,3,0,2000-01,14,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,235,20000519,34.0593,207,-15,-118.0628,9,3,0,2000-01,34,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,238,20000519,33.9663,81,78,-118.1888,8,3,0,2000-01,58,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/12/01,LAL vs. CLE,CLE
Running Layup Shot,Layup,250,20000519,34.0443,0,0,-118.2698,7,3,0,2000-01,57,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,254,20000519,34.0463,-157,-2,-118.4268,7,3,0,2000-01,38,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,313,20000519,34.0423,-98,2,-118.3678,1,3,0,2000-01,43,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/12/01,LAL vs. CLE,CLE
Layup Shot,Layup,328,20000519,34.0443,0,0,-118.2698,0,3,0,2000-01,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/01,LAL vs. CLE,CLE
Layup Shot,Layup,329,20000519,34.0443,0,0,-118.2698,0,3,0,2000-01,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,339,20000519,33.7743,123,270,-118.1468,0,3,0,2000-01,3,29,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/12/01,LAL vs. CLE,CLE
Turnaround Jump Shot,Jump Shot,356,20000519,34.0313,144,13,-118.1258,10,4,0,2000-01,35,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,386,20000519,34.0673,-115,-23,-118.3848,7,4,0,2000-01,23,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/12/01,LAL vs. CLE,CLE
Alley Oop Layup shot,Layup,391,20000519,34.0443,0,0,-118.2698,6,4,0,2000-01,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,414,20000519,33.8013,66,243,-118.2038,5,4,0,2000-01,15,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,417,20000519,33.9453,159,99,-118.1108,4,4,0,2000-01,51,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/12/01,LAL vs. CLE,CLE
Running Jump Shot,Jump Shot,422,20000519,34.0273,-130,17,-118.3998,4,4,0,2000-01,21,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,436,20000519,33.8903,117,154,-118.1528,3,4,0,2000-01,4,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/12/01,LAL vs. CLE,CLE
Jump Shot,Jump Shot,37,20000529,33.8203,-107,224,-118.3768,6,1,0,2000-01,53,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,50,20000529,33.8033,11,241,-118.2588,5,1,0,2000-01,10,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,73,20000529,34.0523,182,-8,-118.0878,2,1,0,2000-01,52,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,139,20000529,34.0483,153,-4,-118.1168,7,2,0,2000-01,43,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/13/01,LAL @ UTA,UTA
Layup Shot,Layup,149,20000529,34.0443,0,0,-118.2698,6,2,0,2000-01,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,193,20000529,34.0083,182,36,-118.0878,1,2,0,2000-01,10,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,202,20000529,33.9323,115,112,-118.1548,0,2,0,2000-01,6,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,207,20000529,33.8373,153,207,-118.1168,0,2,0,2000-01,0,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,245,20000529,33.8673,-25,177,-118.2948,9,3,0,2000-01,12,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,256,20000529,34.0183,-107,26,-118.3768,7,3,0,2000-01,43,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,302,20000529,34.0253,-54,19,-118.3238,4,3,0,2000-01,21,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,313,20000529,34.0523,167,-8,-118.1028,3,3,0,2000-01,5,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,341,20000529,33.8603,85,184,-118.1848,0,3,0,2000-01,29,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,390,20000529,34.0593,-128,-15,-118.3978,8,4,0,2000-01,36,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,416,20000529,33.8733,123,171,-118.1468,5,4,0,2000-01,20,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,478,20000529,33.7973,-16,247,-118.2858,0,4,0,2000-01,52,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,496,20000529,33.9323,214,112,-118.0558,0,4,0,2000-01,10,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/13/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,30,20000545,34.0273,-122,17,-118.3918,8,1,0,2000-01,29,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,59,20000545,33.8693,94,175,-118.1758,5,1,0,2000-01,18,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,67,20000545,33.9073,-122,137,-118.3918,4,1,0,2000-01,7,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,77,20000545,33.8843,123,160,-118.1468,2,1,0,2000-01,44,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Turnaround Jump Shot,Jump Shot,106,20000545,33.8793,-37,165,-118.3068,0,1,0,2000-01,36,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,116,20000545,33.9453,144,99,-118.1258,0,1,0,2000-01,1,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Running Jump Shot,Jump Shot,150,20000545,33.8843,-92,160,-118.3618,7,2,0,2000-01,39,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Turnaround Jump Shot,Jump Shot,154,20000545,33.9763,-1,68,-118.2708,7,2,0,2000-01,5,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,161,20000545,33.8633,-164,181,-118.4338,6,2,0,2000-01,24,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,197,20000545,33.8313,138,213,-118.1318,2,2,0,2000-01,35,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/15/01,LAL vs. VAN,VAN
Alley Oop Dunk Shot,Dunk,199,20000545,34.0443,0,0,-118.2698,2,2,0,2000-01,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,210,20000545,33.9893,180,55,-118.0898,1,2,0,2000-01,12,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,236,20000545,34.0213,-136,23,-118.4058,11,3,0,2000-01,29,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,280,20000545,33.7913,54,253,-118.2158,7,3,0,2000-01,23,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,289,20000545,33.8903,-122,154,-118.3918,6,3,0,2000-01,29,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Running Jump Shot,Jump Shot,440,20000545,34.0593,-130,-15,-118.3998,4,4,0,2000-01,11,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,449,20000545,33.9833,-149,61,-118.4188,3,4,0,2000-01,13,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Reverse Layup Shot,Layup,459,20000545,34.0443,0,0,-118.2698,2,4,0,2000-01,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/15/01,LAL vs. VAN,VAN
Turnaround Jump Shot,Jump Shot,470,20000545,34.0163,-164,28,-118.4338,1,4,0,2000-01,19,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,490,20000545,34.0633,-164,-19,-118.4338,0,4,0,2000-01,9,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,504,20000545,34.0273,172,17,-118.0978,3,5,0,2000-01,57,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,514,20000545,33.8903,-136,154,-118.4058,2,5,0,2000-01,35,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,517,20000545,33.8253,66,219,-118.2038,1,5,0,2000-01,50,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/15/01,LAL vs. VAN,VAN
Jump Shot,Jump Shot,11,20000571,33.8843,54,160,-118.2158,10,1,0,2000-01,7,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,21,20000571,33.8523,-157,192,-118.4268,8,1,0,2000-01,56,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/19/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,56,20000571,33.8963,45,148,-118.2248,4,1,0,2000-01,51,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,68,20000571,33.8693,87,175,-118.1828,3,1,0,2000-01,6,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,76,20000571,33.9243,144,120,-118.1258,2,1,0,2000-01,36,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/19/01,LAL vs. HOU,HOU
Driving Layup Shot,Layup,94,20000571,34.0443,0,0,-118.2698,0,1,0,2000-01,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,109,20000571,33.8903,87,154,-118.1828,10,2,0,2000-01,27,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/19/01,LAL vs. HOU,HOU
Driving Layup Shot,Layup,138,20000571,34.0443,0,0,-118.2698,7,2,0,2000-01,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/19/01,LAL vs. HOU,HOU
Reverse Layup Shot,Layup,159,20000571,34.0443,0,0,-118.2698,5,2,0,2000-01,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,161,20000571,33.9833,-1,61,-118.2708,5,2,0,2000-01,30,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/19/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,183,20000571,33.9113,-122,133,-118.3918,3,2,0,2000-01,36,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,231,20000571,33.8253,-44,219,-118.3138,0,2,0,2000-01,9,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/19/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,263,20000571,34.0423,117,2,-118.1528,8,3,0,2000-01,36,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/19/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,272,20000571,34.0463,-130,-2,-118.3998,7,3,0,2000-01,39,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,333,20000571,34.0373,-122,7,-118.3918,2,3,0,2000-01,1,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/19/01,LAL vs. HOU,HOU
Driving Layup Shot,Layup,337,20000571,34.0443,0,0,-118.2698,1,3,0,2000-01,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,375,20000571,33.8963,-122,148,-118.3918,10,4,0,2000-01,22,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/19/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,396,20000571,33.9663,-31,78,-118.3008,7,4,0,2000-01,38,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/19/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,4,20000583,33.8693,60,175,-118.2098,11,1,0,2000-01,15,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,22,20000583,33.8693,102,175,-118.1678,8,1,0,2000-01,11,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,51,20000583,33.8523,-92,192,-118.3618,3,1,0,2000-01,32,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,53,20000583,34.0423,117,2,-118.1528,3,1,0,2000-01,21,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,75,20000583,33.9933,32,51,-118.2378,0,1,0,2000-01,1,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/21/01,LAL vs. MIA,MIA
Slam Dunk Shot,Dunk,88,20000583,34.0443,0,0,-118.2698,11,2,0,2000-01,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/21/01,LAL vs. MIA,MIA
Running Jump Shot,Jump Shot,118,20000583,33.9343,5,110,-118.2648,8,2,0,2000-01,4,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,124,20000583,33.8903,123,154,-118.1468,7,2,0,2000-01,22,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Running Jump Shot,Jump Shot,139,20000583,33.9283,26,116,-118.2438,5,2,0,2000-01,41,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,166,20000583,33.8733,-185,171,-118.4548,3,2,0,2000-01,26,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,226,20000583,33.9623,-176,82,-118.4458,0,2,0,2000-01,40,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,267,20000583,33.9113,102,133,-118.1678,8,3,0,2000-01,14,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,284,20000583,33.8313,138,213,-118.1318,7,3,0,2000-01,12,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,313,20000583,33.8793,87,165,-118.1828,3,3,0,2000-01,48,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,323,20000583,34.0103,-122,34,-118.3918,2,3,0,2000-01,17,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,339,20000583,33.9283,26,116,-118.2438,0,3,0,2000-01,44,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,383,20000583,33.8733,110,171,-118.1598,9,4,0,2000-01,15,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,418,20000583,33.9893,-149,55,-118.4188,6,4,0,2000-01,19,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/21/01,LAL vs. MIA,MIA
Layup Shot,Layup,449,20000583,34.0443,0,0,-118.2698,3,4,0,2000-01,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/21/01,LAL vs. MIA,MIA
Driving Layup Shot,Layup,468,20000583,34.0443,0,0,-118.2698,1,4,0,2000-01,51,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,471,20000583,33.8393,165,205,-118.1048,1,4,0,2000-01,34,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/21/01,LAL vs. MIA,MIA
Jump Shot,Jump Shot,19,20000599,33.8963,1,148,-118.2688,8,1,0,2000-01,58,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,39,20000599,33.9033,-147,141,-118.4168,7,1,0,2000-01,5,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/23/01,LAL @ SEA,SEA
Running Jump Shot,Jump Shot,76,20000599,34.0443,-63,0,-118.3328,2,1,0,2000-01,49,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,102,20000599,33.9093,85,135,-118.1848,1,1,0,2000-01,3,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,122,20000599,34.0503,129,-6,-118.1408,10,2,0,2000-01,42,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,136,20000599,34.0293,-48,15,-118.3178,8,2,0,2000-01,54,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,254,20000599,33.9813,157,63,-118.1128,10,3,0,2000-01,7,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,263,20000599,34.0353,-105,9,-118.3748,9,3,0,2000-01,22,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/23/01,LAL @ SEA,SEA
Finger Roll Shot,Layup,338,20000599,34.0443,0,0,-118.2698,1,3,0,2000-01,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,350,20000599,33.7873,-12,257,-118.2818,0,3,0,2000-01,36,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,363,20000599,33.7993,85,245,-118.1848,11,4,0,2000-01,22,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,378,20000599,33.8483,43,196,-118.2268,9,4,0,2000-01,45,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,434,20000599,33.9683,150,76,-118.1198,6,4,0,2000-01,12,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/23/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,454,20000599,34.0403,-63,4,-118.3328,4,4,0,2000-01,47,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/23/01,LAL @ SEA,SEA
Driving Layup Shot,Layup,13,20000616,34.0443,0,0,-118.2698,10,1,0,2000-01,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,55,20000616,33.9893,-149,55,-118.4188,5,1,0,2000-01,1,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,76,20000616,33.9553,39,89,-118.2308,2,1,0,2000-01,57,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/26/01,LAL vs. NJN,NJN
Tip Shot,Tip Shot,77,20000616,34.0443,0,0,-118.2698,2,1,0,2000-01,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,98,20000616,33.9243,138,120,-118.1318,1,1,0,2000-01,13,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,102,20000616,33.9763,-31,68,-118.3008,0,1,0,2000-01,58,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Running Jump Shot,Jump Shot,117,20000616,33.9933,32,51,-118.2378,0,1,0,2000-01,4,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Driving Dunk Shot,Dunk,141,20000616,34.0443,0,0,-118.2698,8,2,0,2000-01,55,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,171,20000616,34.0313,-44,13,-118.3138,5,2,0,2000-01,38,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,226,20000616,34.0463,-107,-2,-118.3768,0,2,0,2000-01,40,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,254,20000616,33.7743,-16,270,-118.2858,9,3,0,2000-01,58,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,318,20000616,33.8633,117,181,-118.1528,3,3,0,2000-01,43,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/26/01,LAL vs. NJN,NJN
Reverse Layup Shot,Layup,409,20000616,34.0443,0,0,-118.2698,5,4,0,2000-01,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Driving Layup Shot,Layup,425,20000616,34.0443,0,0,-118.2698,4,4,0,2000-01,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,460,20000616,33.8393,-10,205,-118.2798,0,4,0,2000-01,56,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/26/01,LAL vs. NJN,NJN
Jump Shot,Jump Shot,14,20000629,34.0043,142,40,-118.1278,9,1,0,2000-01,30,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,49,20000629,34.0443,-240,0,-118.5098,4,1,0,2000-01,36,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,85,20000629,33.7803,-23,264,-118.2928,0,1,0,2000-01,35,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,89,20000629,34.0273,157,17,-118.1128,0,1,0,2000-01,0,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,143,20000629,33.9223,-138,122,-118.4078,6,2,0,2000-01,8,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,152,20000629,33.8563,32,188,-118.2378,5,2,0,2000-01,8,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/28/01,LAL @ NYK,NYK
Layup Shot,Layup,154,20000629,34.0443,0,0,-118.2698,4,2,0,2000-01,59,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,179,20000629,33.9783,134,66,-118.1358,2,2,0,2000-01,28,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,216,20000629,34.0213,-183,23,-118.4528,11,3,0,2000-01,2,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/28/01,LAL @ NYK,NYK
Layup Shot,Layup,243,20000629,34.0443,0,0,-118.2698,7,3,0,2000-01,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,287,20000629,33.9223,-132,122,-118.4018,2,3,0,2000-01,28,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/28/01,LAL @ NYK,NYK
Dunk Shot,Dunk,293,20000629,34.0443,0,0,-118.2698,2,3,0,2000-01,7,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Layup Shot,Layup,295,20000629,34.0443,0,0,-118.2698,1,3,0,2000-01,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Driving Layup Shot,Layup,330,20000629,34.0443,0,0,-118.2698,10,4,0,2000-01,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,358,20000629,34.0103,-153,34,-118.4228,8,4,0,2000-01,10,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,364,20000629,33.9553,-138,89,-118.4078,7,4,0,2000-01,26,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/28/01,LAL @ NYK,NYK
Layup Shot,Layup,386,20000629,34.0443,0,0,-118.2698,4,4,0,2000-01,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Tip Shot,Tip Shot,417,20000629,34.0443,0,0,-118.2698,2,4,0,2000-01,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Layup Shot,Layup,425,20000629,34.0443,0,0,-118.2698,1,4,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Alley Oop Layup shot,Layup,431,20000629,34.0443,0,0,-118.2698,0,4,0,2000-01,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,440,20000629,33.7973,-109,247,-118.3788,0,4,0,2000-01,23,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/28/01,LAL @ NYK,NYK
Jump Shot,Jump Shot,15,20000641,34.0523,115,-8,-118.1548,9,1,0,2000-01,15,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,32,20000641,33.9173,-77,127,-118.3468,7,1,0,2000-01,8,14,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,43,20000641,34.0633,159,-19,-118.1108,5,1,0,2000-01,54,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,54,20000641,34.0463,51,-2,-118.2188,5,1,0,2000-01,4,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,68,20000641,33.9283,-92,116,-118.3618,4,1,0,2000-01,4,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,74,20000641,34.0523,-155,-8,-118.4248,3,1,0,2000-01,49,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Layup Shot,Layup,95,20000641,34.0373,7,7,-118.2628,2,1,0,2000-01,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,188,20000641,34.0213,115,23,-118.1548,6,2,0,2000-01,52,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,211,20000641,34.0373,-134,7,-118.4038,4,2,0,2000-01,36,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Layup Shot,Layup,213,20000641,34.0313,-12,13,-118.2818,4,2,0,2000-01,32,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,224,20000641,34.0043,-4,40,-118.2738,3,2,0,2000-01,31,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/30/01,LAL @ CLE,CLE
Dunk Shot,Dunk,261,20000641,34.0523,1,-8,-118.2688,1,2,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,284,20000641,34.0313,51,13,-118.2188,10,3,0,2000-01,51,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,314,20000641,33.8943,-33,150,-118.3028,7,3,0,2000-01,21,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Turnaround Jump Shot,Jump Shot,336,20000641,34.0443,-141,0,-118.4108,5,3,0,2000-01,20,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,357,20000641,33.9173,1,127,-118.2688,3,3,0,2000-01,28,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,439,20000641,34.0043,-162,40,-118.4318,7,4,0,2000-01,12,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,459,20000641,33.9973,7,47,-118.2628,4,4,0,2000-01,57,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,470,20000641,33.9003,1,144,-118.2688,3,4,0,2000-01,54,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/30/01,LAL @ CLE,CLE
Jump Shot,Jump Shot,518,20000641,34.0573,180,-13,-118.0898,0,4,0,2000-01,29,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/30/01,LAL @ CLE,CLE
Turnaround Jump Shot,Jump Shot,10,20000651,33.9833,-136,61,-118.4058,10,1,0,2000-01,41,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/31/01,LAL @ MIN,MIN
Jump Shot,Jump Shot,53,20000651,33.9193,113,125,-118.1568,5,1,0,2000-01,16,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/31/01,LAL @ MIN,MIN
Layup Shot,Layup,75,20000651,34.0443,0,0,-118.2698,2,1,0,2000-01,51,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/01,LAL @ MIN,MIN
Jump Shot,Jump Shot,100,20000651,33.8163,1,228,-118.2688,0,1,0,2000-01,33,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/31/01,LAL @ MIN,MIN
Driving Layup Shot,Layup,167,20000651,34.0443,0,0,-118.2698,5,2,0,2000-01,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/01,LAL @ MIN,MIN
Layup Shot,Layup,186,20000651,34.0443,0,0,-118.2698,4,2,0,2000-01,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/01,LAL @ MIN,MIN
Layup Shot,Layup,218,20000651,34.0443,0,0,-118.2698,0,2,0,2000-01,37,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/01,LAL @ MIN,MIN
Jump Shot,Jump Shot,220,20000651,34.0213,-164,23,-118.4338,0,2,0,2000-01,30,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/31/01,LAL @ MIN,MIN
Jump Shot,Jump Shot,244,20000651,33.9263,-143,118,-118.4128,9,3,0,2000-01,5,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/31/01,LAL @ MIN,MIN
Jump Shot,Jump Shot,301,20000651,33.9993,121,45,-118.1488,3,3,0,2000-01,5,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/31/01,LAL @ MIN,MIN
Driving Layup Shot,Layup,318,20000651,34.0443,0,0,-118.2698,0,3,0,2000-01,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/01,LAL @ MIN,MIN
Layup Shot,Layup,363,20000651,34.0443,0,0,-118.2698,8,4,0,2000-01,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/01,LAL @ MIN,MIN
Driving Layup Shot,Layup,380,20000651,34.0443,0,0,-118.2698,7,4,0,2000-01,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/01,LAL @ MIN,MIN
Jump Shot,Jump Shot,429,20000651,33.8523,172,192,-118.0978,3,4,0,2000-01,36,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/31/01,LAL @ MIN,MIN
Driving Layup Shot,Layup,21,20000666,34.0443,0,0,-118.2698,8,1,0,2000-01,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,33,20000666,33.8633,-79,181,-118.3488,7,1,0,2000-01,5,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/2/01,LAL vs. CHH,CHA
Driving Layup Shot,Layup,49,20000666,34.0443,0,0,-118.2698,4,1,0,2000-01,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Driving Layup Shot,Layup,54,20000666,34.0443,0,0,-118.2698,4,1,0,2000-01,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,65,20000666,34.0043,159,40,-118.1108,3,1,0,2000-01,24,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/2/01,LAL vs. CHH,CHA
Layup Shot,Layup,74,20000666,34.0443,0,0,-118.2698,2,1,0,2000-01,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Turnaround Jump Shot,Jump Shot,86,20000666,33.9553,132,89,-118.1378,0,1,0,2000-01,57,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/2/01,LAL vs. CHH,CHA
Driving Layup Shot,Layup,90,20000666,34.0443,0,0,-118.2698,0,1,0,2000-01,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Turnaround Jump Shot,Jump Shot,109,20000666,34.0213,144,23,-118.1258,11,2,0,2000-01,6,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/2/01,LAL vs. CHH,CHA
Running Jump Shot,Jump Shot,119,20000666,33.9663,5,78,-118.2648,9,2,0,2000-01,31,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Tip Shot,Tip Shot,149,20000666,34.0443,0,0,-118.2698,5,2,0,2000-01,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,193,20000666,33.9493,11,95,-118.2588,2,2,0,2000-01,35,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,196,20000666,33.8633,-58,181,-118.3278,2,2,0,2000-01,5,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/2/01,LAL vs. CHH,CHA
Layup Shot,Layup,225,20000666,34.0443,0,0,-118.2698,0,2,0,2000-01,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,263,20000666,33.7323,11,312,-118.2588,8,3,0,2000-01,26,31,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,285,20000666,33.9553,-149,89,-118.4188,5,3,0,2000-01,31,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,292,20000666,33.9003,117,144,-118.1528,4,3,0,2000-01,58,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,319,20000666,33.8733,132,171,-118.1378,3,3,0,2000-01,14,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/2/01,LAL vs. CHH,CHA
Layup Shot,Layup,339,20000666,34.0443,0,0,-118.2698,1,3,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Driving Layup Shot,Layup,381,20000666,34.0443,0,0,-118.2698,8,4,0,2000-01,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,412,20000666,33.9173,132,127,-118.1378,4,4,0,2000-01,35,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/2/01,LAL vs. CHH,CHA
Jump Shot,Jump Shot,443,20000666,33.9343,-107,110,-118.3768,0,4,0,2000-01,21,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/2/01,LAL vs. CHH,CHA
Slam Dunk Shot,Dunk,6,20000682,34.0443,0,0,-118.2698,11,1,0,2000-01,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,11,20000682,34.0273,-197,17,-118.4668,9,1,0,2000-01,57,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,30,20000682,33.9093,-111,135,-118.3808,7,1,0,2000-01,28,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,40,20000682,34.0423,85,2,-118.1848,6,1,0,2000-01,11,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,58,20000682,33.8753,-84,169,-118.3538,3,1,0,2000-01,19,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,140,20000682,33.8693,121,175,-118.1488,7,2,0,2000-01,53,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,142,20000682,33.9033,14,141,-118.2558,7,2,0,2000-01,21,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/4/01,LAL vs. SAC,SAC
Layup Shot,Layup,147,20000682,34.0443,0,0,-118.2698,6,2,0,2000-01,50,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,155,20000682,33.8813,127,163,-118.1428,6,2,0,2000-01,15,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Layup Shot,Layup,182,20000682,34.0443,0,0,-118.2698,4,2,0,2000-01,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,219,20000682,34.0523,-204,-8,-118.4738,1,2,0,2000-01,29,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,228,20000682,33.8813,106,163,-118.1638,0,2,0,2000-01,50,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,231,20000682,34.0103,-160,34,-118.4298,0,2,0,2000-01,43,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,255,20000682,33.8983,142,146,-118.1278,11,3,0,2000-01,6,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Running Jump Shot,Jump Shot,262,20000682,33.9593,-27,85,-118.2968,10,3,0,2000-01,16,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/4/01,LAL vs. SAC,SAC
Running Jump Shot,Jump Shot,272,20000682,33.9833,-27,61,-118.2968,9,3,0,2000-01,25,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,283,20000682,34.0213,49,23,-118.2208,7,3,0,2000-01,55,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,291,20000682,33.8753,127,169,-118.1428,6,3,0,2000-01,50,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,321,20000682,34.0313,241,13,-118.0288,4,3,0,2000-01,2,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/4/01,LAL vs. SAC,SAC
Alley Oop Dunk Shot,Dunk,335,20000682,34.0443,0,0,-118.2698,2,3,0,2000-01,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,339,20000682,34.0373,163,7,-118.1068,2,3,0,2000-01,15,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,354,20000682,33.9033,-27,141,-118.2968,0,3,0,2000-01,40,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,429,20000682,33.9873,-54,57,-118.3238,5,4,0,2000-01,16,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/4/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,63,20000702,33.9833,-132,61,-118.4018,5,1,0,2000-01,21,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,71,20000702,33.8523,-54,192,-118.3238,4,1,0,2000-01,57,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,99,20000702,33.8413,-6,203,-118.2758,1,1,0,2000-01,47,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,120,20000702,33.7403,22,304,-118.2478,0,1,0,2000-01,0,30,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/7/01,LAL vs. PHX,PHX
Driving Dunk Shot,Dunk,143,20000702,34.0443,0,0,-118.2698,9,2,0,2000-01,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,197,20000702,34.0693,134,-25,-118.1358,5,2,0,2000-01,20,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,236,20000702,33.9363,-132,108,-118.4018,1,2,0,2000-01,18,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,246,20000702,33.3483,106,696,-118.1638,0,2,0,2000-01,0,70,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,2/7/01,LAL vs. PHX,PHX
Running Jump Shot,Jump Shot,261,20000702,34.0463,-132,-2,-118.4018,9,3,0,2000-01,52,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,270,20000702,33.9323,73,112,-118.1968,8,3,0,2000-01,23,13,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/7/01,LAL vs. PHX,PHX
Alley Oop Dunk Shot,Dunk,278,20000702,34.0443,0,0,-118.2698,8,3,0,2000-01,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/7/01,LAL vs. PHX,PHX
Alley Oop Layup shot,Layup,282,20000702,34.0443,0,0,-118.2698,7,3,0,2000-01,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,292,20000702,33.9193,127,125,-118.1428,6,3,0,2000-01,18,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/7/01,LAL vs. PHX,PHX
Alley Oop Dunk Shot,Dunk,308,20000702,34.0443,0,0,-118.2698,4,3,0,2000-01,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,350,20000702,34.0593,-141,-15,-118.4108,11,4,0,2000-01,8,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/7/01,LAL vs. PHX,PHX
Layup Shot,Layup,362,20000702,34.0443,0,0,-118.2698,9,4,0,2000-01,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,389,20000702,34.0423,-141,2,-118.4108,7,4,0,2000-01,33,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,408,20000702,34.0163,-174,28,-118.4438,6,4,0,2000-01,18,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/7/01,LAL vs. PHX,PHX
Driving Layup Shot,Layup,422,20000702,34.0443,0,0,-118.2698,5,4,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,427,20000702,33.9873,-111,57,-118.3808,4,4,0,2000-01,27,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/7/01,LAL vs. PHX,PHX
Layup Shot,Layup,450,20000702,34.0443,0,0,-118.2698,2,4,0,2000-01,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/7/01,LAL vs. PHX,PHX
Turnaround Jump Shot,Jump Shot,456,20000702,34.0103,-111,34,-118.3808,1,4,0,2000-01,33,11,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,461,20000702,33.8413,58,203,-118.2118,0,4,0,2000-01,59,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/7/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,465,20000702,33.8653,28,179,-118.2418,0,4,0,2000-01,25,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/7/01,LAL vs. PHX,PHX
Driving Layup Shot,Layup,9,20000710,34.0443,0,0,-118.2698,10,1,0,2000-01,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Driving Layup Shot,Layup,73,20000710,34.0443,0,0,-118.2698,2,1,0,2000-01,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,91,20000710,33.9573,73,87,-118.1968,1,1,0,2000-01,4,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/13/01,LAL @ NJN,NJN
Driving Layup Shot,Layup,102,20000710,34.0443,0,0,-118.2698,0,1,0,2000-01,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Reverse Layup Shot,Layup,249,20000710,34.0443,0,0,-118.2698,10,3,0,2000-01,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,256,20000710,33.9453,37,99,-118.2328,8,3,0,2000-01,59,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,271,20000710,34.0293,-170,15,-118.4398,7,3,0,2000-01,49,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/13/01,LAL @ NJN,NJN
Driving Layup Shot,Layup,281,20000710,34.0443,0,0,-118.2698,6,3,0,2000-01,13,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Running Jump Shot,Jump Shot,309,20000710,34.0403,-92,4,-118.3618,3,3,0,2000-01,12,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,348,20000710,33.8673,180,177,-118.0898,0,3,0,2000-01,1,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/13/01,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,402,20000710,34.0333,-134,11,-118.4038,6,4,0,2000-01,56,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,416,20000710,33.7803,-12,264,-118.2818,5,4,0,2000-01,17,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/13/01,LAL @ NJN,NJN
Driving Layup Shot,Layup,421,20000710,34.0443,0,0,-118.2698,4,4,0,2000-01,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Layup Shot,Layup,447,20000710,34.0443,0,0,-118.2698,1,4,0,2000-01,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Reverse Layup Shot,Layup,452,20000710,34.0443,0,0,-118.2698,1,4,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,463,20000710,33.8603,1,184,-118.2688,0,4,0,2000-01,6,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,484,20000710,33.8253,-141,219,-118.4108,3,5,0,2000-01,39,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/13/01,LAL @ NJN,NJN
Driving Layup Shot,Layup,486,20000710,34.0443,0,0,-118.2698,3,5,0,2000-01,33,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,509,20000710,34.0103,144,34,-118.1258,2,5,0,2000-01,2,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/13/01,LAL @ NJN,NJN
Driving Layup Shot,Layup,514,20000710,34.0443,0,0,-118.2698,1,5,0,2000-01,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Driving Layup Shot,Layup,536,20000710,34.0443,0,0,-118.2698,0,5,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/13/01,LAL @ NJN,NJN
Jump Shot,Jump Shot,141,20000723,34.0443,167,0,-118.1028,9,2,0,2000-01,37,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/01,LAL @ PHI,PHI
Dunk Shot,Dunk,180,20000723,34.0443,0,0,-118.2698,5,2,0,2000-01,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/01,LAL @ PHI,PHI
Jump Shot,Jump Shot,195,20000723,33.7763,-16,268,-118.2858,4,2,0,2000-01,1,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/14/01,LAL @ PHI,PHI
Jump Shot,Jump Shot,198,20000723,33.9513,-151,93,-118.4208,3,2,0,2000-01,37,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/14/01,LAL @ PHI,PHI
Driving Layup Shot,Layup,220,20000723,34.0443,0,0,-118.2698,2,2,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/01,LAL @ PHI,PHI
Jump Shot,Jump Shot,253,20000723,33.9453,153,99,-118.1168,10,3,0,2000-01,55,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/01,LAL @ PHI,PHI
Jump Shot,Jump Shot,258,20000723,33.9573,-151,87,-118.4208,9,3,0,2000-01,31,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/14/01,LAL @ PHI,PHI
Running Jump Shot,Jump Shot,279,20000723,33.9343,-29,110,-118.2988,7,3,0,2000-01,51,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/14/01,LAL @ PHI,PHI
Jump Shot,Jump Shot,290,20000723,34.0403,153,4,-118.1168,5,3,0,2000-01,49,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/14/01,LAL @ PHI,PHI
Driving Layup Shot,Layup,296,20000723,34.0443,0,0,-118.2698,5,3,0,2000-01,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/01,LAL @ PHI,PHI
Jump Shot,Jump Shot,344,20000723,33.9783,161,66,-118.1088,0,3,0,2000-01,36,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/01,LAL @ PHI,PHI
Jump Shot,Jump Shot,421,20000723,33.8673,191,177,-118.0788,4,4,0,2000-01,39,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/14/01,LAL @ PHI,PHI
Dunk Shot,Dunk,24,20000739,34.0443,0,0,-118.2698,8,1,0,2000-01,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,102,20000739,33.9973,-155,47,-118.4248,2,1,0,2000-01,41,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,137,20000739,33.8653,94,179,-118.1758,10,2,0,2000-01,56,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,157,20000739,33.8963,-113,148,-118.3828,9,2,0,2000-01,10,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,275,20000739,33.8753,-92,169,-118.3618,0,2,0,2000-01,2,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/16/01,LAL @ CHH,CHA
Tip Shot,Tip Shot,311,20000739,34.0443,0,0,-118.2698,8,3,0,2000-01,57,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,359,20000739,33.9873,43,57,-118.2268,5,3,0,2000-01,40,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,362,20000739,33.9743,-141,70,-118.4108,5,3,0,2000-01,9,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,472,20000739,34.0183,58,26,-118.2118,6,4,0,2000-01,37,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/16/01,LAL @ CHH,CHA
Jump Shot,Jump Shot,530,20000739,33.9193,-149,125,-118.4188,1,4,0,2000-01,39,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/16/01,LAL @ CHH,CHA
Reverse Layup Shot,Layup,540,20000739,34.0443,0,0,-118.2698,0,4,0,2000-01,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/16/01,LAL @ CHH,CHA
Layup Shot,Layup,15,20000753,34.0333,9,11,-118.2608,10,1,0,2000-01,38,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,51,20000753,33.9153,134,129,-118.1358,6,1,0,2000-01,12,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,53,20000753,33.9473,148,97,-118.1218,5,1,0,2000-01,47,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/18/01,LAL @ IND,IND
Layup Shot,Layup,135,20000753,34.0403,22,4,-118.2478,9,2,0,2000-01,41,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,201,20000753,34.0043,51,40,-118.2188,4,2,0,2000-01,2,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,243,20000753,33.9533,-206,91,-118.4758,0,2,0,2000-01,30,22,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/18/01,LAL @ IND,IND
Layup Shot,Layup,247,20000753,34.0233,1,21,-118.2688,0,2,0,2000-01,2,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,256,20000753,33.9153,-71,129,-118.3408,11,3,0,2000-01,33,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/18/01,LAL @ IND,IND
Layup Shot,Layup,258,20000753,34.0293,9,15,-118.2608,11,3,0,2000-01,14,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,270,20000753,34.0163,-56,28,-118.3258,9,3,0,2000-01,32,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,289,20000753,34.0293,-94,15,-118.3638,7,3,0,2000-01,50,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,307,20000753,34.0333,140,11,-118.1298,5,3,0,2000-01,20,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,324,20000753,33.7553,1,289,-118.2688,3,3,0,2000-01,55,28,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,335,20000753,34.0103,1,34,-118.2688,2,3,0,2000-01,55,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,371,20000753,34.0403,-162,4,-118.4318,11,4,0,2000-01,46,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/18/01,LAL @ IND,IND
Layup Shot,Layup,406,20000753,34.0443,9,0,-118.2608,7,4,0,2000-01,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,420,20000753,33.9533,-48,91,-118.3178,6,4,0,2000-01,0,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,425,20000753,34.0483,-94,-4,-118.3638,4,4,0,2000-01,49,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,441,20000753,33.8753,-65,169,-118.3348,4,4,0,2000-01,18,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/18/01,LAL @ IND,IND
Slam Dunk Shot,Dunk,452,20000753,34.0403,9,4,-118.2608,3,4,0,2000-01,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/01,LAL @ IND,IND
Jump Shot,Jump Shot,482,20000753,34.0403,237,4,-118.0328,0,4,0,2000-01,2,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/18/01,LAL @ IND,IND
Driving Layup Shot,Layup,15,20000767,34.0443,0,0,-118.2698,10,1,0,2000-01,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,52,20000767,33.8273,62,217,-118.2078,5,1,0,2000-01,15,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/20/01,LAL @ DAL,DAL
Turnaround Jump Shot,Jump Shot,119,20000767,34.0143,-151,30,-118.4208,10,2,0,2000-01,59,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,162,20000767,33.9073,3,137,-118.2668,6,2,0,2000-01,2,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,193,20000767,33.9513,-193,93,-118.4628,2,2,0,2000-01,39,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,195,20000767,34.0253,-202,19,-118.4718,2,2,0,2000-01,11,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,242,20000767,33.9183,-23,126,-118.2928,11,3,0,2000-01,5,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,248,20000767,33.9783,3,66,-118.2668,10,3,0,2000-01,28,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,278,20000767,34.0253,146,19,-118.1238,8,3,0,2000-01,5,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,336,20000767,34.0403,77,4,-118.1928,3,3,0,2000-01,4,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,361,20000767,33.9953,-29,49,-118.2988,0,3,0,2000-01,33,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/20/01,LAL @ DAL,DAL
Layup Shot,Layup,364,20000767,34.0443,0,0,-118.2698,0,3,0,2000-01,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,376,20000767,34.0083,146,36,-118.1238,11,4,0,2000-01,14,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/20/01,LAL @ DAL,DAL
Layup Shot,Layup,402,20000767,34.0443,0,0,-118.2698,8,4,0,2000-01,14,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,469,20000767,34.0023,18,42,-118.2518,2,4,0,2000-01,16,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/20/01,LAL @ DAL,DAL
Jump Shot,Jump Shot,6,20000828,34.0103,-155,34,-118.4248,11,1,0,2000-01,18,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,29,20000828,33.8863,-92,158,-118.3618,8,1,0,2000-01,15,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,46,20000828,33.9643,-191,80,-118.4608,6,1,0,2000-01,32,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Layup Shot,Layup,71,20000828,34.0443,0,0,-118.2698,3,1,0,2000-01,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,83,20000828,33.8413,-18,203,-118.2878,2,1,0,2000-01,46,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Layup Shot,Layup,151,20000828,34.0143,7,30,-118.2628,5,2,0,2000-01,36,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,155,20000828,33.9643,22,80,-118.2478,5,2,0,2000-01,19,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,160,20000828,33.9433,-12,101,-118.2818,4,2,0,2000-01,39,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,192,20000828,33.9093,159,135,-118.1108,2,2,0,2000-01,16,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,199,20000828,33.7913,7,253,-118.2628,1,2,0,2000-01,17,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,228,20000828,34.0463,-170,-2,-118.4398,10,3,0,2000-01,36,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,252,20000828,34.0443,-149,0,-118.4188,7,3,0,2000-01,23,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,255,20000828,33.8963,201,148,-118.0688,6,3,0,2000-01,44,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,266,20000828,33.8583,115,186,-118.1548,5,3,0,2000-01,12,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,278,20000828,34.0373,-200,7,-118.4698,3,3,0,2000-01,57,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,290,20000828,33.9873,-12,57,-118.2818,2,3,0,2000-01,29,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/28/01,LAL @ DEN,DEN
Layup Shot,Layup,294,20000828,34.0443,0,0,-118.2698,2,3,0,2000-01,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,327,20000828,33.8923,153,152,-118.1168,11,4,0,2000-01,36,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,348,20000828,33.8313,7,213,-118.2628,9,4,0,2000-01,23,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Layup Shot,Layup,350,20000828,34.0373,-18,7,-118.2878,9,4,0,2000-01,21,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,379,20000828,33.8353,-42,209,-118.3118,6,4,0,2000-01,43,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,391,20000828,33.9263,180,118,-118.0898,5,4,0,2000-01,11,21,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,425,20000828,34.0103,-170,34,-118.4398,1,4,0,2000-01,28,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,433,20000828,33.8203,-149,224,-118.4188,0,4,0,2000-01,31,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,457,20000828,33.7913,79,253,-118.1908,0,4,0,2000-01,3,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,462,20000828,33.6523,188,392,-118.0818,0,4,0,2000-01,0,43,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/28/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,12,20000852,33.8713,-122,173,-118.3918,10,1,0,2000-01,39,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,99,20000852,33.9853,-191,59,-118.4608,0,1,0,2000-01,25,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,101,20000852,33.6603,-44,384,-118.3138,0,1,0,2000-01,0,38,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/3/01,LAL @ VAN,VAN
Slam Dunk Shot,Dunk,127,20000852,34.0313,5,13,-118.2648,8,2,0,2000-01,39,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,157,20000852,33.9093,117,135,-118.1528,5,2,0,2000-01,27,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,186,20000852,33.8653,132,179,-118.1378,2,2,0,2000-01,25,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,189,20000852,34.0043,159,40,-118.1108,2,2,0,2000-01,4,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,279,20000852,33.9193,-164,125,-118.4338,2,3,0,2000-01,9,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/3/01,LAL @ VAN,VAN
Layup Shot,Layup,285,20000852,34.0183,-1,26,-118.2708,1,3,0,2000-01,30,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,362,20000852,33.7933,11,251,-118.2588,7,4,0,2000-01,50,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,379,20000852,33.9853,172,59,-118.0978,6,4,0,2000-01,19,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,407,20000852,34.0183,-50,26,-118.3198,4,4,0,2000-01,51,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,420,20000852,33.9913,-1,53,-118.2708,3,4,0,2000-01,45,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/3/01,LAL @ VAN,VAN
Jump Shot,Jump Shot,21,20000860,33.8813,106,163,-118.1638,10,1,0,2000-01,10,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/4/01,LAL vs. GSW,GSW
Running Hook Shot,Hook Shot,41,20000860,34.0443,0,0,-118.2698,7,1,0,2000-01,55,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,92,20000860,33.8143,142,230,-118.1278,3,1,0,2000-01,8,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/4/01,LAL vs. GSW,GSW
Reverse Dunk Shot,Dunk,112,20000860,34.0443,0,0,-118.2698,1,1,0,2000-01,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Driving Layup Shot,Layup,124,20000860,34.0443,0,0,-118.2698,0,1,0,2000-01,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Driving Layup Shot,Layup,215,20000860,34.0443,0,0,-118.2698,3,2,0,2000-01,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,265,20000860,33.9133,64,131,-118.2058,10,3,0,2000-01,30,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/4/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,287,20000860,33.9593,1,85,-118.2688,8,3,0,2000-01,8,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/4/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,289,20000860,33.9533,1,91,-118.2688,8,3,0,2000-01,1,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/4/01,LAL vs. GSW,GSW
Driving Layup Shot,Layup,303,20000860,34.0443,0,0,-118.2698,7,3,0,2000-01,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,346,20000860,33.9833,14,61,-118.2558,3,3,0,2000-01,5,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Driving Finger Roll Shot,Layup,351,20000860,34.0443,0,0,-118.2698,2,3,0,2000-01,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Driving Layup Shot,Layup,353,20000860,34.0443,0,0,-118.2698,2,3,0,2000-01,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/4/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,10,20000871,33.9783,87,66,-118.1828,10,1,0,2000-01,37,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,24,20000871,33.8733,117,171,-118.1528,9,1,0,2000-01,2,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,36,20000871,34.0123,-52,32,-118.3218,8,1,0,2000-01,23,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,39,20000871,33.9953,-31,49,-118.3008,8,1,0,2000-01,12,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,77,20000871,34.0233,30,21,-118.2398,3,1,0,2000-01,59,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,238,20000871,34.0443,0,0,-118.2698,0,2,0,2000-01,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Driving Layup Shot,Layup,256,20000871,34.0443,0,0,-118.2698,11,3,0,2000-01,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,263,20000871,34.0273,-168,17,-118.4378,10,3,0,2000-01,26,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/6/01,LAL @ GSW,GSW
Driving Layup Shot,Layup,312,20000871,34.0443,0,0,-118.2698,4,3,0,2000-01,55,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Dunk Shot,Dunk,329,20000871,34.0443,0,0,-118.2698,2,3,0,2000-01,48,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,459,20000871,34.0443,0,0,-118.2698,4,4,0,2000-01,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Layup Shot,Layup,474,20000871,34.0443,0,0,-118.2698,3,4,0,2000-01,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,477,20000871,34.0593,-153,-15,-118.4228,2,4,0,2000-01,33,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,485,20000871,33.8943,-52,150,-118.3218,1,4,0,2000-01,20,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,499,20000871,33.9493,-67,95,-118.3368,0,4,0,2000-01,35,11,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,502,20000871,33.7933,-25,251,-118.2948,0,4,0,2000-01,8,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/6/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,14,20000884,33.9433,1,101,-118.2688,9,1,0,2000-01,46,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,18,20000884,33.9193,-111,125,-118.3808,9,1,0,2000-01,21,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,32,20000884,33.8813,115,163,-118.1548,7,1,0,2000-01,8,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Tip Shot,Tip Shot,37,20000884,34.0443,0,0,-118.2698,6,1,0,2000-01,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Driving Layup Shot,Layup,60,20000884,34.0443,0,0,-118.2698,4,1,0,2000-01,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,79,20000884,33.9533,7,91,-118.2628,2,1,0,2000-01,22,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,93,20000884,33.9533,-84,91,-118.3538,1,1,0,2000-01,28,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,187,20000884,33.9033,121,141,-118.1488,4,2,0,2000-01,16,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Driving Layup Shot,Layup,202,20000884,34.0443,0,0,-118.2698,2,2,0,2000-01,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,232,20000884,33.9933,-189,51,-118.4588,0,2,0,2000-01,0,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Tip Shot,Tip Shot,242,20000884,34.0443,0,0,-118.2698,11,3,0,2000-01,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,258,20000884,33.8883,85,156,-118.1848,9,3,0,2000-01,25,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Layup Shot,Layup,267,20000884,34.0443,0,0,-118.2698,8,3,0,2000-01,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Running Jump Shot,Jump Shot,271,20000884,33.9703,22,74,-118.2478,7,3,0,2000-01,9,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,291,20000884,33.9433,155,101,-118.1148,5,3,0,2000-01,34,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,293,20000884,33.8983,-90,146,-118.3598,5,3,0,2000-01,26,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,295,20000884,34.0043,169,40,-118.1008,4,3,0,2000-01,43,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,299,20000884,33.7973,-84,247,-118.3538,4,3,0,2000-01,3,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,305,20000884,34.0103,-54,34,-118.3238,3,3,0,2000-01,43,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Layup Shot,Layup,307,20000884,34.0443,0,0,-118.2698,3,3,0,2000-01,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Alley Oop Dunk Shot,Dunk,332,20000884,34.0443,0,0,-118.2698,1,3,0,2000-01,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,335,20000884,33.8413,-39,203,-118.3088,1,3,0,2000-01,23,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,337,20000884,34.0213,-141,23,-118.4108,0,3,0,2000-01,50,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,343,20000884,33.9703,58,74,-118.2118,0,3,0,2000-01,3,9,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,359,20000884,33.9323,-27,112,-118.2968,11,4,0,2000-01,7,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/7/01,LAL vs. TOR,TOR
Driving Layup Shot,Layup,384,20000884,34.0443,0,0,-118.2698,8,4,0,2000-01,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,395,20000884,34.0373,148,7,-118.1218,6,4,0,2000-01,27,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/7/01,LAL vs. TOR,TOR
Alley Oop Dunk Shot,Dunk,403,20000884,34.0443,0,0,-118.2698,5,4,0,2000-01,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,408,20000884,33.9093,134,135,-118.1358,5,4,0,2000-01,23,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Running Jump Shot,Jump Shot,411,20000884,33.9593,-153,85,-118.4228,4,4,0,2000-01,44,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,414,20000884,33.7913,-54,253,-118.3238,4,4,0,2000-01,6,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/7/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,8,20000896,33.9593,-141,85,-118.4108,10,1,0,2000-01,38,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,12,20000896,34.0423,-111,2,-118.3808,10,1,0,2000-01,23,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/9/01,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,36,20000896,33.9263,49,118,-118.2208,7,1,0,2000-01,11,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,38,20000896,33.9133,-98,131,-118.3678,6,1,0,2000-01,33,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/9/01,LAL vs. SAS,SAS
Driving Layup Shot,Layup,54,20000896,34.0443,0,0,-118.2698,5,1,0,2000-01,12,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Driving Layup Shot,Layup,64,20000896,34.0443,0,0,-118.2698,3,1,0,2000-01,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,68,20000896,33.9873,-126,57,-118.3958,3,1,0,2000-01,25,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,80,20000896,33.9363,94,108,-118.1758,2,1,0,2000-01,44,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,94,20000896,33.9193,-63,125,-118.3328,1,1,0,2000-01,43,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,163,20000896,33.9363,142,108,-118.1278,6,2,0,2000-01,34,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/9/01,LAL vs. SAS,SAS
Driving Finger Roll Shot,Layup,174,20000896,34.0443,0,0,-118.2698,5,2,0,2000-01,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,200,20000896,34.0313,85,13,-118.1848,3,2,0,2000-01,34,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/01,LAL vs. SAS,SAS
Driving Layup Shot,Layup,202,20000896,34.0443,0,0,-118.2698,3,2,0,2000-01,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Driving Layup Shot,Layup,242,20000896,34.0443,0,0,-118.2698,10,3,0,2000-01,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,249,20000896,34.0463,94,-2,-118.1758,9,3,0,2000-01,47,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,252,20000896,33.9703,14,74,-118.2558,8,3,0,2000-01,59,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,270,20000896,33.9593,115,85,-118.1548,7,3,0,2000-01,26,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/01,LAL vs. SAS,SAS
Layup Shot,Layup,363,20000896,34.0443,0,0,-118.2698,0,3,0,2000-01,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Turnaround Jump Shot,Jump Shot,369,20000896,33.9593,49,85,-118.2208,11,4,0,2000-01,38,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/9/01,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,407,20000896,34.0373,-77,7,-118.3468,7,4,0,2000-01,29,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,444,20000896,33.9973,58,47,-118.2118,3,4,0,2000-01,40,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Driving Layup Shot,Layup,453,20000896,34.0443,0,0,-118.2698,2,4,0,2000-01,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,467,20000896,33.8583,-77,186,-118.3468,0,4,0,2000-01,55,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,469,20000896,33.8813,73,163,-118.1968,0,4,0,2000-01,46,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/9/01,LAL vs. SAS,SAS
Running Hook Shot,Hook Shot,487,20000896,34.0423,94,2,-118.1758,4,5,0,2000-01,48,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,489,20000896,33.9193,127,125,-118.1428,4,5,0,2000-01,15,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,494,20000896,33.8753,-6,169,-118.2758,3,5,0,2000-01,10,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/9/01,LAL vs. SAS,SAS
Alley Oop Dunk Shot,Dunk,507,20000896,34.0443,0,0,-118.2698,1,5,0,2000-01,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/01,LAL vs. SAS,SAS
Jump Shot,Jump Shot,41,20000936,33.9303,132,114,-118.1378,6,1,0,2000-01,57,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Dunk Shot,Dunk,56,20000936,34.0443,0,0,-118.2698,4,1,0,2000-01,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,100,20000936,34.0103,-172,34,-118.4418,0,1,0,2000-01,50,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,192,20000936,33.8313,153,213,-118.1168,3,2,0,2000-01,48,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,201,20000936,33.9813,-157,63,-118.4268,3,2,0,2000-01,8,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,204,20000936,33.9533,119,91,-118.1508,2,2,0,2000-01,36,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,214,20000936,33.8813,18,163,-118.2518,2,2,0,2000-01,14,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,253,20000936,33.8963,212,148,-118.0578,10,3,0,2000-01,19,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,262,20000936,33.9703,161,74,-118.1088,8,3,0,2000-01,42,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,297,20000936,33.9153,-94,129,-118.3638,5,3,0,2000-01,53,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,318,20000936,33.9473,-145,97,-118.4148,3,3,0,2000-01,47,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,342,20000936,33.9533,-151,91,-118.4208,1,3,0,2000-01,2,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Layup Shot,Layup,363,20000936,34.0443,0,0,-118.2698,0,3,0,2000-01,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/01,LAL @ DET,DET
Running Jump Shot,Jump Shot,379,20000936,33.9933,68,51,-118.2018,11,4,0,2000-01,2,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,383,20000936,33.9873,62,57,-118.2078,10,4,0,2000-01,13,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,396,20000936,33.9873,-166,57,-118.4358,9,4,0,2000-01,5,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,420,20000936,33.8923,77,152,-118.1928,6,4,0,2000-01,17,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,435,20000936,33.8813,104,163,-118.1658,4,4,0,2000-01,48,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Driving Layup Shot,Layup,451,20000936,34.0443,0,0,-118.2698,3,4,0,2000-01,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,457,20000936,33.9093,-124,135,-118.3938,3,4,0,2000-01,5,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Layup Shot,Layup,464,20000936,34.0443,0,0,-118.2698,2,4,0,2000-01,26,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,471,20000936,33.7703,-94,274,-118.3638,1,4,0,2000-01,24,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,487,20000936,33.9973,-136,47,-118.4058,0,4,0,2000-01,30,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,523,20000936,33.9973,-50,47,-118.3198,0,4,0,2000-01,2,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,541,20000936,33.9533,77,91,-118.1928,4,5,0,2000-01,0,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/15/01,LAL @ DET,DET
Jump Shot,Jump Shot,545,20000936,33.9973,161,47,-118.1088,3,5,0,2000-01,10,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/15/01,LAL @ DET,DET
Running Jump Shot,Jump Shot,569,20000936,33.9533,47,91,-118.2228,0,5,0,2000-01,32,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/15/01,LAL @ DET,DET
Slam Dunk Shot,Dunk,30,20000942,34.0443,11,0,-118.2588,8,1,0,2000-01,17,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Driving Dunk Shot,Dunk,63,20000942,34.0503,11,-6,-118.2588,4,1,0,2000-01,7,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,88,20000942,34.0443,-44,0,-118.3138,0,1,0,2000-01,51,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Turnaround Jump Shot,Jump Shot,92,20000942,33.9873,3,57,-118.2668,0,1,0,2000-01,31,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,217,20000942,33.9743,-229,70,-118.4988,1,2,0,2000-01,48,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,3/16/01,LAL @ WAS,WAS
Running Jump Shot,Jump Shot,226,20000942,34.0503,-101,-6,-118.3708,0,2,0,2000-01,52,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,232,20000942,33.8483,3,196,-118.2668,0,2,0,2000-01,32,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,236,20000942,33.8103,98,234,-118.1718,0,2,0,2000-01,0,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,250,20000942,34.0353,47,9,-118.2228,9,3,0,2000-01,43,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,276,20000942,34.0353,-145,9,-118.4148,7,3,0,2000-01,8,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,308,20000942,33.8483,89,196,-118.1808,3,3,0,2000-01,47,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/16/01,LAL @ WAS,WAS
Driving Dunk Shot,Dunk,333,20000942,34.0353,11,9,-118.2588,0,3,0,2000-01,48,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,335,20000942,34.0023,24,42,-118.2458,0,3,0,2000-01,23,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,345,20000942,33.8443,3,200,-118.2668,11,4,0,2000-01,44,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/16/01,LAL @ WAS,WAS
Turnaround Jump Shot,Jump Shot,347,20000942,33.9973,32,47,-118.2378,11,4,0,2000-01,27,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/16/01,LAL @ WAS,WAS
Jump Shot,Jump Shot,12,20000958,33.9893,-65,55,-118.3348,10,1,0,2000-01,3,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/18/01,LAL @ ORL,ORL
Alley Oop Dunk Shot,Dunk,115,20000958,34.0443,0,0,-118.2698,11,2,0,2000-01,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/18/01,LAL @ ORL,ORL
Turnaround Jump Shot,Jump Shot,155,20000958,34.0443,-145,0,-118.4148,7,2,0,2000-01,19,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,182,20000958,33.8503,-23,194,-118.2928,5,2,0,2000-01,14,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/18/01,LAL @ ORL,ORL
Turnaround Jump Shot,Jump Shot,201,20000958,33.9893,-166,55,-118.4358,2,2,0,2000-01,41,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/18/01,LAL @ ORL,ORL
Running Jump Shot,Jump Shot,258,20000958,33.9953,-1,49,-118.2708,10,3,0,2000-01,33,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,265,20000958,34.0823,-151,-38,-118.4208,9,3,0,2000-01,40,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,278,20000958,34.0823,140,-38,-118.1298,8,3,0,2000-01,25,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,318,20000958,33.9003,146,144,-118.1238,3,3,0,2000-01,53,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,378,20000958,33.7893,-8,255,-118.2778,9,4,0,2000-01,46,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,383,20000958,33.8903,62,154,-118.2078,9,4,0,2000-01,9,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,437,20000958,33.9073,182,137,-118.0878,3,4,0,2000-01,12,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/18/01,LAL @ ORL,ORL
Alley Oop Layup shot,Layup,444,20000958,34.0443,0,0,-118.2698,2,4,0,2000-01,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,447,20000958,34.0763,-115,-32,-118.3848,2,4,0,2000-01,7,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/18/01,LAL @ ORL,ORL
Turnaround Jump Shot,Jump Shot,456,20000958,34.0233,161,21,-118.1088,1,4,0,2000-01,27,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/18/01,LAL @ ORL,ORL
Jump Shot,Jump Shot,28,20000965,33.9833,132,61,-118.1378,7,1,0,2000-01,58,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/01,LAL @ ATL,ATL
Layup Shot,Layup,101,20000965,34.0443,0,0,-118.2698,11,2,0,2000-01,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,103,20000965,33.9893,68,55,-118.2018,10,2,0,2000-01,38,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/19/01,LAL @ ATL,ATL
Alley Oop Dunk Shot,Dunk,120,20000965,34.0443,0,0,-118.2698,8,2,0,2000-01,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Layup Shot,Layup,150,20000965,34.0443,0,0,-118.2698,5,2,0,2000-01,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,162,20000965,33.9933,-1,51,-118.2708,4,2,0,2000-01,31,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,174,20000965,34.0443,-101,0,-118.3708,3,2,0,2000-01,34,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,212,20000965,33.9783,-193,66,-118.4628,1,2,0,2000-01,2,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/19/01,LAL @ ATL,ATL
Running Dunk Shot,Dunk,248,20000965,34.0443,0,0,-118.2698,10,3,0,2000-01,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,256,20000965,34.0273,-71,17,-118.3408,10,3,0,2000-01,2,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Alley Oop Layup shot,Layup,287,20000965,34.0443,0,0,-118.2698,6,3,0,2000-01,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,300,20000965,34.0103,39,34,-118.2308,5,3,0,2000-01,16,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,311,20000965,34.0043,153,40,-118.1168,4,3,0,2000-01,3,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,316,20000965,33.9893,-16,55,-118.2858,3,3,0,2000-01,32,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,380,20000965,34.0373,-44,7,-118.3138,9,4,0,2000-01,18,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Layup Shot,Layup,472,20000965,34.0443,0,0,-118.2698,1,4,0,2000-01,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Layup Shot,Layup,473,20000965,34.0443,0,0,-118.2698,1,4,0,2000-01,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,481,20000965,34.0313,140,13,-118.1298,1,4,0,2000-01,14,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/01,LAL @ ATL,ATL
Layup Shot,Layup,487,20000965,34.0443,0,0,-118.2698,0,4,0,2000-01,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,498,20000965,33.8943,11,150,-118.2588,0,4,0,2000-01,0,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/19/01,LAL @ ATL,ATL
Jump Shot,Jump Shot,20,20000981,33.9343,132,110,-118.1378,10,1,0,2000-01,24,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,32,20000981,34.0503,68,-6,-118.2018,8,1,0,2000-01,58,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,46,20000981,33.8443,18,200,-118.2518,7,1,0,2000-01,19,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,80,20000981,33.9893,125,55,-118.1448,3,1,0,2000-01,6,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,137,20000981,33.8843,47,160,-118.2228,8,2,0,2000-01,27,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/21/01,LAL @ MIL,MIL
Layup Shot,Layup,145,20000981,34.0443,0,0,-118.2698,7,2,0,2000-01,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/01,LAL @ MIL,MIL
Alley Oop Layup shot,Layup,197,20000981,34.0443,0,0,-118.2698,2,2,0,2000-01,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,207,20000981,34.0503,98,-6,-118.1718,1,2,0,2000-01,13,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,249,20000981,33.9623,146,82,-118.1238,9,3,0,2000-01,9,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,257,20000981,33.9453,98,99,-118.1718,7,3,0,2000-01,55,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,285,20000981,33.9953,-109,49,-118.3788,4,3,0,2000-01,48,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,289,20000981,34.0023,140,42,-118.1298,4,3,0,2000-01,32,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/21/01,LAL @ MIL,MIL
Running Jump Shot,Jump Shot,361,20000981,34.0443,0,0,-118.2698,9,4,0,2000-01,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/01,LAL @ MIL,MIL
Jump Shot,Jump Shot,18,20001059,33.8813,22,163,-118.2478,9,1,0,2000-01,26,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/1/01,LAL vs. NYK,NYK
Jump Shot,Jump Shot,48,20001059,33.7913,94,253,-118.1758,4,1,0,2000-01,59,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/1/01,LAL vs. NYK,NYK
Jump Shot,Jump Shot,71,20001059,33.7743,-77,270,-118.3468,2,1,0,2000-01,25,28,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/1/01,LAL vs. NYK,NYK
Jump Shot,Jump Shot,91,20001059,33.9323,134,112,-118.1358,1,1,0,2000-01,33,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/1/01,LAL vs. NYK,NYK
Jump Shot,Jump Shot,9,20001121,34.0043,-111,40,-118.3808,10,1,0,2000-01,48,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,11,20001121,34.0523,-126,-8,-118.3958,10,1,0,2000-01,47,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,46,20001121,33.9363,163,108,-118.1068,6,1,0,2000-01,32,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,50,20001121,33.8923,85,152,-118.1848,5,1,0,2000-01,59,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/10/01,LAL vs. PHX,PHX
Running Jump Shot,Jump Shot,61,20001121,33.9433,142,101,-118.1278,5,1,0,2000-01,9,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/10/01,LAL vs. PHX,PHX
Turnaround Jump Shot,Jump Shot,209,20001121,34.0523,-141,-8,-118.4108,3,2,0,2000-01,30,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,218,20001121,34.0043,-126,40,-118.3958,1,2,0,2000-01,51,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,284,20001121,34.0213,-147,23,-118.4168,7,3,0,2000-01,34,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,305,20001121,34.0463,169,-2,-118.1008,5,3,0,2000-01,26,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,329,20001121,33.8523,-48,192,-118.3178,2,3,0,2000-01,6,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,352,20001121,33.9263,134,118,-118.1358,0,3,0,2000-01,14,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/10/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,366,20001121,33.9593,-126,85,-118.3958,11,4,0,2000-01,1,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/10/01,LAL vs. PHX,PHX
Running Jump Shot,Jump Shot,14,20001136,33.9133,127,131,-118.1428,10,1,0,2000-01,25,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,30,20001136,33.9873,7,57,-118.2628,9,1,0,2000-01,8,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,37,20001136,33.8883,100,156,-118.1698,8,1,0,2000-01,30,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/12/01,LAL vs. MIN,MIN
Slam Dunk Shot,Dunk,46,20001136,34.0443,0,0,-118.2698,7,1,0,2000-01,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,64,20001136,33.9263,106,118,-118.1638,5,1,0,2000-01,5,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/12/01,LAL vs. MIN,MIN
Driving Layup Shot,Layup,67,20001136,34.0443,0,0,-118.2698,4,1,0,2000-01,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,69,20001136,33.9263,134,118,-118.1358,4,1,0,2000-01,8,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,93,20001136,33.8923,-111,152,-118.3808,1,1,0,2000-01,24,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/12/01,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,118,20001136,33.9193,106,125,-118.1638,10,2,0,2000-01,33,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,242,20001136,33.9473,-27,97,-118.2968,10,3,0,2000-01,37,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,256,20001136,33.8883,1,156,-118.2688,9,3,0,2000-01,23,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,4/12/01,LAL vs. MIN,MIN
Driving Layup Shot,Layup,263,20001136,34.0443,0,0,-118.2698,8,3,0,2000-01,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,266,20001136,33.9363,100,108,-118.1698,7,3,0,2000-01,50,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,287,20001136,34.0523,127,-8,-118.1428,5,3,0,2000-01,13,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,292,20001136,34.0313,-160,13,-118.4298,4,3,0,2000-01,39,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/12/01,LAL vs. MIN,MIN
Driving Layup Shot,Layup,310,20001136,34.0443,0,0,-118.2698,2,3,0,2000-01,58,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,322,20001136,33.8523,-18,192,-118.2878,2,3,0,2000-01,36,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/12/01,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,324,20001136,34.0593,-126,-15,-118.3958,2,3,0,2000-01,3,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/12/01,LAL vs. MIN,MIN
Driving Layup Shot,Layup,327,20001136,34.0443,0,0,-118.2698,1,3,0,2000-01,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/12/01,LAL vs. MIN,MIN
Turnaround Jump Shot,Jump Shot,335,20001136,33.9093,35,135,-118.2348,1,3,0,2000-01,4,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,341,20001136,34.0313,155,13,-118.1148,0,3,0,2000-01,30,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/12/01,LAL vs. MIN,MIN
Layup Shot,Layup,370,20001136,34.0443,0,0,-118.2698,9,4,0,2000-01,26,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/12/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,65,20001162,33.8813,134,163,-118.1358,5,1,0,2000-01,22,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,131,20001162,34.0733,142,-29,-118.1278,10,2,0,2000-01,9,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,136,20001162,33.7703,14,274,-118.2558,9,2,0,2000-01,38,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/15/01,LAL vs. POR,POR
Driving Layup Shot,Layup,146,20001162,34.0443,0,0,-118.2698,8,2,0,2000-01,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/01,LAL vs. POR,POR
Layup Shot,Layup,223,20001162,34.0443,0,0,-118.2698,1,2,0,2000-01,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/01,LAL vs. POR,POR
Driving Layup Shot,Layup,231,20001162,34.0443,0,0,-118.2698,0,2,0,2000-01,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,248,20001162,33.8373,73,207,-118.1968,10,3,0,2000-01,33,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,279,20001162,33.9093,-69,135,-118.3388,7,3,0,2000-01,11,15,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/15/01,LAL vs. POR,POR
Layup Shot,Layup,281,20001162,34.0443,0,0,-118.2698,6,3,0,2000-01,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/01,LAL vs. POR,POR
Driving Layup Shot,Layup,286,20001162,34.0443,0,0,-118.2698,5,3,0,2000-01,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/01,LAL vs. POR,POR
Driving Layup Shot,Layup,303,20001162,34.0443,0,0,-118.2698,4,3,0,2000-01,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,312,20001162,33.8883,94,156,-118.1758,3,3,0,2000-01,17,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,361,20001162,33.9263,1,118,-118.2688,0,3,0,2000-01,0,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,366,20001162,34.0373,241,7,-118.0288,11,4,0,2000-01,45,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,4/15/01,LAL vs. POR,POR
Layup Shot,Layup,429,20001162,34.0443,0,0,-118.2698,4,4,0,2000-01,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,433,20001162,33.9323,-84,112,-118.3538,3,4,0,2000-01,57,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/15/01,LAL vs. POR,POR
Jump Shot,Jump Shot,436,20001162,34.0523,-105,-8,-118.3748,3,4,0,2000-01,10,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/15/01,LAL vs. POR,POR
Running Jump Shot,Jump Shot,49,20001177,33.9193,155,125,-118.1148,7,1,0,2000-01,26,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/17/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,60,20001177,33.7913,73,253,-118.1968,5,1,0,2000-01,51,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/17/01,LAL vs. DEN,DEN
Layup Shot,Layup,176,20001177,34.0443,0,0,-118.2698,7,2,0,2000-01,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,192,20001177,34.0043,-48,40,-118.3178,5,2,0,2000-01,51,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/17/01,LAL vs. DEN,DEN
Layup Shot,Layup,205,20001177,34.0443,0,0,-118.2698,5,2,0,2000-01,15,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,272,20001177,34.0463,-141,-2,-118.4108,11,3,0,2000-01,3,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/17/01,LAL vs. DEN,DEN
Driving Layup Shot,Layup,320,20001177,34.0443,0,0,-118.2698,6,3,0,2000-01,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/01,LAL vs. DEN,DEN
Dunk Shot,Dunk,326,20001177,34.0443,0,0,-118.2698,6,3,0,2000-01,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,340,20001177,34.0463,-160,-2,-118.4298,4,3,0,2000-01,18,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/17/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,351,20001177,33.8523,169,192,-118.1008,3,3,0,2000-01,19,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/17/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,9,20100012,33.8753,-84,169,-118.3538,10,1,0,2001-02,34,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,10/30/01,LAL vs. POR,POR
Running Jump Shot,Jump Shot,13,20100012,33.9153,85,129,-118.1848,10,1,0,2001-02,6,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,10/30/01,LAL vs. POR,POR
Dunk Shot,Dunk,17,20100012,34.0443,0,0,-118.2698,9,1,0,2001-02,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,28,20100012,33.9093,37,135,-118.2328,7,1,0,2001-02,54,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,40,20100012,34.0293,73,15,-118.1968,6,1,0,2001-02,21,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Layup Shot,Layup,47,20100012,34.0443,0,0,-118.2698,5,1,0,2001-02,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,98,20100012,33.8753,-113,169,-118.3828,0,1,0,2001-02,37,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,10/30/01,LAL vs. POR,POR
Driving Layup Shot,Layup,128,20100012,34.0443,0,0,-118.2698,10,2,0,2001-02,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,195,20100012,33.9363,100,108,-118.1698,4,2,0,2001-02,18,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,10/30/01,LAL vs. POR,POR
Driving Layup Shot,Layup,227,20100012,34.0443,0,0,-118.2698,0,2,0,2001-02,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Driving Layup Shot,Layup,232,20100012,34.0443,0,0,-118.2698,0,2,0,2001-02,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,242,20100012,34.0233,159,21,-118.1108,10,3,0,2001-02,58,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,10/30/01,LAL vs. POR,POR
Reverse Dunk Shot,Dunk,265,20100012,34.0443,0,0,-118.2698,8,3,0,2001-02,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Driving Layup Shot,Layup,276,20100012,34.0443,0,0,-118.2698,7,3,0,2001-02,26,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,302,20100012,33.9533,30,91,-118.2398,5,3,0,2001-02,21,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,10/30/01,LAL vs. POR,POR
Reverse Layup Shot,Layup,325,20100012,34.0443,0,0,-118.2698,3,3,0,2001-02,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Alley Oop Dunk Shot,Dunk,360,20100012,34.0443,0,0,-118.2698,0,3,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,363,20100012,33.8293,129,215,-118.1408,0,3,0,2001-02,3,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,431,20100012,33.9473,195,97,-118.0748,5,4,0,2001-02,33,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,10/30/01,LAL vs. POR,POR
Slam Dunk Shot,Dunk,463,20100012,34.0443,0,0,-118.2698,3,4,0,2001-02,7,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/01,LAL vs. POR,POR
Jump Shot,Jump Shot,29,20100023,33.9153,123,129,-118.1468,8,1,0,2001-02,34,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,31,20100023,33.8603,-113,184,-118.3828,7,1,0,2001-02,55,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,61,20100023,33.8443,-18,200,-118.2878,5,1,0,2001-02,18,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,124,20100023,33.8203,-98,224,-118.3678,11,2,0,2001-02,38,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/1/01,LAL @ UTA,UTA
Layup Shot,Layup,136,20100023,34.0443,0,0,-118.2698,10,2,0,2001-02,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,197,20100023,33.8733,7,171,-118.2628,4,2,0,2001-02,59,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,270,20100023,34.0523,180,-8,-118.0898,9,3,0,2001-02,42,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,292,20100023,33.8963,-4,148,-118.2738,6,3,0,2001-02,50,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,294,20100023,33.9033,153,141,-118.1168,6,3,0,2001-02,12,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,332,20100023,34.0483,-176,-4,-118.4458,2,3,0,2001-02,31,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,338,20100023,34.0653,180,-21,-118.0898,1,3,0,2001-02,38,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Alley Oop Dunk Shot,Dunk,356,20100023,34.0443,0,0,-118.2698,0,3,0,2001-02,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,358,20100023,34.0653,195,-21,-118.0748,0,3,0,2001-02,24,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,373,20100023,33.8033,22,241,-118.2478,0,3,0,2001-02,2,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,398,20100023,33.8143,-134,230,-118.4038,10,4,0,2001-02,19,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,401,20100023,34.0593,-185,-15,-118.4548,9,4,0,2001-02,56,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/1/01,LAL @ UTA,UTA
Running Jump Shot,Jump Shot,464,20100023,34.0143,-33,30,-118.3028,4,4,0,2001-02,36,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/1/01,LAL @ UTA,UTA
Jump Shot,Jump Shot,505,20100023,34.0653,-141,-21,-118.4108,1,4,0,2001-02,34,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/1/01,LAL @ UTA,UTA
Layup Shot,Layup,17,20100033,34.0443,0,0,-118.2698,10,1,0,2001-02,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/01,LAL vs. PHX,PHX
Driving Dunk Shot,Dunk,44,20100033,34.0443,0,0,-118.2698,7,1,0,2001-02,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/01,LAL vs. PHX,PHX
Driving Layup Shot,Layup,137,20100033,34.0443,0,0,-118.2698,10,2,0,2001-02,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/01,LAL vs. PHX,PHX
Running Jump Shot,Jump Shot,256,20100033,33.9933,1,51,-118.2688,10,3,0,2001-02,28,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/2/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,259,20100033,33.9263,138,118,-118.1318,10,3,0,2001-02,7,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/2/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,319,20100033,33.8863,94,158,-118.1758,3,3,0,2001-02,45,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/2/01,LAL vs. PHX,PHX
Driving Layup Shot,Layup,395,20100033,34.0443,0,0,-118.2698,8,4,0,2001-02,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/01,LAL vs. PHX,PHX
Running Jump Shot,Jump Shot,414,20100033,33.9723,73,72,-118.1968,7,4,0,2001-02,9,10,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/2/01,LAL vs. PHX,PHX
Jump Shot,Jump Shot,420,20100033,34.0293,-98,15,-118.3678,6,4,0,2001-02,40,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/2/01,LAL vs. PHX,PHX
Tip Shot,Tip Shot,423,20100033,34.0443,0,0,-118.2698,6,4,0,2001-02,33,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/01,LAL vs. PHX,PHX
Driving Layup Shot,Layup,431,20100033,34.0443,0,0,-118.2698,6,4,0,2001-02,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/01,LAL vs. PHX,PHX
Driving Layup Shot,Layup,30,20100051,34.0443,0,0,-118.2698,7,1,0,2001-02,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,39,20100051,33.9363,115,108,-118.1548,6,1,0,2001-02,46,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/4/01,LAL vs. UTA,UTA
Turnaround Jump Shot,Jump Shot,95,20100051,33.9153,79,129,-118.1908,1,1,0,2001-02,58,15,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,140,20100051,33.9323,101,112,-118.1688,11,2,0,2001-02,2,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/4/01,LAL vs. UTA,UTA
Turnaround Jump Shot,Jump Shot,147,20100051,34.0333,144,11,-118.1258,8,2,0,2001-02,26,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,178,20100051,33.9533,-105,91,-118.3748,6,2,0,2001-02,11,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,189,20100051,33.8523,-113,192,-118.3828,4,2,0,2001-02,55,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Alley Oop Dunk Shot,Dunk,195,20100051,34.0443,0,0,-118.2698,3,2,0,2001-02,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,280,20100051,33.8463,1,198,-118.2688,10,3,0,2001-02,24,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Driving Layup Shot,Layup,292,20100051,34.0443,0,0,-118.2698,8,3,0,2001-02,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/01,LAL vs. UTA,UTA
Driving Layup Shot,Layup,313,20100051,34.0443,0,0,-118.2698,6,3,0,2001-02,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/01,LAL vs. UTA,UTA
Fadeaway Jump Shot,Jump Shot,357,20100051,33.8863,64,158,-118.2058,3,3,0,2001-02,1,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,413,20100051,33.9113,113,133,-118.1568,10,4,0,2001-02,38,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,422,20100051,34.0183,172,26,-118.0978,9,4,0,2001-02,11,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,443,20100051,33.8883,-130,156,-118.3998,7,4,0,2001-02,25,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Turnaround Jump Shot,Jump Shot,452,20100051,33.9113,-115,133,-118.3848,6,4,0,2001-02,58,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,454,20100051,33.8943,150,150,-118.1198,6,4,0,2001-02,20,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,461,20100051,34.0253,193,19,-118.0768,5,4,0,2001-02,8,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/4/01,LAL vs. UTA,UTA
Layup Shot,Layup,513,20100051,34.0253,-20,19,-118.2898,1,4,0,2001-02,35,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/01,LAL vs. UTA,UTA
Jump Shot,Jump Shot,6,20100083,33.8463,3,198,-118.2668,11,1,0,2001-02,26,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/9/01,LAL vs. MEM,MEM
Layup Shot,Layup,68,20100083,34.0443,0,0,-118.2698,5,1,0,2001-02,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,73,20100083,33.8753,-115,169,-118.3848,5,1,0,2001-02,10,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,103,20100083,33.9763,-151,68,-118.4208,3,1,0,2001-02,15,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,168,20100083,33.8863,125,158,-118.1448,9,2,0,2001-02,32,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,215,20100083,33.9593,-16,85,-118.2858,5,2,0,2001-02,44,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/9/01,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,268,20100083,34.0443,0,0,-118.2698,0,2,0,2001-02,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,275,20100083,33.8523,176,192,-118.0938,0,2,0,2001-02,25,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,297,20100083,34.0403,-157,4,-118.4268,9,3,0,2001-02,53,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/9/01,LAL vs. MEM,MEM
Driving Layup Shot,Layup,310,20100083,34.0443,0,0,-118.2698,8,3,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/9/01,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,343,20100083,34.0443,0,0,-118.2698,4,3,0,2001-02,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,384,20100083,33.8793,98,165,-118.1718,1,3,0,2001-02,18,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/9/01,LAL vs. MEM,MEM
Jump Shot,Jump Shot,400,20100083,33.4563,-145,588,-118.4148,0,3,0,2001-02,0,60,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,11/9/01,LAL vs. MEM,MEM
Driving Layup Shot,Layup,29,20100097,34.0043,1,40,-118.2688,9,1,0,2001-02,0,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/11/01,LAL vs. ORL,ORL
Jump Shot,Jump Shot,153,20100097,33.8483,70,196,-118.1998,9,2,0,2001-02,46,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/11/01,LAL vs. ORL,ORL
Jump Shot,Jump Shot,171,20100097,34.0183,56,26,-118.2138,8,2,0,2001-02,7,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/11/01,LAL vs. ORL,ORL
Jump Shot,Jump Shot,253,20100097,33.9623,-143,82,-118.4128,11,3,0,2001-02,36,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/11/01,LAL vs. ORL,ORL
Turnaround Jump Shot,Jump Shot,295,20100097,33.8653,-14,179,-118.2838,7,3,0,2001-02,18,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/11/01,LAL vs. ORL,ORL
Jump Shot,Jump Shot,398,20100097,33.9173,-136,127,-118.4058,0,3,0,2001-02,32,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/11/01,LAL vs. ORL,ORL
Alley Oop Dunk Shot,Dunk,434,20100097,34.0443,28,0,-118.2418,10,4,0,2001-02,24,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/11/01,LAL vs. ORL,ORL
Jump Shot,Jump Shot,456,20100097,33.9113,-115,133,-118.3848,8,4,0,2001-02,36,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/11/01,LAL vs. ORL,ORL
Jump Shot,Jump Shot,506,20100097,33.8713,77,173,-118.1928,4,4,0,2001-02,56,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/11/01,LAL vs. ORL,ORL
Layup Shot,Layup,513,20100097,34.0443,0,0,-118.2698,4,4,0,2001-02,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/11/01,LAL vs. ORL,ORL
Jump Shot,Jump Shot,529,20100097,34.0063,5,38,-118.2648,3,4,0,2001-02,38,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/11/01,LAL vs. ORL,ORL
Fadeaway Jump Shot,Jump Shot,36,20100119,33.9893,167,55,-118.1028,6,1,0,2001-02,21,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Follow Up Dunk Shot,Dunk,53,20100119,34.0443,0,0,-118.2698,3,1,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,63,20100119,33.9243,108,120,-118.1618,2,1,0,2001-02,23,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,78,20100119,34.0023,-71,42,-118.3408,0,1,0,2001-02,28,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,126,20100119,34.0023,11,42,-118.2588,7,2,0,2001-02,0,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,157,20100119,33.9453,144,99,-118.1258,2,2,0,2001-02,55,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,189,20100119,33.9283,75,116,-118.1948,0,2,0,2001-02,3,13,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/15/01,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,197,20100119,33.9073,39,137,-118.2308,11,3,0,2001-02,28,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,212,20100119,33.9173,167,127,-118.1028,8,3,0,2001-02,56,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,238,20100119,33.9383,-170,106,-118.4398,5,3,0,2001-02,34,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,270,20100119,34.0503,144,-6,-118.1258,1,3,0,2001-02,48,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,279,20100119,34.0353,186,9,-118.0838,0,3,0,2001-02,52,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,294,20100119,34.0443,180,0,-118.0898,11,4,0,2001-02,21,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,307,20100119,33.8883,-107,156,-118.3768,9,4,0,2001-02,42,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,313,20100119,33.8563,-8,188,-118.2778,9,4,0,2001-02,5,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,317,20100119,33.9003,201,144,-118.0688,8,4,0,2001-02,44,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,365,20100119,34.0183,81,26,-118.1888,4,4,0,2001-02,6,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/15/01,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,368,20100119,34.0443,-170,0,-118.4398,3,4,0,2001-02,25,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/15/01,LAL @ HOU,HOU
Driving Layup Shot,Layup,434,20100119,34.0443,0,0,-118.2698,4,5,0,2001-02,9,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/01,LAL @ HOU,HOU
Layup Shot,Layup,459,20100119,34.0443,0,0,-118.2698,2,5,0,2001-02,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,474,20100119,34.0253,68,19,-118.2018,0,5,0,2001-02,24,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/15/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,64,20100127,33.9593,-50,85,-118.3198,3,1,0,2001-02,23,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,94,20100127,34.0253,-178,19,-118.4478,0,1,0,2001-02,33,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,106,20100127,33.9873,-115,57,-118.3848,11,2,0,2001-02,20,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/16/01,LAL @ PHX,PHX
Fadeaway Jump Shot,Jump Shot,123,20100127,34.0373,119,7,-118.1508,9,2,0,2001-02,48,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,249,20100127,33.8963,-44,148,-118.3138,8,3,0,2001-02,39,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,251,20100127,33.8813,-65,163,-118.3348,8,3,0,2001-02,10,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,283,20100127,33.8413,-157,203,-118.4268,5,3,0,2001-02,0,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,314,20100127,33.9433,-151,101,-118.4208,1,3,0,2001-02,42,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,320,20100127,33.8463,-145,198,-118.4148,0,3,0,2001-02,44,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/16/01,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,425,20100127,33.9533,-37,91,-118.3068,3,4,0,2001-02,47,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/16/01,LAL @ PHX,PHX
Jump Shot,Jump Shot,451,20100127,33.8863,-193,158,-118.4628,1,4,0,2001-02,36,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/16/01,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,8,20100143,33.9433,100,101,-118.1698,10,1,0,2001-02,49,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,24,20100143,33.8583,-71,186,-118.3408,8,1,0,2001-02,54,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,92,20100143,33.9473,-155,97,-118.4248,0,1,0,2001-02,48,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,143,20100143,33.9763,64,68,-118.2058,9,2,0,2001-02,41,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/18/01,LAL vs. SAC,SAC
Slam Dunk Shot,Dunk,145,20100143,34.0443,0,0,-118.2698,9,2,0,2001-02,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,153,20100143,33.9033,94,141,-118.1758,8,2,0,2001-02,17,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,316,20100143,33.9723,-92,72,-118.3618,6,3,0,2001-02,57,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/18/01,LAL vs. SAC,SAC
Reverse Dunk Shot,Dunk,323,20100143,34.0443,0,0,-118.2698,6,3,0,2001-02,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/01,LAL vs. SAC,SAC
Layup Shot,Layup,339,20100143,34.0443,0,0,-118.2698,4,3,0,2001-02,44,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,353,20100143,33.8923,-134,152,-118.4038,3,3,0,2001-02,9,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,381,20100143,34.0403,-134,4,-118.4038,11,4,0,2001-02,44,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/18/01,LAL vs. SAC,SAC
Driving Layup Shot,Layup,405,20100143,34.0443,0,0,-118.2698,8,4,0,2001-02,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,463,20100143,33.9263,-134,118,-118.4038,4,4,0,2001-02,41,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/18/01,LAL vs. SAC,SAC
Layup Shot,Layup,474,20100143,34.0443,0,0,-118.2698,3,4,0,2001-02,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/01,LAL vs. SAC,SAC
Running Jump Shot,Jump Shot,493,20100143,33.9753,-23,69,-118.2928,3,4,0,2001-02,0,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,498,20100143,33.9193,108,125,-118.1618,2,4,0,2001-02,23,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/18/01,LAL vs. SAC,SAC
Jump Shot,Jump Shot,34,20100152,33.9343,102,110,-118.1678,8,1,0,2001-02,16,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,59,20100152,33.9623,-115,82,-118.3848,5,1,0,2001-02,33,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,117,20100152,33.8943,218,150,-118.0518,0,1,0,2001-02,0,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,127,20100152,33.9113,-31,133,-118.3008,10,2,0,2001-02,57,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,130,20100152,33.8943,-79,150,-118.3488,10,2,0,2001-02,33,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,145,20100152,33.8733,-88,171,-118.3578,9,2,0,2001-02,0,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,212,20100152,33.9113,-37,133,-118.3068,3,2,0,2001-02,31,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,233,20100152,33.8443,-151,200,-118.4208,1,2,0,2001-02,0,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/20/01,LAL @ LAC,LAC
Reverse Layup Shot,Layup,321,20100152,34.0443,0,0,-118.2698,5,3,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,355,20100152,33.7993,-37,245,-118.3068,0,3,0,2001-02,4,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,377,20100152,33.9743,146,70,-118.1238,10,4,0,2001-02,6,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,467,20100152,34.0313,-37,13,-118.3068,2,4,0,2001-02,33,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,538,20100152,34.0443,0,0,-118.2698,0,4,0,2001-02,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/20/01,LAL @ LAC,LAC
Jump Shot,Jump Shot,12,20100161,33.9593,-153,85,-118.4228,10,1,0,2001-02,14,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,27,20100161,33.9953,-153,49,-118.4228,7,1,0,2001-02,47,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,43,20100161,33.9033,220,141,-118.0498,5,1,0,2001-02,50,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,47,20100161,34.0403,-90,4,-118.3598,5,1,0,2001-02,33,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,52,20100161,33.9433,-162,101,-118.4318,4,1,0,2001-02,44,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/21/01,LAL @ DEN,DEN
Tip Shot,Tip Shot,62,20100161,34.0443,0,0,-118.2698,3,1,0,2001-02,35,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/01,LAL @ DEN,DEN
Tip Shot,Tip Shot,64,20100161,34.0443,0,0,-118.2698,3,1,0,2001-02,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,88,20100161,34.0233,-168,21,-118.4378,0,1,0,2001-02,52,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,184,20100161,33.9493,43,95,-118.2268,3,2,0,2001-02,40,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/21/01,LAL @ DEN,DEN
Alley Oop Layup shot,Layup,205,20100161,34.0443,0,0,-118.2698,1,2,0,2001-02,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/01,LAL @ DEN,DEN
Driving Dunk Shot,Dunk,241,20100161,34.0443,0,0,-118.2698,9,3,0,2001-02,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,369,20100161,34.0503,191,-6,-118.0788,7,4,0,2001-02,51,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/21/01,LAL @ DEN,DEN
Jump Shot,Jump Shot,379,20100161,33.8963,-195,148,-118.4648,6,4,0,2001-02,28,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/21/01,LAL @ DEN,DEN
Turnaround Jump Shot,Jump Shot,400,20100161,34.0063,-117,38,-118.3868,4,4,0,2001-02,5,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/21/01,LAL @ DEN,DEN
Dunk Shot,Dunk,3,20100178,34.0443,0,0,-118.2698,11,1,0,2001-02,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,25,20100178,34.0443,0,0,-118.2698,9,1,0,2001-02,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,55,20100178,34.0083,-92,36,-118.3618,7,1,0,2001-02,6,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,57,20100178,33.9513,-56,93,-118.3258,7,1,0,2001-02,1,10,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,72,20100178,33.9853,89,59,-118.1808,5,1,0,2001-02,21,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,119,20100178,33.8733,-8,171,-118.2778,0,1,0,2001-02,40,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,197,20100178,33.7933,62,251,-118.2078,4,2,0,2001-02,54,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/23/01,LAL vs. GSW,GSW
Driving Layup Shot,Layup,218,20100178,34.0443,0,0,-118.2698,2,2,0,2001-02,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/01,LAL vs. GSW,GSW
Driving Layup Shot,Layup,234,20100178,34.0443,0,0,-118.2698,0,2,0,2001-02,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,344,20100178,33.9523,-102,92,-118.3718,9,3,0,2001-02,47,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,399,20100178,33.9243,98,120,-118.1718,9,4,0,2001-02,0,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,401,20100178,33.9113,110,133,-118.1598,8,4,0,2001-02,23,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/23/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,43,20100192,34.0403,-136,4,-118.4058,7,1,0,2001-02,10,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/25/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,47,20100192,33.9433,83,101,-118.1868,6,1,0,2001-02,4,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/25/01,LAL vs. DEN,DEN
Slam Dunk Shot,Dunk,60,20100192,34.0443,0,0,-118.2698,4,1,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/25/01,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,69,20100192,33.9153,3,129,-118.2668,2,1,0,2001-02,35,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/25/01,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,85,20100192,34.0043,153,40,-118.1168,1,1,0,2001-02,35,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/25/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,94,20100192,33.8863,77,158,-118.1928,0,1,0,2001-02,31,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/25/01,LAL vs. DEN,DEN
Running Jump Shot,Jump Shot,106,20100192,34.0233,-101,21,-118.3708,11,2,0,2001-02,41,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/25/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,165,20100192,33.9033,110,141,-118.1598,5,2,0,2001-02,38,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/25/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,214,20100192,33.8293,161,215,-118.1088,0,2,0,2001-02,5,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/25/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,228,20100192,33.8583,-8,186,-118.2778,10,3,0,2001-02,59,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/25/01,LAL vs. DEN,DEN
Jump Shot,Jump Shot,261,20100192,33.8753,-65,169,-118.3348,6,3,0,2001-02,38,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/25/01,LAL vs. DEN,DEN
Layup Shot,Layup,319,20100192,34.0043,3,40,-118.2668,0,3,0,2001-02,32,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/25/01,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,416,20100192,33.9363,104,108,-118.1658,1,4,0,2001-02,33,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/25/01,LAL vs. DEN,DEN
Driving Layup Shot,Layup,442,20100192,34.0443,0,0,-118.2698,0,4,0,2001-02,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/25/01,LAL vs. DEN,DEN
Running Jump Shot,Jump Shot,19,20100204,34.0443,0,0,-118.2698,9,1,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Turnaround Jump Shot,Jump Shot,78,20100204,34.0353,157,9,-118.1128,2,1,0,2001-02,16,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/01,LAL vs. MIL,MIL
Running Jump Shot,Jump Shot,84,20100204,34.0023,11,42,-118.2588,1,1,0,2001-02,18,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Driving Layup Shot,Layup,202,20100204,34.0443,0,0,-118.2698,1,2,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Reverse Layup Shot,Layup,216,20100204,34.0443,0,0,-118.2698,0,2,0,2001-02,50,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,218,20100204,34.0443,0,0,-118.2698,0,2,0,2001-02,44,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,223,20100204,33.7823,-1,262,-118.2708,0,2,0,2001-02,29,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/27/01,LAL vs. MIL,MIL
Slam Dunk Shot,Dunk,249,20100204,34.0443,0,0,-118.2698,9,3,0,2001-02,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Fadeaway Jump Shot,Jump Shot,254,20100204,34.0503,148,-6,-118.1218,9,3,0,2001-02,15,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,306,20100204,33.8393,77,205,-118.1928,3,3,0,2001-02,28,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,310,20100204,33.8963,91,148,-118.1788,3,3,0,2001-02,14,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/27/01,LAL vs. MIL,MIL
Slam Dunk Shot,Dunk,314,20100204,34.0443,0,0,-118.2698,2,3,0,2001-02,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,337,20100204,33.7873,-1,257,-118.2708,0,3,0,2001-02,40,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,345,20100204,33.7873,-10,257,-118.2798,0,3,0,2001-02,7,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/27/01,LAL vs. MIL,MIL
Turnaround Jump Shot,Jump Shot,354,20100204,33.8883,96,156,-118.1738,11,4,0,2001-02,48,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,373,20100204,33.8253,132,219,-118.1378,10,4,0,2001-02,12,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/27/01,LAL vs. MIL,MIL
Tip Shot,Tip Shot,378,20100204,34.0443,0,0,-118.2698,10,4,0,2001-02,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,433,20100204,33.9513,-141,93,-118.4108,4,4,0,2001-02,29,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/27/01,LAL vs. MIL,MIL
Jump Shot,Jump Shot,10,20100225,34.0503,169,-6,-118.1008,11,1,0,2001-02,4,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,139,20100225,34.0143,-27,30,-118.2968,11,2,0,2001-02,13,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,153,20100225,33.8503,16,194,-118.2538,10,2,0,2001-02,13,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/30/01,LAL @ SEA,SEA
Slam Dunk Shot,Dunk,175,20100225,34.0443,0,0,-118.2698,7,2,0,2001-02,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,179,20100225,33.7993,-27,245,-118.2968,6,2,0,2001-02,31,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/30/01,LAL @ SEA,SEA
Turnaround Jump Shot,Jump Shot,185,20100225,33.9383,28,106,-118.2418,5,2,0,2001-02,49,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,201,20100225,33.8163,-183,228,-118.4528,4,2,0,2001-02,30,29,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,210,20100225,33.9283,-138,116,-118.4078,3,2,0,2001-02,42,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,212,20100225,33.9683,-183,76,-118.4528,3,2,0,2001-02,27,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/30/01,LAL @ SEA,SEA
Layup Shot,Layup,214,20100225,34.0403,-18,4,-118.2878,2,2,0,2001-02,46,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,265,20100225,33.8223,-105,222,-118.3748,10,3,0,2001-02,57,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,294,20100225,33.9623,235,82,-118.0348,6,3,0,2001-02,51,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,297,20100225,34.0143,136,30,-118.1338,6,3,0,2001-02,22,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/30/01,LAL @ SEA,SEA
Turnaround Jump Shot,Jump Shot,312,20100225,34.0183,37,26,-118.2328,4,3,0,2001-02,1,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/30/01,LAL @ SEA,SEA
Driving Dunk Shot,Dunk,314,20100225,34.0443,0,0,-118.2698,3,3,0,2001-02,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,325,20100225,33.9003,-84,144,-118.3538,2,3,0,2001-02,13,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/30/01,LAL @ SEA,SEA
Slam Dunk Shot,Dunk,412,20100225,34.0443,0,0,-118.2698,4,4,0,2001-02,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,419,20100225,33.8943,129,150,-118.1408,4,4,0,2001-02,11,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/30/01,LAL @ SEA,SEA
Jump Shot,Jump Shot,22,20100235,33.9343,-113,110,-118.3828,10,1,0,2001-02,2,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/1/01,LAL vs. MIN,MIN
Turnaround Jump Shot,Jump Shot,65,20100235,34.0183,-134,26,-118.4038,5,1,0,2001-02,50,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/1/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,106,20100235,33.8503,1,194,-118.2688,2,1,0,2001-02,0,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/1/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,110,20100235,33.9113,-105,133,-118.3748,1,1,0,2001-02,16,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/1/01,LAL vs. MIN,MIN
Driving Layup Shot,Layup,113,20100235,34.0443,0,0,-118.2698,0,1,0,2001-02,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/01,LAL vs. MIN,MIN
Driving Layup Shot,Layup,232,20100235,34.0443,0,0,-118.2698,0,2,0,2001-02,55,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,235,20100235,33.8603,180,184,-118.0898,0,2,0,2001-02,41,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/1/01,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,282,20100235,33.9873,1,57,-118.2688,7,3,0,2001-02,45,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/1/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,294,20100235,33.8883,-84,156,-118.3538,6,3,0,2001-02,47,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/1/01,LAL vs. MIN,MIN
Layup Shot,Layup,299,20100235,34.0143,16,30,-118.2538,6,3,0,2001-02,14,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/01,LAL vs. MIN,MIN
Fadeaway Jump Shot,Jump Shot,346,20100235,33.9403,-18,104,-118.2878,2,3,0,2001-02,37,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/1/01,LAL vs. MIN,MIN
Jump Shot,Jump Shot,99,20100259,33.8773,-56,167,-118.3258,0,1,0,2001-02,44,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,104,20100259,33.9743,-242,70,-118.5118,0,1,0,2001-02,22,25,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,224,20100259,33.8883,129,156,-118.1408,3,2,0,2001-02,0,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,242,20100259,34.0313,-170,13,-118.4398,1,2,0,2001-02,13,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/5/01,LAL vs. DAL,DAL
Driving Layup Shot,Layup,247,20100259,34.0443,0,0,-118.2698,0,2,0,2001-02,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,249,20100259,33.9813,1,63,-118.2688,0,2,0,2001-02,8,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,256,20100259,33.9813,-33,63,-118.3028,11,3,0,2001-02,42,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,265,20100259,34.0443,115,0,-118.1548,10,3,0,2001-02,9,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/5/01,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,267,20100259,33.9873,-4,57,-118.2738,9,3,0,2001-02,36,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Driving Layup Shot,Layup,271,20100259,34.0443,0,0,-118.2698,9,3,0,2001-02,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,303,20100259,33.9573,-77,87,-118.3468,6,3,0,2001-02,16,11,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,305,20100259,33.9003,-18,144,-118.2878,5,3,0,2001-02,39,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,327,20100259,34.0343,50,10,-118.2198,3,3,0,2001-02,51,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,329,20100259,33.9893,-34,55,-118.3038,3,3,0,2001-02,45,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Turnaround Jump Shot,Jump Shot,333,20100259,34.0143,153,30,-118.1168,3,3,0,2001-02,14,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,359,20100259,33.8813,-4,163,-118.2738,0,3,0,2001-02,57,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,394,20100259,33.9513,-170,93,-118.4398,10,4,0,2001-02,24,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/5/01,LAL vs. DAL,DAL
Turnaround Jump Shot,Jump Shot,417,20100259,34.0023,-71,42,-118.3408,8,4,0,2001-02,58,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,425,20100259,34.0373,-42,7,-118.3118,8,4,0,2001-02,28,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,461,20100259,33.7913,7,253,-118.2628,5,4,0,2001-02,14,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,490,20100259,34.0143,-170,30,-118.4398,2,4,0,2001-02,46,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/5/01,LAL vs. DAL,DAL
Running Dunk Shot,Dunk,545,20100259,34.0443,0,0,-118.2698,0,4,0,2001-02,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/5/01,LAL vs. DAL,DAL
Jump Shot,Jump Shot,22,20100271,34.0213,163,23,-118.1068,9,1,0,2001-02,45,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/7/01,LAL @ SAC,SAC
Driving Layup Shot,Layup,41,20100271,34.0443,0,0,-118.2698,6,1,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Layup Shot,Layup,91,20100271,34.0463,16,-2,-118.2538,0,1,0,2001-02,47,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,96,20100271,34.0443,70,0,-118.1998,0,1,0,2001-02,35,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,131,20100271,33.9593,-124,85,-118.3938,8,2,0,2001-02,44,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/7/01,LAL @ SAC,SAC
Driving Dunk Shot,Dunk,149,20100271,34.0443,0,0,-118.2698,6,2,0,2001-02,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,177,20100271,33.9893,-4,55,-118.2738,3,2,0,2001-02,51,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,197,20100271,33.9893,-4,55,-118.2738,1,2,0,2001-02,51,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,199,20100271,34.0103,-63,34,-118.3328,1,2,0,2001-02,49,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,220,20100271,33.8293,-153,215,-118.4228,0,2,0,2001-02,1,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,255,20100271,34.0443,77,0,-118.1928,8,3,0,2001-02,23,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,280,20100271,33.8733,-124,171,-118.3938,5,3,0,2001-02,5,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,285,20100271,33.9783,28,66,-118.2418,4,3,0,2001-02,28,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,290,20100271,33.9383,-147,106,-118.4168,3,3,0,2001-02,52,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/7/01,LAL @ SAC,SAC
Jump Shot,Jump Shot,309,20100271,34.0163,-54,28,-118.3238,2,3,0,2001-02,7,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Driving Layup Shot,Layup,318,20100271,34.0443,0,0,-118.2698,0,3,0,2001-02,35,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Turnaround Jump Shot,Jump Shot,378,20100271,34.0313,58,13,-118.2118,6,4,0,2001-02,29,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/7/01,LAL @ SAC,SAC
Running Jump Shot,Jump Shot,477,20100271,34.0373,115,7,-118.1548,0,4,0,2001-02,17,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/7/01,LAL @ SAC,SAC
Turnaround Jump Shot,Jump Shot,7,20100301,33.9623,1,82,-118.2688,10,1,0,2001-02,28,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,27,20100301,33.9113,100,133,-118.1698,8,1,0,2001-02,24,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,67,20100301,33.9113,115,133,-118.1548,2,1,0,2001-02,38,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/11/01,LAL vs. SEA,SEA
Driving Layup Shot,Layup,69,20100301,34.0443,0,0,-118.2698,2,1,0,2001-02,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,93,20100301,33.9073,-92,137,-118.3618,0,1,0,2001-02,44,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/11/01,LAL vs. SEA,SEA
Driving Layup Shot,Layup,101,20100301,34.0443,0,0,-118.2698,0,1,0,2001-02,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,109,20100301,33.8543,-27,190,-118.2968,11,2,0,2001-02,17,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,220,20100301,33.8393,83,205,-118.1868,1,2,0,2001-02,5,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/11/01,LAL vs. SEA,SEA
Dunk Shot,Dunk,223,20100301,34.0443,0,0,-118.2698,0,2,0,2001-02,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/01,LAL vs. SEA,SEA
Running Jump Shot,Jump Shot,230,20100301,33.9913,-56,53,-118.3258,0,2,0,2001-02,17,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,232,20100301,33.6713,7,373,-118.2628,0,2,0,2001-02,0,37,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,245,20100301,34.0083,64,36,-118.2058,11,3,0,2001-02,15,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,272,20100301,33.9683,138,76,-118.1318,8,3,0,2001-02,59,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,296,20100301,34.0373,153,7,-118.1168,6,3,0,2001-02,37,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/11/01,LAL vs. SEA,SEA
Driving Layup Shot,Layup,308,20100301,34.0443,0,0,-118.2698,5,3,0,2001-02,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,362,20100301,34.0373,138,7,-118.1318,0,3,0,2001-02,30,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,369,20100301,33.8033,64,241,-118.2058,0,3,0,2001-02,2,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/11/01,LAL vs. SEA,SEA
Jump Shot,Jump Shot,485,20100301,33.8253,-141,219,-118.4108,1,4,0,2001-02,46,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/11/01,LAL vs. SEA,SEA
Turnaround Jump Shot,Jump Shot,504,20100301,34.0463,123,-2,-118.1468,0,4,0,2001-02,53,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/11/01,LAL vs. SEA,SEA
Driving Layup Shot,Layup,4,20100320,34.0443,0,0,-118.2698,11,1,0,2001-02,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,35,20100320,33.9513,-98,93,-118.3678,7,1,0,2001-02,35,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/14/01,LAL vs. LAC,LAC
Driving Dunk Shot,Dunk,56,20100320,34.0443,0,0,-118.2698,5,1,0,2001-02,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/01,LAL vs. LAC,LAC
Driving Layup Shot,Layup,88,20100320,34.0443,0,0,-118.2698,3,1,0,2001-02,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/01,LAL vs. LAC,LAC
Dunk Shot,Dunk,99,20100320,34.0443,0,0,-118.2698,1,1,0,2001-02,57,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/01,LAL vs. LAC,LAC
Fadeaway Jump Shot,Jump Shot,115,20100320,33.9683,-33,76,-118.3028,0,1,0,2001-02,39,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/14/01,LAL vs. LAC,LAC
Driving Dunk Shot,Dunk,204,20100320,34.0443,0,0,-118.2698,3,2,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,227,20100320,33.8273,136,217,-118.1338,0,2,0,2001-02,24,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,305,20100320,33.9993,-122,45,-118.3918,5,3,0,2001-02,16,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,329,20100320,34.0103,142,34,-118.1278,3,3,0,2001-02,19,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,354,20100320,33.9033,-115,141,-118.3848,1,3,0,2001-02,55,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/14/01,LAL vs. LAC,LAC
Reverse Layup Shot,Layup,362,20100320,34.0443,0,0,-118.2698,1,3,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,376,20100320,33.9643,-44,80,-118.3138,0,3,0,2001-02,4,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,413,20100320,34.0373,-105,7,-118.3748,9,4,0,2001-02,23,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,436,20100320,33.8373,-12,207,-118.2818,7,4,0,2001-02,5,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,446,20100320,33.8313,7,213,-118.2628,6,4,0,2001-02,0,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/14/01,LAL vs. LAC,LAC
Jump Shot,Jump Shot,5,20100336,33.8813,-12,163,-118.2818,11,1,0,2001-02,20,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/16/01,LAL vs. GSW,GSW
Layup Shot,Layup,30,20100336,34.0443,0,0,-118.2698,8,1,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/16/01,LAL vs. GSW,GSW
Running Jump Shot,Jump Shot,44,20100336,33.9113,22,133,-118.2478,7,1,0,2001-02,4,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/16/01,LAL vs. GSW,GSW
Running Jump Shot,Jump Shot,75,20100336,34.0143,43,30,-118.2268,4,1,0,2001-02,15,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/16/01,LAL vs. GSW,GSW
Driving Dunk Shot,Dunk,328,20100336,34.0443,0,0,-118.2698,3,3,0,2001-02,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/16/01,LAL vs. GSW,GSW
Slam Dunk Shot,Dunk,336,20100336,34.0443,0,0,-118.2698,2,3,0,2001-02,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/16/01,LAL vs. GSW,GSW
Driving Dunk Shot,Dunk,353,20100336,34.0443,0,0,-118.2698,1,3,0,2001-02,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/16/01,LAL vs. GSW,GSW
Running Jump Shot,Jump Shot,368,20100336,33.9453,-77,99,-118.3468,0,3,0,2001-02,41,12,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/16/01,LAL vs. GSW,GSW
Jump Shot,Jump Shot,45,20100360,33.8463,-50,198,-118.3198,11,1,0,2001-02,9,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,58,20100360,33.8633,-65,181,-118.3348,9,1,0,2001-02,14,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,102,20100360,33.8013,60,243,-118.2098,5,1,0,2001-02,16,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,107,20100360,33.9933,3,51,-118.2668,4,1,0,2001-02,8,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Driving Dunk Shot,Dunk,120,20100360,34.0443,0,0,-118.2698,2,1,0,2001-02,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,138,20100360,33.8983,94,146,-118.1758,0,1,0,2001-02,58,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/20/01,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,202,20100360,33.9783,9,66,-118.2608,5,2,0,2001-02,16,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,289,20100360,33.9113,94,133,-118.1758,8,3,0,2001-02,52,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/20/01,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,325,20100360,33.9853,115,59,-118.1548,4,3,0,2001-02,15,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,329,20100360,34.0023,100,42,-118.1698,3,3,0,2001-02,52,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,340,20100360,33.9553,-4,89,-118.2738,2,3,0,2001-02,36,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/20/01,LAL @ HOU,HOU
Layup Shot,Layup,355,20100360,34.0443,0,0,-118.2698,1,3,0,2001-02,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Dunk Shot,Dunk,361,20100360,34.0443,0,0,-118.2698,1,3,0,2001-02,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Follow Up Dunk Shot,Dunk,368,20100360,34.0443,0,0,-118.2698,0,3,0,2001-02,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Layup Shot,Layup,375,20100360,34.0443,0,0,-118.2698,0,3,0,2001-02,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,398,20100360,33.8543,-18,190,-118.2878,10,4,0,2001-02,21,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/20/01,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,405,20100360,33.9783,-96,66,-118.3658,9,4,0,2001-02,26,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/20/01,LAL @ HOU,HOU
Driving Layup Shot,Layup,418,20100360,34.0443,0,0,-118.2698,8,4,0,2001-02,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Finger Roll Shot,Layup,421,20100360,34.0443,0,0,-118.2698,8,4,0,2001-02,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,423,20100360,33.9553,-10,89,-118.2798,7,4,0,2001-02,27,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,432,20100360,34.0313,106,13,-118.1638,6,4,0,2001-02,36,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,449,20100360,33.8603,1,184,-118.2688,4,4,0,2001-02,41,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/20/01,LAL @ HOU,HOU
Driving Layup Shot,Layup,487,20100360,34.0443,0,0,-118.2698,1,4,0,2001-02,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Driving Layup Shot,Layup,499,20100360,34.0443,0,0,-118.2698,0,4,0,2001-02,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/01,LAL @ HOU,HOU
Jump Shot,Jump Shot,5,20100367,34.0403,180,4,-118.0898,11,1,0,2001-02,10,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,14,20100367,33.9573,37,87,-118.2328,10,1,0,2001-02,10,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,38,20100367,33.9973,-155,47,-118.4248,7,1,0,2001-02,43,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,44,20100367,33.8813,-134,163,-118.4038,6,1,0,2001-02,37,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,47,20100367,33.8373,43,207,-118.2268,6,1,0,2001-02,13,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Layup Shot,Layup,128,20100367,34.0443,0,0,-118.2698,9,2,0,2001-02,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,192,20100367,33.8923,-4,152,-118.2738,4,2,0,2001-02,32,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/21/01,LAL @ MEM,MEM
Driving Finger Roll Shot,Layup,200,20100367,34.0443,0,0,-118.2698,3,2,0,2001-02,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,207,20100367,33.9383,43,106,-118.2268,2,2,0,2001-02,24,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,218,20100367,33.8863,-77,158,-118.3468,0,2,0,2001-02,50,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,233,20100367,33.8713,-63,173,-118.3328,11,3,0,2001-02,26,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,240,20100367,33.8863,129,158,-118.1408,9,3,0,2001-02,56,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Turnaround Jump Shot,Jump Shot,287,20100367,33.9263,7,118,-118.2628,4,3,0,2001-02,43,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/21/01,LAL @ MEM,MEM
Driving Dunk Shot,Dunk,292,20100367,34.0443,0,0,-118.2698,4,3,0,2001-02,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,299,20100367,34.0503,-185,-6,-118.4548,3,3,0,2001-02,19,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Fadeaway Jump Shot,Jump Shot,318,20100367,34.0183,159,26,-118.1108,2,3,0,2001-02,9,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,393,20100367,33.8033,16,241,-118.2538,6,4,0,2001-02,48,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,438,20100367,33.8863,201,158,-118.0688,2,4,0,2001-02,32,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,459,20100367,33.8143,-191,230,-118.4608,0,4,0,2001-02,25,29,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/21/01,LAL @ MEM,MEM
Jump Shot,Jump Shot,4,20100387,33.9813,-42,63,-118.3118,11,1,0,2001-02,36,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,41,20100387,33.9743,-191,70,-118.4608,7,1,0,2001-02,14,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,66,20100387,34.0183,159,26,-118.1108,4,1,0,2001-02,21,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,104,20100387,33.9003,1,144,-118.2688,2,1,0,2001-02,10,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,131,20100387,33.9073,43,137,-118.2268,11,2,0,2001-02,44,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,158,20100387,33.9383,7,106,-118.2628,9,2,0,2001-02,17,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,197,20100387,33.9113,1,133,-118.2688,5,2,0,2001-02,50,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,237,20100387,33.8603,51,184,-118.2188,2,2,0,2001-02,25,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,277,20100387,33.8033,-134,241,-118.4038,11,3,0,2001-02,3,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/01,LAL vs. PHI,PHI
Running Jump Shot,Jump Shot,282,20100387,33.9113,-155,133,-118.4248,10,3,0,2001-02,40,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,290,20100387,33.9453,-113,99,-118.3828,9,3,0,2001-02,19,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,309,20100387,33.9243,-134,120,-118.4038,7,3,0,2001-02,12,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,338,20100387,33.9623,123,82,-118.1468,3,3,0,2001-02,44,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,342,20100387,33.9073,-113,137,-118.3828,3,3,0,2001-02,13,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,400,20100387,34.0293,144,15,-118.1258,9,4,0,2001-02,11,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/25/01,LAL vs. PHI,PHI
Turnaround Jump Shot,Jump Shot,427,20100387,34.0023,167,42,-118.1028,5,4,0,2001-02,19,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,450,20100387,33.8223,138,222,-118.1318,1,4,0,2001-02,53,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/25/01,LAL vs. PHI,PHI
Turnaround Jump Shot,Jump Shot,468,20100387,34.0293,-191,15,-118.4608,0,4,0,2001-02,31,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/25/01,LAL vs. PHI,PHI
Jump Shot,Jump Shot,73,20100399,33.9053,150,139,-118.1198,4,1,0,2001-02,27,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,187,20100399,34.0083,73,36,-118.1968,6,2,0,2001-02,23,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,197,20100399,33.9283,87,116,-118.1828,5,2,0,2001-02,33,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,222,20100399,34.0143,73,30,-118.1968,2,2,0,2001-02,31,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/26/01,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,242,20100399,34.0443,0,0,-118.2698,0,2,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/26/01,LAL @ GSW,GSW
Turnaround Jump Shot,Jump Shot,258,20100399,33.9973,150,47,-118.1198,10,3,0,2001-02,15,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/26/01,LAL @ GSW,GSW
Turnaround Jump Shot,Jump Shot,285,20100399,34.0443,-124,0,-118.3938,7,3,0,2001-02,41,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,300,20100399,33.8943,-31,150,-118.3008,6,3,0,2001-02,11,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/26/01,LAL @ GSW,GSW
Fadeaway Jump Shot,Jump Shot,308,20100399,34.0553,172,-11,-118.0978,5,3,0,2001-02,27,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,314,20100399,34.0353,142,9,-118.1278,4,3,0,2001-02,27,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/26/01,LAL @ GSW,GSW
Fadeaway Jump Shot,Jump Shot,330,20100399,33.9113,-103,133,-118.3728,3,3,0,2001-02,21,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,342,20100399,33.8673,106,177,-118.1638,2,3,0,2001-02,16,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/26/01,LAL @ GSW,GSW
Turnaround Jump Shot,Jump Shot,411,20100399,34.0423,172,2,-118.0978,7,4,0,2001-02,20,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/26/01,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,419,20100399,34.0443,0,0,-118.2698,6,4,0,2001-02,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,432,20100399,33.9643,87,80,-118.1828,5,4,0,2001-02,23,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,434,20100399,34.0353,106,9,-118.1638,5,4,0,2001-02,18,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,463,20100399,33.8253,136,219,-118.1338,3,4,0,2001-02,56,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,481,20100399,33.7973,-18,247,-118.2878,2,4,0,2001-02,45,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,484,20100399,33.8463,-157,198,-118.4268,2,4,0,2001-02,19,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,486,20100399,33.8083,87,236,-118.1828,1,4,0,2001-02,46,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,503,20100399,33.8083,100,236,-118.1698,0,4,0,2001-02,38,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,516,20100399,33.7803,-88,264,-118.3578,0,4,0,2001-02,20,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,525,20100399,33.6883,184,356,-118.0858,0,4,0,2001-02,3,40,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/26/01,LAL @ GSW,GSW
Jump Shot,Jump Shot,12,20100413,33.9593,119,85,-118.1508,10,1,0,2001-02,48,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,16,20100413,33.9473,140,97,-118.1298,10,1,0,2001-02,12,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/01,LAL vs. TOR,TOR
Driving Layup Shot,Layup,21,20100413,34.0443,0,0,-118.2698,9,1,0,2001-02,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/01,LAL vs. TOR,TOR
Running Jump Shot,Jump Shot,31,20100413,33.8843,35,160,-118.2348,8,1,0,2001-02,18,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/28/01,LAL vs. TOR,TOR
Turnaround Jump Shot,Jump Shot,33,20100413,34.0403,-141,4,-118.4108,7,1,0,2001-02,43,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,56,20100413,33.7893,-14,255,-118.2838,5,1,0,2001-02,44,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/28/01,LAL vs. TOR,TOR
Turnaround Jump Shot,Jump Shot,157,20100413,33.9433,98,101,-118.1718,7,2,0,2001-02,30,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/01,LAL vs. TOR,TOR
Driving Finger Roll Shot,Layup,164,20100413,33.9933,0,51,-118.2698,6,2,0,2001-02,29,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,167,20100413,33.9033,-119,141,-118.3888,6,2,0,2001-02,3,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,174,20100413,33.9263,113,118,-118.1568,5,2,0,2001-02,54,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/28/01,LAL vs. TOR,TOR
Running Jump Shot,Jump Shot,220,20100413,34.0333,68,11,-118.2018,1,2,0,2001-02,18,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/28/01,LAL vs. TOR,TOR
Driving Layup Shot,Layup,265,20100413,34.0443,0,0,-118.2698,9,3,0,2001-02,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,285,20100413,33.9033,-86,141,-118.3558,8,3,0,2001-02,15,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,287,20100413,34.0403,-107,4,-118.3768,8,3,0,2001-02,2,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,385,20100413,34.0103,-170,34,-118.4398,9,4,0,2001-02,57,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/28/01,LAL vs. TOR,TOR
Turnaround Jump Shot,Jump Shot,388,20100413,34.0443,155,0,-118.1148,9,4,0,2001-02,4,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,431,20100413,33.8793,134,165,-118.1358,5,4,0,2001-02,57,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/28/01,LAL vs. TOR,TOR
Running Jump Shot,Jump Shot,446,20100413,33.9533,56,91,-118.2138,4,4,0,2001-02,36,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,469,20100413,33.9193,0,125,-118.2698,2,4,0,2001-02,33,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/28/01,LAL vs. TOR,TOR
Layup Shot,Layup,487,20100413,34.0443,0,0,-118.2698,1,4,0,2001-02,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,497,20100413,34.0163,233,28,-118.0368,0,4,0,2001-02,11,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/28/01,LAL vs. TOR,TOR
Jump Shot,Jump Shot,499,20100413,33.9093,203,135,-118.0668,0,4,0,2001-02,5,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/01,LAL vs. TOR,TOR
Layup Shot,Layup,7,20100428,34.0443,0,0,-118.2698,11,1,0,2001-02,14,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/30/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,18,20100428,33.8943,91,150,-118.1788,9,1,0,2001-02,29,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/30/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,42,20100428,33.9683,108,76,-118.1618,6,1,0,2001-02,55,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/30/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,68,20100428,34.0593,129,-15,-118.1408,2,1,0,2001-02,55,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/30/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,78,20100428,33.7913,-75,253,-118.3448,1,1,0,2001-02,18,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/30/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,91,20100428,34.0373,115,7,-118.1548,0,1,0,2001-02,23,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/30/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,94,20100428,33.7513,-48,293,-118.3178,0,1,0,2001-02,0,29,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/30/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,109,20100428,34.0373,70,7,-118.1998,10,2,0,2001-02,35,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/30/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,112,20100428,33.8883,85,156,-118.1848,10,2,0,2001-02,31,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/30/01,LAL vs. HOU,HOU
Layup Shot,Layup,208,20100428,34.0443,0,0,-118.2698,1,2,0,2001-02,14,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/30/01,LAL vs. HOU,HOU
Running Layup Shot,Layup,211,20100428,34.0443,0,0,-118.2698,1,2,0,2001-02,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/30/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,239,20100428,33.9873,1,57,-118.2688,10,3,0,2001-02,53,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/30/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,278,20100428,34.0023,-111,42,-118.3808,5,3,0,2001-02,53,11,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/30/01,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,280,20100428,34.0023,-124,42,-118.3938,5,3,0,2001-02,14,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/30/01,LAL vs. HOU,HOU
Jump Shot,Jump Shot,299,20100428,33.9113,157,133,-118.1128,2,3,0,2001-02,42,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/30/01,LAL vs. HOU,HOU
Layup Shot,Layup,38,20100440,34.0443,0,0,-118.2698,7,1,0,2001-02,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,71,20100440,33.9093,157,135,-118.1128,4,1,0,2001-02,54,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,79,20100440,33.8313,-10,213,-118.2798,3,1,0,2001-02,57,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,203,20100440,34.0143,199,30,-118.0708,3,2,0,2001-02,22,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,253,20100440,33.9433,47,101,-118.2228,10,3,0,2001-02,14,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,260,20100440,33.9193,169,125,-118.1008,9,3,0,2001-02,31,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,279,20100440,33.9303,163,114,-118.1068,7,3,0,2001-02,8,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/2/02,LAL @ DEN,DEN
Driving Layup Shot,Layup,297,20100440,34.0443,0,0,-118.2698,4,3,0,2001-02,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/02,LAL @ DEN,DEN
Running Jump Shot,Jump Shot,307,20100440,34.0083,-52,36,-118.3218,3,3,0,2001-02,54,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,318,20100440,34.0573,163,-13,-118.1068,2,3,0,2001-02,9,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,385,20100440,33.9573,11,87,-118.2588,7,4,0,2001-02,39,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/2/02,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,393,20100440,33.8863,-16,158,-118.2858,6,4,0,2001-02,28,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/2/02,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,420,20100440,33.9683,-10,76,-118.2798,3,4,0,2001-02,26,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,423,20100440,33.9873,-117,57,-118.3868,2,4,0,2001-02,50,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/2/02,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,428,20100440,33.9873,-1,57,-118.2708,2,4,0,2001-02,12,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,440,20100440,33.9643,121,80,-118.1488,1,4,0,2001-02,0,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/2/02,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,442,20100440,33.8713,-94,173,-118.3638,0,4,0,2001-02,55,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/2/02,LAL @ DEN,DEN
Driving Layup Shot,Layup,35,20100456,34.0443,0,0,-118.2698,8,1,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/02,LAL vs. PHX,PHX
Driving Layup Shot,Layup,76,20100456,34.0443,0,0,-118.2698,3,1,0,2001-02,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/02,LAL vs. PHX,PHX
Turnaround Jump Shot,Jump Shot,89,20100456,34.0483,129,-4,-118.1408,2,1,0,2001-02,29,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/02,LAL vs. PHX,PHX
Jump Shot,Jump Shot,91,20100456,33.9513,108,93,-118.1618,2,1,0,2001-02,14,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/02,LAL vs. PHX,PHX
Layup Shot,Layup,93,20100456,34.0443,0,0,-118.2698,2,1,0,2001-02,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/02,LAL vs. PHX,PHX
Jump Shot,Jump Shot,108,20100456,33.9073,64,137,-118.2058,1,1,0,2001-02,6,15,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/4/02,LAL vs. PHX,PHX
Running Jump Shot,Jump Shot,115,20100456,33.9813,1,63,-118.2688,0,1,0,2001-02,6,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/4/02,LAL vs. PHX,PHX
Layup Shot,Layup,326,20100456,34.0443,0,0,-118.2698,4,3,0,2001-02,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/02,LAL vs. PHX,PHX
Jump Shot,Jump Shot,340,20100456,34.0423,89,2,-118.1808,2,3,0,2001-02,46,8,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/02,LAL vs. PHX,PHX
Turnaround Jump Shot,Jump Shot,344,20100456,34.0443,140,0,-118.1298,2,3,0,2001-02,9,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/02,LAL vs. PHX,PHX
Jump Shot,Jump Shot,369,20100456,33.8503,-170,194,-118.4398,0,3,0,2001-02,32,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/4/02,LAL vs. PHX,PHX
Jump Shot,Jump Shot,372,20100456,34.0503,134,-6,-118.1358,0,3,0,2001-02,22,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/02,LAL vs. PHX,PHX
Jump Shot,Jump Shot,6,20100468,33.9833,167,61,-118.1028,11,1,0,2001-02,30,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/6/02,LAL @ TOR,TOR
Layup Shot,Layup,17,20100468,34.0443,0,0,-118.2698,10,1,0,2001-02,12,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/02,LAL @ TOR,TOR
Tip Shot,Tip Shot,45,20100468,34.0443,0,0,-118.2698,6,1,0,2001-02,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/02,LAL @ TOR,TOR
Fadeaway Jump Shot,Jump Shot,98,20100468,33.9873,159,57,-118.1108,1,1,0,2001-02,26,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/6/02,LAL @ TOR,TOR
Reverse Dunk Shot,Dunk,194,20100468,34.0443,0,0,-118.2698,3,2,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/02,LAL @ TOR,TOR
Tip Shot,Tip Shot,203,20100468,34.0443,0,0,-118.2698,3,2,0,2001-02,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,212,20100468,33.9153,-170,129,-118.4398,2,2,0,2001-02,10,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,227,20100468,33.9153,180,129,-118.0898,0,2,0,2001-02,51,22,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,252,20100468,33.9993,144,45,-118.1258,11,3,0,2001-02,2,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/6/02,LAL @ TOR,TOR
Running Layup Shot,Layup,264,20100468,34.0443,0,0,-118.2698,9,3,0,2001-02,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/02,LAL @ TOR,TOR
Alley Oop Layup shot,Layup,269,20100468,34.0443,0,0,-118.2698,9,3,0,2001-02,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/02,LAL @ TOR,TOR
Layup Shot,Layup,332,20100468,34.0443,0,0,-118.2698,2,3,0,2001-02,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,339,20100468,33.9833,138,61,-118.1318,2,3,0,2001-02,1,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,342,20100468,33.8793,43,165,-118.2268,1,3,0,2001-02,34,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,344,20100468,33.8923,-134,152,-118.4038,1,3,0,2001-02,28,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/6/02,LAL @ TOR,TOR
Fadeaway Jump Shot,Jump Shot,346,20100468,33.9193,-77,125,-118.3468,0,3,0,2001-02,48,14,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,358,20100468,33.8353,7,209,-118.2628,11,4,0,2001-02,18,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,371,20100468,33.9323,1,112,-118.2688,9,4,0,2001-02,24,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/6/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,24,20100482,33.9303,94,114,-118.1758,9,1,0,2001-02,13,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,56,20100482,33.9153,73,129,-118.1968,5,1,0,2001-02,59,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,92,20100482,33.9363,123,108,-118.1468,1,1,0,2001-02,57,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,102,20100482,33.9093,-214,135,-118.4838,0,1,0,2001-02,27,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,117,20100482,33.9623,153,82,-118.1168,11,2,0,2001-02,44,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,127,20100482,33.9363,138,108,-118.1318,10,2,0,2001-02,24,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/8/02,LAL @ DET,DET
Dunk Shot,Dunk,129,20100482,34.0443,0,0,-118.2698,10,2,0,2001-02,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,177,20100482,33.9153,129,129,-118.1408,4,2,0,2001-02,9,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,185,20100482,34.0023,-141,42,-118.4108,3,2,0,2001-02,43,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,202,20100482,34.0123,-162,32,-118.4318,2,2,0,2001-02,12,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/8/02,LAL @ DET,DET
Running Jump Shot,Jump Shot,210,20100482,33.9303,-4,114,-118.2738,1,2,0,2001-02,33,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/8/02,LAL @ DET,DET
Dunk Shot,Dunk,217,20100482,34.0443,0,0,-118.2698,0,2,0,2001-02,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/8/02,LAL @ DET,DET
Fadeaway Jump Shot,Jump Shot,252,20100482,34.0403,123,4,-118.1468,9,3,0,2001-02,19,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,290,20100482,34.0333,115,11,-118.1548,5,3,0,2001-02,1,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/8/02,LAL @ DET,DET
Jump Shot,Jump Shot,23,20100490,33.9873,7,57,-118.2628,9,1,0,2001-02,34,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/9/02,LAL @ IND,IND
Layup Shot,Layup,26,20100490,34.0313,-12,13,-118.2818,9,1,0,2001-02,23,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,38,20100490,34.0313,-33,13,-118.3028,7,1,0,2001-02,35,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,62,20100490,33.9263,85,118,-118.1848,5,1,0,2001-02,33,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,79,20100490,33.8653,-98,179,-118.3678,3,1,0,2001-02,21,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,93,20100490,33.9873,7,57,-118.2628,1,1,0,2001-02,59,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/9/02,LAL @ IND,IND
Alley Oop Dunk Shot,Dunk,131,20100490,34.0373,43,7,-118.2268,9,2,0,2001-02,49,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,137,20100490,33.9973,-33,47,-118.3028,9,2,0,2001-02,7,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/9/02,LAL @ IND,IND
Fadeaway Jump Shot,Jump Shot,236,20100490,34.0253,115,19,-118.1548,2,2,0,2001-02,3,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,266,20100490,33.8583,159,186,-118.1108,0,2,0,2001-02,12,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/9/02,LAL @ IND,IND
Reverse Layup Shot,Layup,294,20100490,34.0443,-12,0,-118.2818,9,3,0,2001-02,18,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/02,LAL @ IND,IND
Dunk Shot,Dunk,311,20100490,34.0373,16,7,-118.2538,8,3,0,2001-02,0,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/02,LAL @ IND,IND
Dunk Shot,Dunk,366,20100490,34.0373,7,7,-118.2628,3,3,0,2001-02,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/02,LAL @ IND,IND
Layup Shot,Layup,367,20100490,34.0313,1,13,-118.2688,3,3,0,2001-02,15,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,374,20100490,34.0443,-113,0,-118.3828,2,3,0,2001-02,51,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/9/02,LAL @ IND,IND
Reverse Layup Shot,Layup,402,20100490,34.0313,-12,13,-118.2818,11,4,0,2001-02,52,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/02,LAL @ IND,IND
Fadeaway Jump Shot,Jump Shot,412,20100490,34.0373,138,7,-118.1318,10,4,0,2001-02,47,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,414,20100490,33.8713,-63,173,-118.3328,10,4,0,2001-02,6,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,427,20100490,33.9093,-119,135,-118.3888,9,4,0,2001-02,10,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/9/02,LAL @ IND,IND
Jump Shot,Jump Shot,18,20100506,33.8983,144,146,-118.1258,9,1,0,2001-02,47,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,40,20100506,33.8483,-50,196,-118.3198,7,1,0,2001-02,34,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Turnaround Jump Shot,Jump Shot,43,20100506,34.0253,79,19,-118.1908,6,1,0,2001-02,58,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/11/02,LAL @ MIN,MIN
Layup Shot,Layup,61,20100506,34.0443,0,0,-118.2698,3,1,0,2001-02,58,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,77,20100506,33.9853,-29,59,-118.2988,2,1,0,2001-02,26,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,84,20100506,33.9853,-44,59,-118.3138,1,1,0,2001-02,11,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,86,20100506,34.0213,-73,23,-118.3428,1,1,0,2001-02,8,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,91,20100506,33.9113,129,133,-118.1408,0,1,0,2001-02,1,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,107,20100506,33.9113,129,133,-118.1408,10,2,0,2001-02,56,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,110,20100506,33.9553,-189,89,-118.4588,10,2,0,2001-02,20,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,112,20100506,33.9623,-29,82,-118.2988,10,2,0,2001-02,16,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,127,20100506,34.0043,-168,40,-118.4378,8,2,0,2001-02,25,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,189,20100506,33.8983,129,146,-118.1408,2,2,0,2001-02,3,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,243,20100506,34.0083,49,36,-118.2208,9,3,0,2001-02,4,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Turnaround Jump Shot,Jump Shot,273,20100506,33.9343,-35,110,-118.3048,5,3,0,2001-02,19,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/11/02,LAL @ MIN,MIN
Driving Dunk Shot,Dunk,285,20100506,34.0443,0,0,-118.2698,4,3,0,2001-02,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Layup Shot,Layup,287,20100506,34.0443,0,0,-118.2698,4,3,0,2001-02,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,315,20100506,33.9743,144,70,-118.1258,1,3,0,2001-02,25,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/11/02,LAL @ MIN,MIN
Layup Shot,Layup,335,20100506,34.0443,0,0,-118.2698,0,3,0,2001-02,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,387,20100506,33.9813,35,63,-118.2348,7,4,0,2001-02,19,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Layup Shot,Layup,454,20100506,34.0443,0,0,-118.2698,1,4,0,2001-02,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/11/02,LAL @ MIN,MIN
Driving Layup Shot,Layup,32,20100514,34.0443,0,0,-118.2698,8,1,0,2001-02,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,39,20100514,33.9913,129,53,-118.1408,7,1,0,2001-02,36,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,48,20100514,33.8543,-86,190,-118.3558,6,1,0,2001-02,19,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Driving Layup Shot,Layup,91,20100514,34.0443,0,0,-118.2698,2,1,0,2001-02,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,94,20100514,33.9343,138,110,-118.1318,1,1,0,2001-02,47,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,187,20100514,34.0253,94,19,-118.1758,6,2,0,2001-02,9,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,190,20100514,34.0253,138,19,-118.1318,6,2,0,2001-02,4,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,233,20100514,34.0313,222,13,-118.0478,3,2,0,2001-02,40,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,299,20100514,33.8543,68,190,-118.2018,9,3,0,2001-02,40,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Layup Shot,Layup,324,20100514,34.0443,0,0,-118.2698,6,3,0,2001-02,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,330,20100514,33.9173,117,127,-118.1528,6,3,0,2001-02,23,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,352,20100514,33.9453,11,99,-118.2588,4,3,0,2001-02,21,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,394,20100514,33.9973,153,47,-118.1168,0,3,0,2001-02,28,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,416,20100514,33.9283,-113,116,-118.3828,9,4,0,2001-02,53,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,435,20100514,33.8653,-122,179,-118.3918,7,4,0,2001-02,59,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,538,20100514,33.8813,-94,163,-118.3638,0,4,0,2001-02,0,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Layup Shot,Layup,558,20100514,34.0443,0,0,-118.2698,3,5,0,2001-02,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/02,LAL @ CHI,CHI
Tip Shot,Tip Shot,559,20100514,34.0443,0,0,-118.2698,3,5,0,2001-02,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,592,20100514,33.8543,-155,190,-118.4248,0,5,0,2001-02,45,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,610,20100514,34.0313,-191,13,-118.4608,0,5,0,2001-02,1,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/12/02,LAL @ CHI,CHI
Jump Shot,Jump Shot,2,20100525,33.9513,150,93,-118.1198,11,1,0,2001-02,43,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/14/02,LAL vs. MEM,MEM
Finger Roll Shot,Layup,9,20100525,34.0443,0,0,-118.2698,11,1,0,2001-02,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,14,20100525,33.8483,-18,196,-118.2878,10,1,0,2001-02,14,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/14/02,LAL vs. MEM,MEM
Driving Dunk Shot,Dunk,38,20100525,34.0443,0,0,-118.2698,7,1,0,2001-02,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,56,20100525,33.8653,-90,179,-118.3598,5,1,0,2001-02,44,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,59,20100525,33.9743,-4,70,-118.2738,5,1,0,2001-02,3,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Driving Dunk Shot,Dunk,69,20100525,34.0443,0,0,-118.2698,4,1,0,2001-02,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Tip Shot,Tip Shot,120,20100525,34.0443,0,0,-118.2698,11,2,0,2001-02,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Layup Shot,Layup,144,20100525,34.0443,0,0,-118.2698,8,2,0,2001-02,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,164,20100525,33.7893,64,255,-118.2058,8,2,0,2001-02,10,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,167,20100525,33.8583,-63,186,-118.3328,7,2,0,2001-02,42,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/14/02,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,171,20100525,34.0443,0,0,-118.2698,7,2,0,2001-02,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,186,20100525,33.9873,121,57,-118.1488,5,2,0,2001-02,45,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/14/02,LAL vs. MEM,MEM
Driving Layup Shot,Layup,198,20100525,34.0443,0,0,-118.2698,4,2,0,2001-02,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,215,20100525,33.9243,-117,120,-118.3868,2,2,0,2001-02,54,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/14/02,LAL vs. MEM,MEM
Reverse Layup Shot,Layup,221,20100525,34.0443,0,0,-118.2698,1,2,0,2001-02,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,244,20100525,33.8813,191,163,-118.0788,0,2,0,2001-02,12,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,256,20100525,34.0273,-153,17,-118.4228,11,3,0,2001-02,19,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/14/02,LAL vs. MEM,MEM
Driving Dunk Shot,Dunk,274,20100525,34.0443,0,0,-118.2698,9,3,0,2001-02,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Turnaround Jump Shot,Jump Shot,284,20100525,34.0273,64,17,-118.2058,7,3,0,2001-02,58,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Driving Layup Shot,Layup,293,20100525,34.0163,16,28,-118.2538,6,3,0,2001-02,52,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,301,20100525,33.8713,-195,173,-118.4648,5,3,0,2001-02,56,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,319,20100525,33.9683,-63,76,-118.3328,4,3,0,2001-02,11,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/14/02,LAL vs. MEM,MEM
Driving Dunk Shot,Dunk,334,20100525,34.0443,0,0,-118.2698,2,3,0,2001-02,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,337,20100525,33.8253,169,219,-118.1008,1,3,0,2001-02,44,27,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/14/02,LAL vs. MEM,MEM
Running Jump Shot,Jump Shot,349,20100525,33.9813,-33,63,-118.3028,0,3,0,2001-02,53,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/14/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,356,20100525,33.9283,64,116,-118.2058,0,3,0,2001-02,21,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/14/02,LAL vs. MEM,MEM
Turnaround Jump Shot,Jump Shot,16,20100542,33.9933,-124,51,-118.3938,9,1,0,2001-02,15,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/16/02,LAL vs. MIA,MIA
Layup Shot,Layup,18,20100542,34.0443,0,0,-118.2698,8,1,0,2001-02,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,42,20100542,33.8943,-111,150,-118.3808,6,1,0,2001-02,2,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,55,20100542,33.9283,-176,116,-118.4458,4,1,0,2001-02,24,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,100,20100542,33.9683,-138,76,-118.4078,0,1,0,2001-02,31,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,105,20100542,34.0443,220,0,-118.0498,0,1,0,2001-02,0,22,0,2PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/16/02,LAL vs. MIA,MIA
Slam Dunk Shot,Dunk,211,20100542,34.0443,0,0,-118.2698,2,2,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,224,20100542,33.8413,142,203,-118.1278,0,2,0,2001-02,35,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/16/02,LAL vs. MIA,MIA
Driving Layup Shot,Layup,232,20100542,34.0443,0,0,-118.2698,11,3,0,2001-02,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Layup Shot,Layup,246,20100542,34.0443,0,0,-118.2698,10,3,0,2001-02,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Tip Shot,Tip Shot,247,20100542,34.0443,0,0,-118.2698,10,3,0,2001-02,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Tip Shot,Tip Shot,249,20100542,34.0443,0,0,-118.2698,10,3,0,2001-02,37,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,270,20100542,33.9973,64,47,-118.2058,8,3,0,2001-02,23,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Driving Layup Shot,Layup,290,20100542,34.0443,0,0,-118.2698,5,3,0,2001-02,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,300,20100542,33.9743,-162,70,-118.4318,4,3,0,2001-02,53,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/16/02,LAL vs. MIA,MIA
Driving Layup Shot,Layup,305,20100542,34.0443,0,0,-118.2698,4,3,0,2001-02,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Driving Layup Shot,Layup,342,20100542,34.0443,0,0,-118.2698,0,3,0,2001-02,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Hook Shot,Hook Shot,387,20100542,34.0443,85,0,-118.1848,7,4,0,2001-02,11,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/16/02,LAL vs. MIA,MIA
Running Jump Shot,Jump Shot,401,20100542,33.9813,70,63,-118.1998,5,4,0,2001-02,51,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,410,20100542,33.8943,91,150,-118.1788,4,4,0,2001-02,34,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/16/02,LAL vs. MIA,MIA
Dunk Shot,Dunk,419,20100542,34.0443,0,0,-118.2698,3,4,0,2001-02,47,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Layup Shot,Layup,430,20100542,34.0443,0,0,-118.2698,2,4,0,2001-02,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,439,20100542,33.9003,85,144,-118.1848,1,4,0,2001-02,23,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,449,20100542,33.7853,-54,259,-118.3238,0,4,0,2001-02,28,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/16/02,LAL vs. MIA,MIA
Jump Shot,Jump Shot,4,20100558,34.0613,-162,-17,-118.4318,11,1,0,2001-02,17,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,18,20100558,34.0443,-109,0,-118.3788,9,1,0,2001-02,52,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/19/02,LAL @ SAS,SAS
Dunk Shot,Dunk,34,20100558,34.0403,3,4,-118.2668,7,1,0,2001-02,49,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,46,20100558,34.0083,-46,36,-118.3158,6,1,0,2001-02,8,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,107,20100558,34.0023,3,42,-118.2668,0,1,0,2001-02,21,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,134,20100558,33.8753,106,169,-118.1638,9,2,0,2001-02,22,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Turnaround Jump Shot,Jump Shot,212,20100558,33.9433,-46,101,-118.3158,1,2,0,2001-02,54,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,215,20100558,33.8443,32,200,-118.2378,1,2,0,2001-02,32,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Alley Oop Dunk Shot,Dunk,220,20100558,34.0573,3,-13,-118.2668,0,2,0,2001-02,48,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,243,20100558,33.8753,127,169,-118.1428,11,3,0,2001-02,2,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,256,20100558,33.9643,39,80,-118.2308,9,3,0,2001-02,26,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,267,20100558,33.9973,-162,47,-118.4318,8,3,0,2001-02,35,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,292,20100558,33.8543,3,190,-118.2668,4,3,0,2001-02,12,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,301,20100558,33.8753,18,169,-118.2518,3,3,0,2001-02,11,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,303,20100558,33.8713,106,173,-118.1638,2,3,0,2001-02,41,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,380,20100558,33.8373,-138,207,-118.4078,5,4,0,2001-02,23,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,383,20100558,33.9813,39,63,-118.2308,4,4,0,2001-02,57,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,384,20100558,33.9913,3,53,-118.2668,4,4,0,2001-02,54,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/19/02,LAL @ SAS,SAS
Layup Shot,Layup,395,20100558,34.0443,-1,0,-118.2708,3,4,0,2001-02,26,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,401,20100558,33.9743,157,70,-118.1128,2,4,0,2001-02,37,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/19/02,LAL @ SAS,SAS
Turnaround Jump Shot,Jump Shot,419,20100558,34.0183,142,26,-118.1278,0,4,0,2001-02,27,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/19/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,42,20100588,33.8183,-69,226,-118.3388,6,1,0,2001-02,46,23,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/22/02,LAL vs. DEN,DEN
Jump Shot,Jump Shot,59,20100588,34.0553,100,-11,-118.1698,4,1,0,2001-02,12,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/22/02,LAL vs. DEN,DEN
Jump Shot,Jump Shot,115,20100588,33.8183,150,226,-118.1198,0,1,0,2001-02,24,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/22/02,LAL vs. DEN,DEN
Driving Layup Shot,Layup,249,20100588,34.0443,0,0,-118.2698,10,3,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/22/02,LAL vs. DEN,DEN
Jump Shot,Jump Shot,258,20100588,34.0233,178,21,-118.0918,9,3,0,2001-02,2,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/22/02,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,262,20100588,33.9243,100,120,-118.1698,8,3,0,2001-02,20,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/22/02,LAL vs. DEN,DEN
Jump Shot,Jump Shot,291,20100588,33.8083,-111,236,-118.3808,5,3,0,2001-02,22,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/22/02,LAL vs. DEN,DEN
Running Jump Shot,Jump Shot,330,20100588,33.9933,-42,51,-118.3118,0,3,0,2001-02,46,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/22/02,LAL vs. DEN,DEN
Driving Layup Shot,Layup,333,20100588,34.0443,0,0,-118.2698,0,3,0,2001-02,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/22/02,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,340,20100588,33.9173,129,127,-118.1408,11,4,0,2001-02,45,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/22/02,LAL vs. DEN,DEN
Jump Shot,Jump Shot,350,20100588,33.8813,-48,163,-118.3178,10,4,0,2001-02,19,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/22/02,LAL vs. DEN,DEN
Reverse Layup Shot,Layup,355,20100588,34.0443,0,0,-118.2698,9,4,0,2001-02,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/22/02,LAL vs. DEN,DEN
Jump Shot,Jump Shot,360,20100588,33.9473,-153,97,-118.4228,9,4,0,2001-02,7,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/22/02,LAL vs. DEN,DEN
Jump Shot,Jump Shot,371,20100588,34.0233,77,21,-118.1928,8,4,0,2001-02,22,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/22/02,LAL vs. DEN,DEN
Driving Layup Shot,Layup,14,20100595,34.0443,0,0,-118.2698,10,1,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/23/02,LAL @ LAC,LAC
Slam Dunk Shot,Dunk,31,20100595,34.0443,0,0,-118.2698,7,1,0,2001-02,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,35,20100595,34.0333,-115,11,-118.3848,7,1,0,2001-02,0,11,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/23/02,LAL @ LAC,LAC
Driving Dunk Shot,Dunk,45,20100595,34.0443,0,0,-118.2698,6,1,0,2001-02,14,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,96,20100595,33.8963,-145,148,-118.4148,0,1,0,2001-02,28,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,106,20100595,34.0333,-122,11,-118.3918,11,2,0,2001-02,47,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,112,20100595,33.9243,-94,120,-118.3638,10,2,0,2001-02,39,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,164,20100595,33.9493,155,95,-118.1148,4,2,0,2001-02,17,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,167,20100595,33.9283,54,116,-118.2158,3,2,0,2001-02,47,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,169,20100595,33.8673,117,177,-118.1528,3,2,0,2001-02,41,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,185,20100595,33.9343,-115,110,-118.3848,2,2,0,2001-02,9,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/23/02,LAL @ LAC,LAC
Layup Shot,Layup,191,20100595,34.0443,0,0,-118.2698,1,2,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/23/02,LAL @ LAC,LAC
Fadeaway Jump Shot,Jump Shot,196,20100595,33.8843,68,160,-118.2018,1,2,0,2001-02,6,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,199,20100595,33.9953,167,49,-118.1028,0,2,0,2001-02,32,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,202,20100595,33.9783,-10,66,-118.2798,0,2,0,2001-02,7,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,212,20100595,33.9003,-122,144,-118.3918,11,3,0,2001-02,47,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,216,20100595,33.9283,39,116,-118.2308,11,3,0,2001-02,12,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,259,20100595,33.9073,146,137,-118.1238,7,3,0,2001-02,5,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,311,20100595,34.0273,182,17,-118.0878,3,3,0,2001-02,13,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,313,20100595,33.8843,18,160,-118.2518,2,3,0,2001-02,30,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/23/02,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,317,20100595,33.9683,5,76,-118.2648,2,3,0,2001-02,22,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,330,20100595,33.7893,-58,255,-118.3278,0,3,0,2001-02,1,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,474,20100595,33.7423,-69,302,-118.3388,0,4,0,2001-02,10,30,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/23/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,12,20100609,33.9973,-153,47,-118.4228,10,1,0,2001-02,42,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/25/02,LAL vs. SAS,SAS
Driving Dunk Shot,Dunk,78,20100609,34.0443,0,0,-118.2698,2,1,0,2001-02,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,87,20100609,33.9933,-27,51,-118.2968,1,1,0,2001-02,59,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,93,20100609,34.0403,115,4,-118.1548,1,1,0,2001-02,8,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/25/02,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,172,20100609,34.0443,-124,0,-118.3938,4,2,0,2001-02,52,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,186,20100609,34.0103,64,34,-118.2058,2,2,0,2001-02,59,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/25/02,LAL vs. SAS,SAS
Turnaround Jump Shot,Jump Shot,265,20100609,33.9493,-107,95,-118.3768,7,3,0,2001-02,32,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,278,20100609,33.9663,83,78,-118.1868,6,3,0,2001-02,37,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/25/02,LAL vs. SAS,SAS
Driving Layup Shot,Layup,285,20100609,34.0443,0,0,-118.2698,6,3,0,2001-02,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,297,20100609,33.8603,-113,184,-118.3828,4,3,0,2001-02,21,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,339,20100609,34.0423,182,2,-118.0878,0,3,0,2001-02,53,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/25/02,LAL vs. SAS,SAS
Driving Finger Roll Shot,Layup,394,20100609,34.0443,0,0,-118.2698,8,4,0,2001-02,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,413,20100609,33.9953,-29,49,-118.2988,5,4,0,2001-02,16,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/25/02,LAL vs. SAS,SAS
Turnaround Jump Shot,Jump Shot,436,20100609,33.9663,113,78,-118.1568,2,4,0,2001-02,56,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/25/02,LAL vs. SAS,SAS
Alley Oop Dunk Shot,Dunk,440,20100609,34.0443,0,0,-118.2698,2,4,0,2001-02,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/25/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,446,20100609,33.9763,-56,68,-118.3258,1,4,0,2001-02,58,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/25/02,LAL vs. SAS,SAS
Dunk Shot,Dunk,37,20100622,34.0443,0,0,-118.2698,6,1,0,2001-02,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,70,20100622,33.9533,-119,91,-118.3888,3,1,0,2001-02,40,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/27/02,LAL @ PHI,PHI
Layup Shot,Layup,96,20100622,34.0443,0,0,-118.2698,1,1,0,2001-02,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/27/02,LAL @ PHI,PHI
Driving Layup Shot,Layup,105,20100622,34.0443,0,0,-118.2698,0,1,0,2001-02,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/27/02,LAL @ PHI,PHI
Turnaround Jump Shot,Jump Shot,121,20100622,34.0483,134,-4,-118.1358,11,2,0,2001-02,6,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,166,20100622,33.8883,134,156,-118.1358,6,2,0,2001-02,3,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,247,20100622,34.0403,148,4,-118.1218,11,3,0,2001-02,38,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,250,20100622,33.9133,142,131,-118.1278,10,3,0,2001-02,56,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,252,20100622,33.9093,49,135,-118.2208,10,3,0,2001-02,42,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,267,20100622,33.8983,14,146,-118.2558,9,3,0,2001-02,4,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,273,20100622,34.0293,-132,15,-118.4018,8,3,0,2001-02,5,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/27/02,LAL @ PHI,PHI
Running Jump Shot,Jump Shot,297,20100622,33.9743,-54,70,-118.3238,5,3,0,2001-02,57,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/27/02,LAL @ PHI,PHI
Running Jump Shot,Jump Shot,310,20100622,34.0063,-6,38,-118.2758,4,3,0,2001-02,19,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/27/02,LAL @ PHI,PHI
Dunk Shot,Dunk,313,20100622,34.0443,0,0,-118.2698,3,3,0,2001-02,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,425,20100622,33.8753,-12,169,-118.2818,3,4,0,2001-02,4,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/27/02,LAL @ PHI,PHI
Turnaround Jump Shot,Jump Shot,452,20100622,33.9643,1,80,-118.2688,0,4,0,2001-02,56,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/27/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,2,20100628,34.0103,-42,34,-118.3118,11,1,0,2001-02,44,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Layup Shot,Layup,9,20100628,34.0443,0,0,-118.2698,10,1,0,2001-02,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,20,20100628,33.8943,-33,150,-118.3028,9,1,0,2001-02,35,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,40,20100628,34.0403,-71,4,-118.3408,7,1,0,2001-02,17,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Fadeaway Jump Shot,Jump Shot,45,20100628,34.0403,132,4,-118.1378,6,1,0,2001-02,40,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/29/02,LAL @ ATL,ATL
Fadeaway Jump Shot,Jump Shot,63,20100628,34.0403,123,4,-118.1468,4,1,0,2001-02,20,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/29/02,LAL @ ATL,ATL
Dunk Shot,Dunk,78,20100628,34.0443,0,0,-118.2698,2,1,0,2001-02,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,88,20100628,33.8603,-27,184,-118.2968,1,1,0,2001-02,29,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/29/02,LAL @ ATL,ATL
Reverse Layup Shot,Layup,92,20100628,34.0443,0,0,-118.2698,1,1,0,2001-02,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,97,20100628,33.9623,-202,82,-118.4718,0,1,0,2001-02,46,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/29/02,LAL @ ATL,ATL
Layup Shot,Layup,209,20100628,34.0443,0,0,-118.2698,1,2,0,2001-02,45,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,221,20100628,33.9383,-172,106,-118.4418,0,2,0,2001-02,50,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,224,20100628,33.8903,153,154,-118.1168,0,2,0,2001-02,29,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,232,20100628,34.0163,235,28,-118.0348,0,2,0,2001-02,0,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/29/02,LAL @ ATL,ATL
Reverse Layup Shot,Layup,247,20100628,34.0443,0,0,-118.2698,11,3,0,2001-02,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Layup Shot,Layup,283,20100628,34.0443,0,0,-118.2698,7,3,0,2001-02,9,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/02,LAL @ ATL,ATL
Jump Shot,Jump Shot,333,20100628,33.8733,-107,171,-118.3768,2,3,0,2001-02,19,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/29/02,LAL @ ATL,ATL
Tip Shot,Tip Shot,16,20100639,34.0443,0,0,-118.2698,9,1,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,24,20100639,33.9223,-94,122,-118.3638,8,1,0,2001-02,50,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/30/02,LAL @ ORL,ORL
Running Hook Shot,Hook Shot,89,20100639,34.0523,62,-8,-118.2078,1,1,0,2001-02,19,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Running Jump Shot,Jump Shot,126,20100639,34.0463,-101,-2,-118.3708,10,2,0,2001-02,45,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/30/02,LAL @ ORL,ORL
Driving Finger Roll Shot,Layup,175,20100639,34.0443,0,0,-118.2698,6,2,0,2001-02,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Driving Layup Shot,Layup,195,20100639,34.0443,0,0,-118.2698,4,2,0,2001-02,25,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Slam Dunk Shot,Dunk,198,20100639,34.0443,0,0,-118.2698,4,2,0,2001-02,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Alley Oop Dunk Shot,Dunk,227,20100639,34.0443,0,0,-118.2698,1,2,0,2001-02,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,248,20100639,33.9513,132,93,-118.1378,11,3,0,2001-02,23,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,298,20100639,33.9283,182,116,-118.0878,6,3,0,2001-02,26,21,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,337,20100639,33.9553,176,89,-118.0938,3,3,0,2001-02,9,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,376,20100639,33.8793,98,165,-118.1718,11,4,0,2001-02,46,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,379,20100639,33.8463,24,198,-118.2458,11,4,0,2001-02,7,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Fadeaway Jump Shot,Jump Shot,386,20100639,34.0213,110,23,-118.1598,10,4,0,2001-02,27,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,391,20100639,33.9593,-157,85,-118.4268,9,4,0,2001-02,53,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Turnaround Jump Shot,Jump Shot,422,20100639,34.0633,-187,-19,-118.4568,9,4,0,2001-02,4,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Driving Dunk Shot,Dunk,425,20100639,34.0443,0,0,-118.2698,8,4,0,2001-02,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,437,20100639,33.9553,-94,89,-118.3638,7,4,0,2001-02,40,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/30/02,LAL @ ORL,ORL
Driving Layup Shot,Layup,448,20100639,34.0443,0,0,-118.2698,6,4,0,2001-02,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Turnaround Jump Shot,Jump Shot,493,20100639,34.0673,191,-23,-118.0788,2,4,0,2001-02,7,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/30/02,LAL @ ORL,ORL
Driving Dunk Shot,Dunk,496,20100639,34.0443,0,0,-118.2698,1,4,0,2001-02,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/30/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,8,20100653,33.9153,-128,129,-118.3978,10,1,0,2001-02,42,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/1/02,LAL @ MEM,MEM
Layup Shot,Layup,42,20100653,34.0443,0,0,-118.2698,7,1,0,2001-02,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,45,20100653,33.9743,174,70,-118.0958,6,1,0,2001-02,57,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/1/02,LAL @ MEM,MEM
Turnaround Jump Shot,Jump Shot,77,20100653,34.0443,159,0,-118.1108,1,1,0,2001-02,27,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/1/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,97,20100653,33.7153,-18,329,-118.2878,0,1,0,2001-02,0,32,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/1/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,182,20100653,34.0503,108,-6,-118.1618,1,2,0,2001-02,42,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/1/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,189,20100653,34.0403,-56,4,-118.3258,1,2,0,2001-02,2,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/1/02,LAL @ MEM,MEM
Reverse Layup Shot,Layup,242,20100653,34.0443,0,0,-118.2698,6,3,0,2001-02,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/02,LAL @ MEM,MEM
Layup Shot,Layup,281,20100653,34.0443,0,0,-118.2698,1,3,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/02,LAL @ MEM,MEM
Layup Shot,Layup,296,20100653,34.0443,0,0,-118.2698,11,4,0,2001-02,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/02,LAL @ MEM,MEM
Layup Shot,Layup,311,20100653,34.0443,0,0,-118.2698,9,4,0,2001-02,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,337,20100653,33.9913,-71,53,-118.3408,5,4,0,2001-02,52,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,2/1/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,22,20100668,33.9323,132,112,-118.1378,9,1,0,2001-02,26,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/3/02,LAL @ DAL,DAL
Driving Layup Shot,Layup,40,20100668,34.0443,0,0,-118.2698,7,1,0,2001-02,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,42,20100668,34.0333,77,11,-118.1928,7,1,0,2001-02,24,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,43,20100668,34.0103,54,34,-118.2158,7,1,0,2001-02,23,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,46,20100668,33.9833,3,61,-118.2668,7,1,0,2001-02,21,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,66,20100668,33.8293,119,215,-118.1508,5,1,0,2001-02,6,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/3/02,LAL @ DAL,DAL
Slam Dunk Shot,Dunk,72,20100668,34.0443,0,0,-118.2698,4,1,0,2001-02,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,83,20100668,33.9893,32,55,-118.2378,3,1,0,2001-02,14,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,103,20100668,33.9113,110,133,-118.1598,1,1,0,2001-02,49,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,109,20100668,33.9383,161,106,-118.1088,1,1,0,2001-02,21,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,169,20100668,33.9113,56,133,-118.2138,7,2,0,2001-02,5,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,227,20100668,34.0483,119,-4,-118.1508,1,2,0,2001-02,36,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,238,20100668,33.9893,89,55,-118.1808,0,2,0,2001-02,2,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/3/02,LAL @ DAL,DAL
Layup Shot,Layup,246,20100668,34.0443,0,0,-118.2698,11,3,0,2001-02,27,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Layup Shot,Layup,269,20100668,34.0443,0,0,-118.2698,9,3,0,2001-02,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,275,20100668,33.8463,11,198,-118.2588,8,3,0,2001-02,21,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/3/02,LAL @ DAL,DAL
Driving Layup Shot,Layup,288,20100668,34.0443,0,0,-118.2698,7,3,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,298,20100668,33.8733,-29,171,-118.2988,5,3,0,2001-02,54,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/3/02,LAL @ DAL,DAL
Driving Layup Shot,Layup,329,20100668,34.0443,0,0,-118.2698,2,3,0,2001-02,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,351,20100668,33.8013,11,243,-118.2588,0,3,0,2001-02,0,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/3/02,LAL @ DAL,DAL
Slam Dunk Shot,Dunk,417,20100668,34.0443,0,0,-118.2698,6,4,0,2001-02,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Layup Shot,Layup,448,20100668,34.0443,0,0,-118.2698,4,4,0,2001-02,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,451,20100668,33.9073,18,137,-118.2518,3,4,0,2001-02,40,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,476,20100668,33.8563,-16,188,-118.2858,1,4,0,2001-02,7,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/3/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,7,20100691,33.8653,-149,179,-118.4188,11,1,0,2001-02,13,23,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,30,20100691,33.9283,-71,116,-118.3408,8,1,0,2001-02,27,13,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,2/6/02,LAL vs. CHI,CHI
Running Jump Shot,Jump Shot,42,20100691,34.0463,-105,-2,-118.3748,6,1,0,2001-02,56,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,56,20100691,34.0253,-176,19,-118.4458,5,1,0,2001-02,3,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Running Jump Shot,Jump Shot,62,20100691,33.9973,79,47,-118.1908,3,1,0,2001-02,57,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/6/02,LAL vs. CHI,CHI
Layup Shot,Layup,86,20100691,34.0443,0,0,-118.2698,2,1,0,2001-02,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/02,LAL vs. CHI,CHI
Fadeaway Jump Shot,Jump Shot,197,20100691,33.8713,-77,173,-118.3468,3,2,0,2001-02,1,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Running Jump Shot,Jump Shot,204,20100691,33.9173,-134,127,-118.4038,2,2,0,2001-02,25,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Running Jump Shot,Jump Shot,250,20100691,33.9813,-84,63,-118.3538,10,3,0,2001-02,11,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/6/02,LAL vs. CHI,CHI
Running Jump Shot,Jump Shot,267,20100691,34.0083,-134,36,-118.4038,9,3,0,2001-02,3,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,289,20100691,34.0523,159,-8,-118.1108,5,3,0,2001-02,54,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,298,20100691,33.8253,-170,219,-118.4398,5,3,0,2001-02,35,27,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,300,20100691,33.9813,-134,63,-118.4038,4,3,0,2001-02,57,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,320,20100691,33.9003,-134,144,-118.4038,3,3,0,2001-02,14,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,326,20100691,33.9413,-130,103,-118.3998,4,3,0,2001-02,8,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Dunk Shot,Dunk,338,20100691,34.0443,0,0,-118.2698,1,3,0,2001-02,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,348,20100691,33.9073,-128,137,-118.3978,0,3,0,2001-02,36,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Driving Layup Shot,Layup,367,20100691,34.0443,0,0,-118.2698,10,4,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,374,20100691,33.8143,16,230,-118.2538,9,4,0,2001-02,20,23,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/6/02,LAL vs. CHI,CHI
Driving Layup Shot,Layup,390,20100691,34.0443,0,0,-118.2698,7,4,0,2001-02,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,460,20100691,33.9623,-12,82,-118.2818,0,4,0,2001-02,29,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,469,20100691,33.7873,-98,257,-118.3678,0,4,0,2001-02,24,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/6/02,LAL vs. CHI,CHI
Layup Shot,Layup,481,20100691,34.0443,0,0,-118.2698,0,4,0,2001-02,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,27,20100707,33.9873,144,57,-118.1258,8,1,0,2001-02,40,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,48,20100707,34.0253,153,19,-118.1168,5,1,0,2001-02,30,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,80,20100707,33.9113,108,133,-118.1618,2,1,0,2001-02,39,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,107,20100707,33.8373,51,207,-118.2188,0,1,0,2001-02,1,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,150,20100707,33.7803,-63,264,-118.3328,7,2,0,2001-02,25,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,159,20100707,33.8883,108,156,-118.1618,6,2,0,2001-02,23,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/12/02,LAL vs. WAS,WAS
Running Layup Shot,Layup,174,20100707,34.0443,0,0,-118.2698,4,2,0,2001-02,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/12/02,LAL vs. WAS,WAS
Follow Up Dunk Shot,Dunk,175,20100707,34.0443,0,0,-118.2698,4,2,0,2001-02,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,228,20100707,34.0463,108,-2,-118.1618,11,3,0,2001-02,51,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,302,20100707,33.9283,-134,116,-118.4038,4,3,0,2001-02,45,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,325,20100707,33.9453,-134,99,-118.4038,1,3,0,2001-02,59,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/12/02,LAL vs. WAS,WAS
Driving Layup Shot,Layup,335,20100707,34.0443,0,0,-118.2698,1,3,0,2001-02,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/12/02,LAL vs. WAS,WAS
Running Jump Shot,Jump Shot,416,20100707,34.0313,-149,13,-118.4188,6,4,0,2001-02,16,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,418,20100707,33.9623,188,82,-118.0818,5,4,0,2001-02,40,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/02,LAL vs. WAS,WAS
Running Jump Shot,Jump Shot,428,20100707,33.9743,-42,70,-118.3118,4,4,0,2001-02,33,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,454,20100707,33.9173,-176,127,-118.4458,1,4,0,2001-02,7,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/12/02,LAL vs. WAS,WAS
Jump Shot,Jump Shot,3,20100720,34.0353,115,9,-118.1548,11,1,0,2001-02,38,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/14/02,LAL @ SEA,SEA
Tip Shot,Tip Shot,21,20100720,34.0443,0,0,-118.2698,9,1,0,2001-02,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Alley Oop Dunk Shot,Dunk,63,20100720,34.0443,0,0,-118.2698,5,1,0,2001-02,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,65,20100720,34.0143,75,30,-118.1948,4,1,0,2001-02,24,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,128,20100720,34.0333,188,11,-118.0818,11,2,0,2001-02,30,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,203,20100720,34.0183,-48,26,-118.3178,4,2,0,2001-02,31,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Layup Shot,Layup,241,20100720,34.0443,0,0,-118.2698,0,2,0,2001-02,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,256,20100720,34.0443,161,0,-118.1088,0,2,0,2001-02,0,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,270,20100720,33.9913,11,53,-118.2588,9,3,0,2001-02,57,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,280,20100720,34.0423,-170,2,-118.4398,8,3,0,2001-02,25,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,283,20100720,33.9703,108,74,-118.1618,7,3,0,2001-02,42,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/14/02,LAL @ SEA,SEA
Turnaround Jump Shot,Jump Shot,286,20100720,34.0733,-84,-29,-118.3538,7,3,0,2001-02,26,8,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,291,20100720,33.8693,94,175,-118.1758,6,3,0,2001-02,50,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,326,20100720,34.0313,43,13,-118.2268,2,3,0,2001-02,48,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,349,20100720,33.8923,108,152,-118.1618,0,3,0,2001-02,0,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/02,LAL @ SEA,SEA
Fadeaway Jump Shot,Jump Shot,382,20100720,33.9323,79,112,-118.1908,7,4,0,2001-02,49,13,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,384,20100720,34.0313,64,13,-118.2058,7,4,0,2001-02,16,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,411,20100720,34.0273,186,17,-118.0838,5,4,0,2001-02,18,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/02,LAL @ SEA,SEA
Tip Shot,Tip Shot,432,20100720,34.0443,0,0,-118.2698,2,4,0,2001-02,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/02,LAL @ SEA,SEA
Jump Shot,Jump Shot,436,20100720,33.9433,144,101,-118.1258,1,4,0,2001-02,42,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/02,LAL @ SEA,SEA
Driving Layup Shot,Layup,51,20100730,34.0443,0,0,-118.2698,5,1,0,2001-02,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/15/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,94,20100730,34.0143,-71,30,-118.3408,0,1,0,2001-02,55,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/15/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,102,20100730,33.7173,188,327,-118.0818,0,1,0,2001-02,0,37,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/15/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,169,20100730,33.8253,-71,219,-118.3408,5,2,0,2001-02,52,23,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/15/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,252,20100730,33.8603,85,184,-118.1848,11,3,0,2001-02,1,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/15/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,281,20100730,33.9873,-27,57,-118.2968,7,3,0,2001-02,42,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/15/02,LAL vs. ATL,ATL
Running Jump Shot,Jump Shot,294,20100730,33.9873,73,57,-118.1968,6,3,0,2001-02,14,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/15/02,LAL vs. ATL,ATL
Reverse Layup Shot,Layup,301,20100730,34.0443,0,0,-118.2698,5,3,0,2001-02,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/15/02,LAL vs. ATL,ATL
Fadeaway Jump Shot,Jump Shot,312,20100730,34.0083,85,36,-118.1848,3,3,0,2001-02,51,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/15/02,LAL vs. ATL,ATL
Driving Layup Shot,Layup,394,20100730,34.0443,0,0,-118.2698,8,4,0,2001-02,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/15/02,LAL vs. ATL,ATL
Driving Layup Shot,Layup,451,20100730,34.0443,0,0,-118.2698,3,4,0,2001-02,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/15/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,26,20100741,33.8883,-145,156,-118.4148,9,1,0,2001-02,3,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,49,20100741,34.0423,176,2,-118.0938,6,1,0,2001-02,15,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,54,20100741,33.9743,75,70,-118.1948,5,1,0,2001-02,51,10,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/17/02,LAL @ POR,POR
Driving Layup Shot,Layup,83,20100741,34.0443,0,0,-118.2698,1,1,0,2001-02,51,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/02,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,130,20100741,33.9053,-67,139,-118.3368,9,2,0,2001-02,50,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/17/02,LAL @ POR,POR
Running Jump Shot,Jump Shot,140,20100741,33.9853,18,59,-118.2518,8,2,0,2001-02,33,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,158,20100741,34.0463,182,-2,-118.0878,6,2,0,2001-02,16,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Fadeaway Jump Shot,Jump Shot,167,20100741,34.0333,-160,11,-118.4298,5,2,0,2001-02,15,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,224,20100741,33.9303,176,114,-118.0938,0,2,0,2001-02,1,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,233,20100741,34.0273,-187,17,-118.4568,11,3,0,2001-02,5,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,246,20100741,33.9683,117,76,-118.1528,9,3,0,2001-02,48,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,251,20100741,33.8333,5,211,-118.2648,9,3,0,2001-02,32,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Running Jump Shot,Jump Shot,261,20100741,34.0103,-25,34,-118.2948,8,3,0,2001-02,11,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/17/02,LAL @ POR,POR
Finger Roll Shot,Layup,283,20100741,34.0443,0,0,-118.2698,5,3,0,2001-02,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,288,20100741,33.8083,-37,236,-118.3068,4,3,0,2001-02,59,23,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,337,20100741,33.4833,60,561,-118.2098,0,3,0,2001-02,0,56,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,345,20100741,34.0523,-46,-8,-118.3158,11,4,0,2001-02,4,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,348,20100741,33.8563,39,188,-118.2308,10,4,0,2001-02,37,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,353,20100741,33.8603,-58,184,-118.3278,9,4,0,2001-02,48,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,372,20100741,33.9303,218,114,-118.0518,7,4,0,2001-02,27,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/17/02,LAL @ POR,POR
Running Jump Shot,Jump Shot,404,20100741,34.0163,-73,28,-118.3428,5,4,0,2001-02,5,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/17/02,LAL @ POR,POR
Fadeaway Jump Shot,Jump Shot,410,20100741,33.8983,11,146,-118.2588,3,4,0,2001-02,43,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,414,20100741,33.8813,-136,163,-118.4058,3,4,0,2001-02,9,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,430,20100741,33.8983,140,146,-118.1298,1,4,0,2001-02,33,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/17/02,LAL @ POR,POR
Driving Layup Shot,Layup,465,20100741,34.0443,0,0,-118.2698,0,4,0,2001-02,19,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/02,LAL @ POR,POR
Jump Shot,Jump Shot,5,20100758,34.0463,-206,-2,-118.4758,11,1,0,2001-02,29,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,43,20100758,33.9623,58,82,-118.2118,7,1,0,2001-02,27,10,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/19/02,LAL vs. BOS,BOS
Layup Shot,Layup,154,20100758,34.0443,0,0,-118.2698,6,2,0,2001-02,45,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,167,20100758,33.9113,-149,133,-118.4188,5,2,0,2001-02,51,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,199,20100758,34.0463,153,-2,-118.1168,2,2,0,2001-02,45,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,250,20100758,33.9003,-134,144,-118.4038,9,3,0,2001-02,26,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/19/02,LAL vs. BOS,BOS
Running Jump Shot,Jump Shot,252,20100758,34.0023,-92,42,-118.3618,8,3,0,2001-02,48,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,322,20100758,33.9343,-48,110,-118.3178,2,3,0,2001-02,15,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,332,20100758,33.9743,153,70,-118.1168,1,3,0,2001-02,29,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,338,20100758,33.8313,144,213,-118.1258,0,3,0,2001-02,27,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,353,20100758,33.9173,-141,127,-118.4108,11,4,0,2001-02,42,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/19/02,LAL vs. BOS,BOS
Running Hook Shot,Hook Shot,371,20100758,33.9623,64,82,-118.2058,9,4,0,2001-02,24,10,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,417,20100758,33.7803,16,264,-118.2538,5,4,0,2001-02,22,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/19/02,LAL vs. BOS,BOS
Alley Oop Layup shot,Layup,428,20100758,34.0443,0,0,-118.2698,4,4,0,2001-02,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,452,20100758,34.0463,-98,-2,-118.3678,2,4,0,2001-02,29,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,473,20100758,34.0253,64,19,-118.2058,1,4,0,2001-02,13,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/19/02,LAL vs. BOS,BOS
Driving Layup Shot,Layup,482,20100758,34.0443,0,0,-118.2698,0,4,0,2001-02,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/19/02,LAL vs. BOS,BOS
Jump Shot,Jump Shot,484,20100758,33.8653,16,179,-118.2538,0,4,0,2001-02,11,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/19/02,LAL vs. BOS,BOS
Reverse Layup Shot,Layup,18,20100768,34.0483,-10,-4,-118.2798,10,1,0,2001-02,3,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,62,20100768,34.0593,184,-15,-118.0858,4,1,0,2001-02,13,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/21/02,LAL @ CLE,CLE
Layup Shot,Layup,68,20100768,34.0403,18,4,-118.2518,3,1,0,2001-02,42,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,108,20100768,33.9973,-52,47,-118.3218,0,1,0,2001-02,28,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,110,20100768,33.9283,-162,116,-118.4318,0,1,0,2001-02,26,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/21/02,LAL @ CLE,CLE
Finger Roll Shot,Layup,199,20100768,34.0103,18,34,-118.2518,3,2,0,2001-02,30,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Layup Shot,Layup,209,20100768,34.0443,0,0,-118.2698,2,2,0,2001-02,45,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Fadeaway Jump Shot,Jump Shot,217,20100768,34.0103,91,34,-118.1788,2,2,0,2001-02,17,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,221,20100768,33.8753,-1,169,-118.2708,1,2,0,2001-02,41,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,232,20100768,34.0333,32,11,-118.2378,0,2,0,2001-02,41,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Finger Roll Shot,Layup,241,20100768,34.0273,24,17,-118.2458,0,2,0,2001-02,7,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Running Jump Shot,Jump Shot,258,20100768,33.9573,-10,87,-118.2798,10,3,0,2001-02,55,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,262,20100768,33.8883,98,156,-118.1718,10,3,0,2001-02,16,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,265,20100768,33.8483,3,196,-118.2668,9,3,0,2001-02,31,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,300,20100768,33.8353,-23,209,-118.2928,5,3,0,2001-02,7,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/21/02,LAL @ CLE,CLE
Driving Layup Shot,Layup,323,20100768,34.0403,11,4,-118.2588,2,3,0,2001-02,43,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,348,20100768,33.8813,-82,163,-118.3518,0,3,0,2001-02,28,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/21/02,LAL @ CLE,CLE
Fadeaway Jump Shot,Jump Shot,355,20100768,34.0553,157,-11,-118.1128,0,3,0,2001-02,0,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,432,20100768,33.8943,-23,150,-118.2928,3,4,0,2001-02,47,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,448,20100768,33.7853,18,259,-118.2518,2,4,0,2001-02,29,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/21/02,LAL @ CLE,CLE
Layup Shot,Layup,453,20100768,34.0443,-1,0,-118.2708,2,4,0,2001-02,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/02,LAL @ CLE,CLE
Fadeaway Jump Shot,Jump Shot,460,20100768,33.9513,3,93,-118.2668,0,4,0,2001-02,57,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/21/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,9,20100778,33.8203,-128,224,-118.3978,9,1,0,2001-02,54,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,39,20100778,33.7763,96,268,-118.1738,6,1,0,2001-02,4,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,87,20100778,33.9473,153,97,-118.1168,0,1,0,2001-02,59,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/22/02,LAL @ CHH,CHA
Alley Oop Dunk Shot,Dunk,102,20100778,34.0443,0,0,-118.2698,11,2,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,122,20100778,34.0143,68,30,-118.2018,8,2,0,2001-02,47,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,200,20100778,33.8813,68,163,-118.2018,3,2,0,2001-02,12,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,207,20100778,33.9303,108,114,-118.1618,2,2,0,2001-02,3,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,243,20100778,34.0253,-170,19,-118.4398,10,3,0,2001-02,33,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/22/02,LAL @ CHH,CHA
Follow Up Dunk Shot,Dunk,351,20100778,34.0443,0,0,-118.2698,0,3,0,2001-02,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/02,LAL @ CHH,CHA
Layup Shot,Layup,358,20100778,34.0443,0,0,-118.2698,11,4,0,2001-02,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,378,20100778,33.9873,222,57,-118.0478,9,4,0,2001-02,37,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,414,20100778,33.9873,24,57,-118.2458,5,4,0,2001-02,19,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/22/02,LAL @ CHH,CHA
Reverse Layup Shot,Layup,423,20100778,34.0443,0,0,-118.2698,4,4,0,2001-02,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,433,20100778,34.0253,-107,19,-118.3768,3,4,0,2001-02,34,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/22/02,LAL @ CHH,CHA
Layup Shot,Layup,439,20100778,34.0443,0,0,-118.2698,2,4,0,2001-02,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,474,20100778,33.9433,153,101,-118.1168,0,4,0,2001-02,0,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/22/02,LAL @ CHH,CHA
Jump Shot,Jump Shot,29,20100790,34.0503,121,-6,-118.1488,7,1,0,2001-02,22,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,51,20100790,33.8813,-143,163,-118.4128,4,1,0,2001-02,44,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/24/02,LAL @ NYK,NYK
Turnaround Jump Shot,Jump Shot,59,20100790,33.9813,62,63,-118.2078,3,1,0,2001-02,26,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/24/02,LAL @ NYK,NYK
Turnaround Jump Shot,Jump Shot,94,20100790,34.0573,-143,-13,-118.4128,0,1,0,2001-02,38,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,99,20100790,33.9113,87,133,-118.1828,0,1,0,2001-02,0,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,119,20100790,33.9743,-117,70,-118.3868,10,2,0,2001-02,16,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,190,20100790,33.8603,-168,184,-118.4378,3,2,0,2001-02,54,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/24/02,LAL @ NYK,NYK
Tip Shot,Tip Shot,211,20100790,34.0443,0,0,-118.2698,1,2,0,2001-02,59,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/24/02,LAL @ NYK,NYK
Layup Shot,Layup,254,20100790,34.0443,0,0,-118.2698,9,3,0,2001-02,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/24/02,LAL @ NYK,NYK
Tip Shot,Tip Shot,255,20100790,34.0443,0,0,-118.2698,9,3,0,2001-02,27,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,278,20100790,33.9593,-35,85,-118.3048,6,3,0,2001-02,52,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/24/02,LAL @ NYK,NYK
Layup Shot,Layup,292,20100790,34.0443,0,0,-118.2698,5,3,0,2001-02,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/24/02,LAL @ NYK,NYK
Driving Dunk Shot,Dunk,316,20100790,34.0443,0,0,-118.2698,2,3,0,2001-02,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,332,20100790,33.9113,37,133,-118.2328,0,3,0,2001-02,35,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,427,20100790,34.0373,-134,7,-118.4038,3,4,0,2001-02,10,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,451,20100790,34.0373,-101,7,-118.3708,0,4,0,2001-02,39,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/24/02,LAL @ NYK,NYK
Jump Shot,Jump Shot,10,20100803,34.0373,-105,7,-118.3748,10,1,0,2001-02,29,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/26/02,LAL @ MIL,MIL
Running Layup Shot,Layup,21,20100803,34.0443,0,0,-118.2698,8,1,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,30,20100803,33.9763,-162,68,-118.4318,7,1,0,2001-02,16,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/26/02,LAL @ MIL,MIL
Layup Shot,Layup,42,20100803,34.0443,0,0,-118.2698,6,1,0,2001-02,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Layup Shot,Layup,113,20100803,34.0443,0,0,-118.2698,11,2,0,2001-02,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,118,20100803,34.0463,-155,-2,-118.4248,10,2,0,2001-02,47,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/26/02,LAL @ MIL,MIL
Layup Shot,Layup,133,20100803,34.0443,0,0,-118.2698,9,2,0,2001-02,12,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,135,20100803,33.9533,-149,91,-118.4188,9,2,0,2001-02,2,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,163,20100803,33.8583,-185,186,-118.4548,5,2,0,2001-02,23,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/26/02,LAL @ MIL,MIL
Layup Shot,Layup,187,20100803,34.0443,0,0,-118.2698,3,2,0,2001-02,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Layup Shot,Layup,241,20100803,34.0443,0,0,-118.2698,10,3,0,2001-02,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,272,20100803,34.0633,144,-19,-118.1258,5,3,0,2001-02,34,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,276,20100803,33.8713,37,173,-118.2328,5,3,0,2001-02,5,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/26/02,LAL @ MIL,MIL
Layup Shot,Layup,289,20100803,34.0443,0,0,-118.2698,3,3,0,2001-02,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Layup Shot,Layup,297,20100803,34.0443,0,0,-118.2698,2,3,0,2001-02,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,311,20100803,33.9643,79,80,-118.1908,0,3,0,2001-02,54,11,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,322,20100803,33.9383,132,106,-118.1378,0,3,0,2001-02,1,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,364,20100803,34.0673,138,-23,-118.1318,8,4,0,2001-02,14,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,393,20100803,33.7913,123,253,-118.1468,3,4,0,2001-02,51,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/26/02,LAL @ MIL,MIL
Dunk Shot,Dunk,424,20100803,34.0443,0,0,-118.2698,1,4,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/02,LAL @ MIL,MIL
Jump Shot,Jump Shot,427,20100803,33.9933,167,51,-118.1028,0,4,0,2001-02,40,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/26/02,LAL @ MIL,MIL
Running Jump Shot,Jump Shot,10,20100816,34.0423,106,2,-118.1638,10,1,0,2001-02,38,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/27/02,LAL @ MIN,MIN
Layup Shot,Layup,15,20100816,34.0443,0,0,-118.2698,9,1,0,2001-02,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Layup Shot,Layup,29,20100816,34.0443,0,0,-118.2698,8,1,0,2001-02,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Alley Oop Layup shot,Layup,32,20100816,34.0443,0,0,-118.2698,8,1,0,2001-02,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,48,20100816,33.9093,144,135,-118.1258,5,1,0,2001-02,43,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/27/02,LAL @ MIN,MIN
Layup Shot,Layup,51,20100816,34.0443,0,0,-118.2698,5,1,0,2001-02,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Layup Shot,Layup,53,20100816,34.0443,0,0,-118.2698,5,1,0,2001-02,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Layup Shot,Layup,73,20100816,34.0443,0,0,-118.2698,3,1,0,2001-02,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,95,20100816,33.8903,150,154,-118.1198,0,1,0,2001-02,49,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,134,20100816,34.0083,85,36,-118.1848,8,2,0,2001-02,36,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,157,20100816,33.8543,70,190,-118.1998,6,2,0,2001-02,32,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/27/02,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,165,20100816,33.9323,5,112,-118.2648,5,2,0,2001-02,50,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/27/02,LAL @ MIN,MIN
Driving Layup Shot,Layup,217,20100816,34.0443,0,0,-118.2698,0,2,0,2001-02,55,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,219,20100816,33.8843,-67,160,-118.3368,0,2,0,2001-02,25,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,261,20100816,33.9433,136,101,-118.1338,7,3,0,2001-02,12,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/27/02,LAL @ MIN,MIN
Layup Shot,Layup,266,20100816,34.0443,0,0,-118.2698,6,3,0,2001-02,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,333,20100816,33.9433,-35,101,-118.3048,11,4,0,2001-02,36,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,341,20100816,34.0523,136,-8,-118.1338,10,4,0,2001-02,32,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,371,20100816,34.0523,188,-8,-118.0818,7,4,0,2001-02,21,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,377,20100816,34.0593,144,-15,-118.1258,6,4,0,2001-02,50,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/27/02,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,424,20100816,33.9953,-58,49,-118.3278,1,4,0,2001-02,40,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,438,20100816,34.0523,-204,-8,-118.4738,1,4,0,2001-02,6,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/27/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,58,20100830,33.8653,108,179,-118.1618,5,1,0,2001-02,6,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/1/02,LAL vs. IND,IND
Reverse Dunk Shot,Dunk,85,20100830,34.0443,0,0,-118.2698,1,1,0,2001-02,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,95,20100830,34.0313,174,13,-118.0958,1,1,0,2001-02,20,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,106,20100830,34.0313,123,13,-118.1468,0,1,0,2001-02,22,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,185,20100830,33.9343,153,110,-118.1168,4,2,0,2001-02,59,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,194,20100830,33.8713,-98,173,-118.3678,3,2,0,2001-02,57,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,211,20100830,34.0373,-77,7,-118.3468,2,2,0,2001-02,45,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/1/02,LAL vs. IND,IND
Driving Dunk Shot,Dunk,240,20100830,34.0443,0,0,-118.2698,0,2,0,2001-02,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/1/02,LAL vs. IND,IND
Driving Layup Shot,Layup,323,20100830,34.0443,0,0,-118.2698,4,3,0,2001-02,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,353,20100830,33.9683,-149,76,-118.4188,1,3,0,2001-02,8,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/1/02,LAL vs. IND,IND
Driving Layup Shot,Layup,357,20100830,34.0443,0,0,-118.2698,0,3,0,2001-02,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,437,20100830,33.8713,-149,173,-118.4188,5,4,0,2001-02,12,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,441,20100830,33.9913,-33,53,-118.3028,4,4,0,2001-02,40,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,537,20100830,33.8373,174,207,-118.0958,0,4,0,2001-02,6,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/1/02,LAL vs. IND,IND
Jump Shot,Jump Shot,7,20100865,33.8393,144,205,-118.1258,10,1,0,2001-02,57,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,48,20100865,34.0443,138,0,-118.1318,5,1,0,2001-02,1,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,50,20100865,33.8583,-33,186,-118.3028,4,1,0,2001-02,30,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,94,20100865,33.9473,153,97,-118.1168,1,1,0,2001-02,14,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,107,20100865,34.0233,51,21,-118.2188,0,1,0,2001-02,22,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/6/02,LAL @ UTA,UTA
Alley Oop Dunk Shot,Dunk,184,20100865,34.0443,0,0,-118.2698,4,2,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,234,20100865,33.6123,20,432,-118.2498,0,2,0,2001-02,0,43,1,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,252,20100865,34.0503,176,-6,-118.0938,9,3,0,2001-02,28,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/6/02,LAL @ UTA,UTA
Layup Shot,Layup,287,20100865,34.0443,0,0,-118.2698,4,3,0,2001-02,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/02,LAL @ UTA,UTA
Driving Layup Shot,Layup,321,20100865,34.0443,0,0,-118.2698,2,3,0,2001-02,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,334,20100865,33.8753,20,169,-118.2498,0,3,0,2001-02,32,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,345,20100865,33.8883,98,156,-118.1718,11,4,0,2001-02,36,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,357,20100865,34.0103,138,34,-118.1318,10,4,0,2001-02,57,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,456,20100865,33.9003,144,144,-118.1258,1,4,0,2001-02,4,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,474,20100865,34.0403,-244,4,-118.5138,0,4,0,2001-02,13,24,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,3/6/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,10,20100898,33.9153,-12,129,-118.2818,11,1,0,2001-02,1,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/10/02,LAL vs. NYK,NYK
Running Jump Shot,Jump Shot,61,20100898,33.9763,7,68,-118.2628,4,1,0,2001-02,59,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,63,20100898,33.9093,-4,135,-118.2738,4,1,0,2001-02,26,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,95,20100898,33.8523,-71,192,-118.3408,0,1,0,2001-02,0,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,195,20100898,34.0103,174,34,-118.0958,3,2,0,2001-02,31,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,202,20100898,33.8963,129,148,-118.1408,2,2,0,2001-02,58,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/10/02,LAL vs. NYK,NYK
Running Jump Shot,Jump Shot,225,20100898,33.9643,7,80,-118.2628,0,2,0,2001-02,36,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,243,20100898,33.9093,-105,135,-118.3748,10,3,0,2001-02,25,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,307,20100898,34.0213,64,23,-118.2058,2,3,0,2001-02,29,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,407,20100898,33.8923,1,152,-118.2688,4,4,0,2001-02,59,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,424,20100898,33.7803,-4,264,-118.2738,3,4,0,2001-02,6,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/10/02,LAL vs. NYK,NYK
Jump Shot,Jump Shot,15,20100914,33.9263,-84,118,-118.3538,10,1,0,2001-02,41,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,52,20100914,33.9033,123,141,-118.1468,6,1,0,2001-02,2,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,81,20100914,34.0143,-155,30,-118.4248,3,1,0,2001-02,21,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,88,20100914,33.8813,-98,163,-118.3678,2,1,0,2001-02,50,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Fadeaway Jump Shot,Jump Shot,94,20100914,34.0213,-191,23,-118.4608,2,1,0,2001-02,5,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,102,20100914,33.8713,-84,173,-118.3538,0,1,0,2001-02,31,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,194,20100914,33.8583,-119,186,-118.3888,3,2,0,2001-02,45,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,199,20100914,34.0373,-128,7,-118.3978,3,2,0,2001-02,13,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,218,20100914,33.8963,115,148,-118.1548,1,2,0,2001-02,42,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Running Jump Shot,Jump Shot,241,20100914,33.9643,1,80,-118.2688,10,3,0,2001-02,37,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,259,20100914,33.9593,144,85,-118.1258,8,3,0,2001-02,17,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,271,20100914,33.8863,-71,158,-118.3408,6,3,0,2001-02,23,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/12/02,LAL vs. CHH,CHA
Follow Up Dunk Shot,Dunk,284,20100914,34.0443,0,0,-118.2698,5,3,0,2001-02,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/02,LAL vs. CHH,CHA
Jump Shot,Jump Shot,331,20100914,33.8083,94,236,-118.1758,1,3,0,2001-02,14,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/12/02,LAL vs. CHH,CHA
Driving Layup Shot,Layup,6,20100926,34.0443,0,0,-118.2698,11,1,0,2001-02,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,15,20100926,33.9113,136,133,-118.1338,10,1,0,2001-02,35,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/14/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,37,20100926,33.8943,142,150,-118.1278,7,1,0,2001-02,45,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/14/02,LAL @ GSW,GSW
Driving Layup Shot,Layup,46,20100926,34.0443,0,0,-118.2698,7,1,0,2001-02,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,55,20100926,34.0503,-130,-6,-118.3998,5,1,0,2001-02,50,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/14/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,131,20100926,34.0043,58,40,-118.2118,0,1,0,2001-02,31,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Dunk Shot,Dunk,133,20100926,34.0443,0,0,-118.2698,0,1,0,2001-02,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Layup Shot,Layup,186,20100926,34.0183,22,26,-118.2478,6,2,0,2001-02,37,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,219,20100926,34.0443,0,0,-118.2698,4,2,0,2001-02,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Reverse Layup Shot,Layup,236,20100926,34.0443,0,0,-118.2698,2,2,0,2001-02,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,249,20100926,33.9053,-109,139,-118.3788,0,2,0,2001-02,47,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/14/02,LAL @ GSW,GSW
Reverse Layup Shot,Layup,291,20100926,34.0443,0,0,-118.2698,8,3,0,2001-02,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Driving Layup Shot,Layup,300,20100926,34.0443,0,0,-118.2698,7,3,0,2001-02,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,10,20100934,33.8523,7,192,-118.2628,10,1,0,2001-02,26,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/15/02,LAL vs. LAC,LAC
Layup Shot,Layup,20,20100934,34.0443,0,0,-118.2698,9,1,0,2001-02,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,25,20100934,34.0143,123,30,-118.1468,8,1,0,2001-02,49,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,31,20100934,34.0313,-206,13,-118.4758,8,1,0,2001-02,18,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,118,20100934,33.9933,-149,51,-118.4188,11,2,0,2001-02,36,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,125,20100934,33.9593,64,85,-118.2058,10,2,0,2001-02,48,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/15/02,LAL vs. LAC,LAC
Layup Shot,Layup,129,20100934,34.0443,0,0,-118.2698,10,2,0,2001-02,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,204,20100934,33.9473,188,97,-118.0818,3,2,0,2001-02,12,21,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,206,20100934,33.9933,-42,51,-118.3118,2,2,0,2001-02,46,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/15/02,LAL vs. LAC,LAC
Running Hook Shot,Hook Shot,221,20100934,33.9643,-27,80,-118.2968,1,2,0,2001-02,12,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,223,20100934,33.8653,94,179,-118.1758,0,2,0,2001-02,39,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/15/02,LAL vs. LAC,LAC
Driving Finger Roll Shot,Layup,248,20100934,33.9873,-4,57,-118.2738,9,3,0,2001-02,4,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/15/02,LAL vs. LAC,LAC
Layup Shot,Layup,258,20100934,34.0443,0,0,-118.2698,8,3,0,2001-02,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,294,20100934,33.9433,123,101,-118.1468,5,3,0,2001-02,4,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,333,20100934,33.8713,94,173,-118.1758,2,3,0,2001-02,13,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,353,20100934,33.9303,-128,114,-118.3978,0,3,0,2001-02,35,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/15/02,LAL vs. LAC,LAC
Fadeaway Jump Shot,Jump Shot,423,20100934,33.9303,-4,114,-118.2738,6,4,0,2001-02,19,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,445,20100934,33.7873,-42,257,-118.3118,4,4,0,2001-02,18,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,465,20100934,33.7913,-12,253,-118.2818,2,4,0,2001-02,28,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/15/02,LAL vs. LAC,LAC
Jump Shot,Jump Shot,15,20100950,33.8583,43,186,-118.2268,9,1,0,2001-02,35,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/17/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,98,20100950,33.9363,-63,108,-118.3328,0,1,0,2001-02,38,12,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/17/02,LAL vs. DAL,DAL
Driving Dunk Shot,Dunk,207,20100950,34.0443,0,0,-118.2698,0,2,0,2001-02,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/02,LAL vs. DAL,DAL
Reverse Layup Shot,Layup,261,20100950,34.0443,0,0,-118.2698,6,3,0,2001-02,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/02,LAL vs. DAL,DAL
Fadeaway Jump Shot,Jump Shot,290,20100950,34.0633,146,-19,-118.1238,4,3,0,2001-02,30,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/17/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,317,20100950,33.9383,102,106,-118.1678,1,3,0,2001-02,41,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/17/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,324,20100950,33.7783,-4,266,-118.2738,1,3,0,2001-02,15,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/17/02,LAL vs. DAL,DAL
Layup Shot,Layup,333,20100950,34.0443,0,0,-118.2698,0,3,0,2001-02,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,345,20100950,33.9813,37,63,-118.2328,11,4,0,2001-02,6,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/17/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,347,20100950,33.9683,1,76,-118.2688,10,4,0,2001-02,40,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/17/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,360,20100950,33.9513,30,93,-118.2398,9,4,0,2001-02,3,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/17/02,LAL vs. DAL,DAL
Dunk Shot,Dunk,427,20100950,34.0443,0,0,-118.2698,1,4,0,2001-02,49,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,432,20100950,33.8753,-147,169,-118.4168,1,4,0,2001-02,7,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/17/02,LAL vs. DAL,DAL
Fadeaway Jump Shot,Jump Shot,51,20100962,33.9893,-145,55,-118.4148,5,1,0,2001-02,53,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/19/02,LAL @ DAL,DAL
Layup Shot,Layup,105,20100962,34.0443,0,0,-118.2698,1,1,0,2001-02,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,114,20100962,33.9553,119,89,-118.1508,1,1,0,2001-02,7,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,128,20100962,33.9783,104,66,-118.1658,0,1,0,2001-02,11,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,206,20100962,34.0163,125,28,-118.1448,3,2,0,2001-02,35,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/02,LAL @ DAL,DAL
Layup Shot,Layup,241,20100962,34.0443,0,0,-118.2698,1,2,0,2001-02,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,272,20100962,33.9003,-115,144,-118.3848,9,3,0,2001-02,49,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,293,20100962,34.0293,-44,15,-118.3138,7,3,0,2001-02,14,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,320,20100962,33.8673,-71,177,-118.3408,4,3,0,2001-02,25,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,350,20100962,34.0293,-109,15,-118.3788,2,3,0,2001-02,27,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/19/02,LAL @ DAL,DAL
Driving Layup Shot,Layup,359,20100962,34.0443,0,0,-118.2698,1,3,0,2001-02,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,450,20100962,33.9893,-16,55,-118.2858,5,4,0,2001-02,5,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,459,20100962,33.8943,-202,150,-118.4718,3,4,0,2001-02,56,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,482,20100962,33.9323,-178,112,-118.4478,2,4,0,2001-02,7,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/19/02,LAL @ DAL,DAL
Driving Layup Shot,Layup,499,20100962,34.0443,0,0,-118.2698,0,4,0,2001-02,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/02,LAL @ DAL,DAL
Layup Shot,Layup,11,20100970,34.0403,11,4,-118.2588,10,1,0,2001-02,41,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/20/02,LAL @ SAS,SAS
Running Jump Shot,Jump Shot,69,20100970,34.0403,113,4,-118.1568,4,1,0,2001-02,13,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/20/02,LAL @ SAS,SAS
Layup Shot,Layup,75,20100970,34.0353,-1,9,-118.2708,3,1,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,84,20100970,33.9683,-109,76,-118.3788,2,1,0,2001-02,32,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,97,20100970,33.9683,98,76,-118.1718,1,1,0,2001-02,24,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/20/02,LAL @ SAS,SAS
Turnaround Hook Shot,Hook Shot,127,20100970,33.9813,-124,63,-118.3938,10,2,0,2001-02,32,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/20/02,LAL @ SAS,SAS
Layup Shot,Layup,130,20100970,34.0403,11,4,-118.2588,10,2,0,2001-02,4,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,137,20100970,33.9973,24,47,-118.2458,8,2,0,2001-02,56,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,250,20100970,33.9743,70,70,-118.1998,10,3,0,2001-02,49,9,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,274,20100970,33.9813,-1,63,-118.2708,8,3,0,2001-02,42,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,310,20100970,34.0143,-124,30,-118.3938,5,3,0,2001-02,12,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,326,20100970,34.0353,62,9,-118.2078,4,3,0,2001-02,5,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,337,20100970,33.9193,-46,125,-118.3158,2,3,0,2001-02,34,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,3,20100986,33.9093,-16,135,-118.2858,11,1,0,2001-02,43,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,22,20100986,33.9033,119,141,-118.1508,9,1,0,2001-02,32,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/22/02,LAL vs. DET,DET
Running Jump Shot,Jump Shot,78,20100986,33.8963,-109,148,-118.3788,2,1,0,2001-02,43,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,84,20100986,33.9363,83,108,-118.1868,2,1,0,2001-02,1,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/22/02,LAL vs. DET,DET
Driving Finger Roll Shot,Layup,96,20100986,34.0443,0,0,-118.2698,1,1,0,2001-02,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,98,20100986,33.8923,132,152,-118.1378,0,1,0,2001-02,39,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/22/02,LAL vs. DET,DET
Turnaround Jump Shot,Jump Shot,101,20100986,34.0293,161,15,-118.1088,0,1,0,2001-02,3,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,107,20100986,33.8883,16,156,-118.2538,11,2,0,2001-02,46,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/22/02,LAL vs. DET,DET
Driving Layup Shot,Layup,186,20100986,34.0443,0,0,-118.2698,5,2,0,2001-02,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,404,20100986,34.0463,-126,-2,-118.3958,7,4,0,2001-02,53,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,416,20100986,34.0143,203,30,-118.0668,6,4,0,2001-02,35,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,424,20100986,33.9853,-168,59,-118.4378,5,4,0,2001-02,55,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,465,20100986,33.8523,81,192,-118.1888,2,4,0,2001-02,9,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/22/02,LAL vs. DET,DET
Jump Shot,Jump Shot,9,20101000,34.0373,37,7,-118.2328,10,1,0,2001-02,43,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,12,20101000,33.8943,142,150,-118.1278,10,1,0,2001-02,8,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/24/02,LAL @ SAC,SAC
Driving Layup Shot,Layup,33,20101000,34.0443,0,0,-118.2698,8,1,0,2001-02,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,42,20101000,34.0163,-48,28,-118.3178,7,1,0,2001-02,32,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/24/02,LAL @ SAC,SAC
Driving Layup Shot,Layup,91,20101000,34.0443,0,0,-118.2698,1,1,0,2001-02,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,115,20101000,33.8843,16,160,-118.2538,0,1,0,2001-02,28,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/24/02,LAL @ SAC,SAC
Driving Layup Shot,Layup,143,20101000,34.0443,0,0,-118.2698,10,2,0,2001-02,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,154,20101000,33.9593,43,85,-118.2268,9,2,0,2001-02,13,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,319,20101000,33.9173,-111,127,-118.3808,4,3,0,2001-02,8,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,343,20101000,33.9323,85,112,-118.1848,1,3,0,2001-02,37,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,351,20101000,34.0103,121,34,-118.1488,1,3,0,2001-02,5,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,353,20101000,34.0103,150,34,-118.1198,0,3,0,2001-02,41,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,360,20101000,33.7493,191,295,-118.0788,0,3,0,2001-02,0,35,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,410,20101000,33.9513,163,93,-118.1068,5,4,0,2001-02,34,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,422,20101000,33.9173,58,127,-118.2118,4,4,0,2001-02,28,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/24/02,LAL @ SAC,SAC
Running Hook Shot,Hook Shot,436,20101000,34.0103,43,34,-118.2268,3,4,0,2001-02,8,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,444,20101000,33.9513,136,93,-118.1338,2,4,0,2001-02,13,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/24/02,LAL @ SAC,SAC
Driving Layup Shot,Layup,461,20101000,34.0443,0,0,-118.2698,1,4,0,2001-02,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/02,LAL @ SAC,SAC
Fadeaway Jump Shot,Jump Shot,472,20101000,33.9933,150,51,-118.1198,0,4,0,2001-02,36,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/24/02,LAL @ SAC,SAC
Jump Shot,Jump Shot,30,20101016,33.8673,18,177,-118.2518,8,1,0,2001-02,34,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/26/02,LAL vs. CLE,CLE
Jump Shot,Jump Shot,43,20101016,33.8223,125,222,-118.1448,6,1,0,2001-02,25,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/26/02,LAL vs. CLE,CLE
Layup Shot,Layup,70,20101016,34.0443,0,0,-118.2698,3,1,0,2001-02,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/02,LAL vs. CLE,CLE
Jump Shot,Jump Shot,77,20101016,33.8633,119,181,-118.1508,2,1,0,2001-02,49,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/26/02,LAL vs. CLE,CLE
Turnaround Jump Shot,Jump Shot,128,20101016,33.7763,-23,268,-118.2928,11,2,0,2001-02,16,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/26/02,LAL vs. CLE,CLE
Jump Shot,Jump Shot,273,20101016,33.9263,-145,118,-118.4148,7,3,0,2001-02,6,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/26/02,LAL vs. CLE,CLE
Reverse Layup Shot,Layup,301,20101016,34.0443,0,0,-118.2698,4,3,0,2001-02,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/02,LAL vs. CLE,CLE
Fadeaway Jump Shot,Jump Shot,313,20101016,33.9663,125,78,-118.1448,3,3,0,2001-02,29,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/26/02,LAL vs. CLE,CLE
Jump Shot,Jump Shot,40,20101022,33.8943,-117,150,-118.3868,7,1,0,2001-02,5,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/27/02,LAL @ PHX,PHX
Tip Shot,Tip Shot,72,20101022,34.0443,0,0,-118.2698,3,1,0,2001-02,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,79,20101022,34.0143,134,30,-118.1358,2,1,0,2001-02,58,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/27/02,LAL @ PHX,PHX
Reverse Layup Shot,Layup,89,20101022,34.0443,0,0,-118.2698,2,1,0,2001-02,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,99,20101022,34.0293,-176,15,-118.4458,0,1,0,2001-02,44,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/27/02,LAL @ PHX,PHX
Layup Shot,Layup,118,20101022,34.0443,0,0,-118.2698,11,2,0,2001-02,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,189,20101022,33.9893,127,55,-118.1428,5,2,0,2001-02,32,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/27/02,LAL @ PHX,PHX
Layup Shot,Layup,204,20101022,34.0443,0,0,-118.2698,4,2,0,2001-02,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Layup Shot,Layup,210,20101022,34.0443,0,0,-118.2698,3,2,0,2001-02,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Layup Shot,Layup,224,20101022,34.0443,0,0,-118.2698,2,2,0,2001-02,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,231,20101022,33.9853,-31,59,-118.3008,1,2,0,2001-02,14,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,274,20101022,33.9783,-10,66,-118.2798,8,3,0,2001-02,12,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,283,20101022,33.8603,178,184,-118.0918,6,3,0,2001-02,56,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,299,20101022,34.0443,-124,0,-118.3938,5,3,0,2001-02,20,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,301,20101022,33.9513,3,93,-118.2668,4,3,0,2001-02,45,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,352,20101022,33.9683,127,76,-118.1428,0,3,0,2001-02,37,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,354,20101022,34.0403,148,4,-118.1218,0,3,0,2001-02,4,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/27/02,LAL @ PHX,PHX
Jump Shot,Jump Shot,8,20101040,33.8863,-71,158,-118.3408,10,1,0,2001-02,22,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,17,20101040,33.8923,-101,152,-118.3708,9,1,0,2001-02,3,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,50,20101040,33.8293,-29,215,-118.2988,6,1,0,2001-02,32,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,53,20101040,33.8463,110,198,-118.1598,5,1,0,2001-02,59,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,59,20101040,33.9723,-145,72,-118.4148,5,1,0,2001-02,9,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Fadeaway Jump Shot,Jump Shot,69,20101040,33.8923,83,152,-118.1868,4,1,0,2001-02,31,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,76,20101040,34.0183,-202,26,-118.4718,3,1,0,2001-02,51,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,87,20101040,33.8633,-1,181,-118.2708,2,1,0,2001-02,52,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Running Jump Shot,Jump Shot,102,20101040,33.9033,3,141,-118.2668,1,1,0,2001-02,18,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,250,20101040,33.8653,75,179,-118.1948,0,2,0,2001-02,0,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Running Jump Shot,Jump Shot,273,20101040,33.9973,-46,47,-118.3158,9,3,0,2001-02,25,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,286,20101040,34.0463,-117,-2,-118.3868,8,3,0,2001-02,23,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,293,20101040,33.9623,1,82,-118.2688,6,3,0,2001-02,44,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,305,20101040,34.0313,138,13,-118.1318,5,3,0,2001-02,36,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,313,20101040,33.8943,117,150,-118.1528,4,3,0,2001-02,54,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Layup Shot,Layup,323,20101040,34.0443,0,0,-118.2698,3,3,0,2001-02,44,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/29/02,LAL vs. POR,POR
Driving Layup Shot,Layup,330,20101040,34.0443,0,0,-118.2698,3,3,0,2001-02,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,333,20101040,33.9453,129,99,-118.1408,2,3,0,2001-02,55,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Alley Oop Dunk Shot,Dunk,344,20101040,34.0443,0,0,-118.2698,2,3,0,2001-02,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,375,20101040,33.8253,174,219,-118.0958,0,3,0,2001-02,0,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,386,20101040,34.0423,165,2,-118.1048,10,4,0,2001-02,25,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/29/02,LAL vs. POR,POR
Turnaround Jump Shot,Jump Shot,397,20101040,34.0593,150,-15,-118.1198,9,4,0,2001-02,13,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/29/02,LAL vs. POR,POR
Jump Shot,Jump Shot,27,20101055,33.9093,85,135,-118.1848,9,1,0,2001-02,2,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,30,20101055,33.9473,37,97,-118.2328,8,1,0,2001-02,31,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/31/02,LAL vs. SAS,SAS
Driving Layup Shot,Layup,85,20101055,34.0443,0,0,-118.2698,2,1,0,2001-02,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,97,20101055,33.9833,37,61,-118.2328,2,1,0,2001-02,14,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,103,20101055,33.9933,-27,51,-118.2968,1,1,0,2001-02,22,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Driving Layup Shot,Layup,108,20101055,34.0443,0,0,-118.2698,0,1,0,2001-02,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Turnaround Jump Shot,Jump Shot,115,20101055,33.9193,85,125,-118.1848,0,1,0,2001-02,4,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,128,20101055,33.9593,22,85,-118.2478,11,2,0,2001-02,17,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,132,20101055,33.9473,51,97,-118.2188,11,2,0,2001-02,2,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,170,20101055,33.9473,153,97,-118.1168,7,2,0,2001-02,53,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,175,20101055,33.9763,-119,68,-118.3888,7,2,0,2001-02,9,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/31/02,LAL vs. SAS,SAS
Turnaround Jump Shot,Jump Shot,187,20101055,34.0333,123,11,-118.1468,6,2,0,2001-02,4,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/31/02,LAL vs. SAS,SAS
Follow Up Dunk Shot,Dunk,216,20101055,34.0443,0,0,-118.2698,2,2,0,2001-02,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,262,20101055,34.0443,0,0,-118.2698,10,3,0,2001-02,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,268,20101055,33.9193,-141,125,-118.4108,9,3,0,2001-02,55,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,280,20101055,34.0233,51,21,-118.2188,7,3,0,2001-02,42,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Layup Shot,Layup,317,20101055,34.0443,0,0,-118.2698,4,3,0,2001-02,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,367,20101055,33.8923,7,152,-118.2628,11,4,0,2001-02,8,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/31/02,LAL vs. SAS,SAS
Layup Shot,Layup,410,20101055,34.0443,0,0,-118.2698,7,4,0,2001-02,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,424,20101055,34.0333,138,11,-118.1318,5,4,0,2001-02,44,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/31/02,LAL vs. SAS,SAS
Layup Shot,Layup,482,20101055,34.0443,0,0,-118.2698,0,4,0,2001-02,33,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/02,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,2,20101057,34.0803,140,-36,-118.1298,11,1,0,2001-02,45,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/2/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,40,20101057,34.0373,54,7,-118.2158,7,1,0,2001-02,29,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/2/02,LAL @ WAS,WAS
Driving Layup Shot,Layup,70,20101057,34.0423,-4,2,-118.2738,4,1,0,2001-02,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/02,LAL @ WAS,WAS
Slam Dunk Shot,Dunk,74,20101057,34.0423,1,2,-118.2688,3,1,0,2001-02,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,103,20101057,34.0463,-170,-2,-118.4398,1,1,0,2001-02,17,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/2/02,LAL @ WAS,WAS
Running Dunk Shot,Dunk,106,20101057,34.0523,-4,-8,-118.2738,1,1,0,2001-02,7,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,128,20101057,34.0523,182,-8,-118.0878,10,2,0,2001-02,28,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/2/02,LAL @ WAS,WAS
Slam Dunk Shot,Dunk,184,20101057,34.0523,-12,-8,-118.2818,6,2,0,2001-02,4,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,190,20101057,33.9303,16,114,-118.2538,4,2,0,2001-02,59,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/2/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,197,20101057,33.9973,75,47,-118.1948,3,2,0,2001-02,11,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/2/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,265,20101057,33.9193,60,125,-118.2098,8,3,0,2001-02,8,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/2/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,26,20101069,33.8253,-35,219,-118.3048,8,1,0,2001-02,22,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/3/02,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,32,20101069,34.0443,-132,0,-118.4018,7,1,0,2001-02,8,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,61,20101069,33.8793,-67,165,-118.3368,4,1,0,2001-02,18,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/3/02,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,88,20101069,33.8793,11,165,-118.2588,1,1,0,2001-02,37,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,170,20101069,34.0103,150,34,-118.1198,5,2,0,2001-02,11,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,175,20101069,33.9683,167,76,-118.1028,4,2,0,2001-02,37,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,223,20101069,33.8583,85,186,-118.1848,0,2,0,2001-02,1,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,230,20101069,34.0163,-141,28,-118.4108,11,3,0,2001-02,11,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Running Jump Shot,Jump Shot,238,20101069,34.0253,-75,19,-118.3448,9,3,0,2001-02,56,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,252,20101069,33.9343,70,110,-118.1998,7,3,0,2001-02,37,13,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/3/02,LAL @ NJN,NJN
Fadeaway Jump Shot,Jump Shot,256,20101069,34.0373,136,7,-118.1338,6,3,0,2001-02,57,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,272,20101069,33.9153,-101,129,-118.3708,4,3,0,2001-02,45,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/3/02,LAL @ NJN,NJN
Fadeaway Jump Shot,Jump Shot,289,20101069,33.9683,127,76,-118.1428,2,3,0,2001-02,51,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,305,20101069,34.0103,94,34,-118.1758,1,3,0,2001-02,34,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,311,20101069,34.0443,150,0,-118.1198,0,3,0,2001-02,34,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Driving Layup Shot,Layup,332,20101069,34.0443,0,0,-118.2698,10,4,0,2001-02,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/02,LAL @ NJN,NJN
Driving Layup Shot,Layup,336,20101069,34.0443,0,0,-118.2698,10,4,0,2001-02,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,346,20101069,33.7853,54,259,-118.2158,9,4,0,2001-02,15,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/3/02,LAL @ NJN,NJN
Layup Shot,Layup,365,20101069,34.0443,0,0,-118.2698,6,4,0,2001-02,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,372,20101069,34.0503,144,-6,-118.1258,6,4,0,2001-02,4,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,397,20101069,33.8673,62,177,-118.2078,2,4,0,2001-02,57,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/3/02,LAL @ NJN,NJN
Layup Shot,Layup,437,20101069,34.0443,0,0,-118.2698,0,4,0,2001-02,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,4,20101084,33.9073,11,137,-118.2588,11,1,0,2001-02,30,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,22,20101084,33.9893,169,55,-118.1008,8,1,0,2001-02,56,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,64,20101084,33.9593,24,85,-118.2458,4,1,0,2001-02,47,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,67,20101084,33.8353,142,209,-118.1278,4,1,0,2001-02,25,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,110,20101084,34.0443,142,0,-118.1278,1,1,0,2001-02,27,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,118,20101084,33.8943,-132,150,-118.4018,0,1,0,2001-02,39,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,131,20101084,33.9663,127,78,-118.1428,11,2,0,2001-02,48,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,136,20101084,33.9113,142,133,-118.1278,11,2,0,2001-02,20,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,204,20101084,33.9223,163,122,-118.1068,4,2,0,2001-02,42,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,213,20101084,33.8943,148,150,-118.1218,4,2,0,2001-02,4,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,218,20101084,33.8943,-88,150,-118.3578,3,2,0,2001-02,31,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,233,20101084,33.9323,163,112,-118.1068,2,2,0,2001-02,16,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,239,20101084,33.8793,-109,165,-118.3788,1,2,0,2001-02,17,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,249,20101084,34.0573,142,-13,-118.1278,0,2,0,2001-02,11,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,260,20101084,33.8583,16,186,-118.2538,11,3,0,2001-02,39,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,265,20101084,34.0503,-170,-6,-118.4398,11,3,0,2001-02,5,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,271,20101084,33.9433,129,101,-118.1408,10,3,0,2001-02,6,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,287,20101084,33.9913,7,53,-118.2628,8,3,0,2001-02,30,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/5/02,LAL @ BOS,BOS
Layup Shot,Layup,299,20101084,34.0403,16,4,-118.2538,7,3,0,2001-02,38,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/5/02,LAL @ BOS,BOS
Layup Shot,Layup,319,20101084,34.0503,16,-6,-118.2538,5,3,0,2001-02,22,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,434,20101084,33.8963,-27,148,-118.2968,6,4,0,2001-02,9,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,438,20101084,33.8813,108,163,-118.1618,5,4,0,2001-02,35,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,449,20101084,33.9873,-42,57,-118.3118,4,4,0,2001-02,34,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/5/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,452,20101084,33.8713,-221,173,-118.4908,3,4,0,2001-02,59,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/5/02,LAL @ BOS,BOS
Layup Shot,Layup,457,20101084,34.0443,22,0,-118.2478,3,4,0,2001-02,42,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/5/02,LAL @ BOS,BOS
Driving Layup Shot,Layup,2,20101100,34.0443,0,0,-118.2698,11,1,0,2001-02,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/7/02,LAL @ MIA,MIA
Reverse Layup Shot,Layup,30,20101100,34.0443,0,0,-118.2698,8,1,0,2001-02,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,99,20101100,33.9593,-132,85,-118.4018,1,1,0,2001-02,24,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,104,20101100,34.0123,-176,32,-118.4458,0,1,0,2001-02,34,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,156,20101100,34.0403,184,4,-118.0858,6,2,0,2001-02,5,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,192,20101100,34.0403,157,4,-118.1128,1,2,0,2001-02,37,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,217,20101100,33.9363,134,108,-118.1358,11,3,0,2001-02,26,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,228,20101100,33.9153,98,129,-118.1718,9,3,0,2001-02,39,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,300,20101100,34.0443,178,0,-118.0918,1,3,0,2001-02,13,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/7/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,13,20101121,33.9873,153,57,-118.1168,10,1,0,2001-02,41,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/9/02,LAL vs. UTA,UTA
Driving Layup Shot,Layup,79,20101121,34.0443,0,0,-118.2698,4,1,0,2001-02,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/02,LAL vs. UTA,UTA
Turnaround Jump Shot,Jump Shot,88,20101121,34.0163,94,28,-118.1758,4,1,0,2001-02,5,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/9/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,112,20101121,33.9533,-98,91,-118.3678,1,1,0,2001-02,38,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/9/02,LAL vs. UTA,UTA
Fadeaway Jump Shot,Jump Shot,119,20101121,33.9473,-105,97,-118.3748,0,1,0,2001-02,32,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/9/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,129,20101121,33.8863,100,158,-118.1698,11,2,0,2001-02,16,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/9/02,LAL vs. UTA,UTA
Reverse Dunk Shot,Dunk,306,20101121,34.0443,0,0,-118.2698,6,3,0,2001-02,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,328,20101121,34.0333,144,11,-118.1258,4,3,0,2001-02,50,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/9/02,LAL vs. UTA,UTA
Fadeaway Jump Shot,Jump Shot,381,20101121,34.0593,144,-15,-118.1258,0,3,0,2001-02,0,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/9/02,LAL vs. UTA,UTA
Alley Oop Layup shot,Layup,385,20101121,34.0443,0,0,-118.2698,11,4,0,2001-02,49,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,396,20101121,33.8633,43,181,-118.2268,11,4,0,2001-02,13,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/9/02,LAL vs. UTA,UTA
Turnaround Jump Shot,Jump Shot,414,20101121,33.9663,-42,78,-118.3118,8,4,0,2001-02,58,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/9/02,LAL vs. UTA,UTA
Driving Layup Shot,Layup,8,20101136,34.0443,0,0,-118.2698,10,1,0,2001-02,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,19,20101136,33.9113,-101,133,-118.3708,9,1,0,2001-02,18,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,50,20101136,34.0573,-115,-13,-118.3848,5,1,0,2001-02,30,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/11/02,LAL vs. MIN,MIN
Finger Roll Shot,Layup,95,20101136,34.0183,35,26,-118.2348,1,1,0,2001-02,52,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,105,20101136,34.0573,83,-13,-118.1868,0,1,0,2001-02,37,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/11/02,LAL vs. MIN,MIN
Driving Dunk Shot,Dunk,200,20101136,34.0443,0,0,-118.2698,3,2,0,2001-02,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/11/02,LAL vs. MIN,MIN
Layup Shot,Layup,222,20101136,34.0443,0,0,-118.2698,0,2,0,2001-02,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/11/02,LAL vs. MIN,MIN
Fadeaway Jump Shot,Jump Shot,229,20101136,33.9223,-6,122,-118.2758,0,2,0,2001-02,0,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,234,20101136,33.8943,121,150,-118.1488,11,3,0,2001-02,16,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/11/02,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,257,20101136,34.0123,-94,32,-118.3638,8,3,0,2001-02,24,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,266,20101136,34.0063,-73,38,-118.3428,6,3,0,2001-02,41,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,4/11/02,LAL vs. MIN,MIN
Reverse Layup Shot,Layup,282,20101136,34.0443,0,0,-118.2698,4,3,0,2001-02,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,297,20101136,33.8373,-50,207,-118.3198,3,3,0,2001-02,58,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,396,20101136,33.9173,121,127,-118.1488,8,4,0,2001-02,39,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,399,20101136,33.7913,-101,253,-118.3708,8,4,0,2001-02,21,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/11/02,LAL vs. MIN,MIN
Turnaround Jump Shot,Jump Shot,471,20101136,33.9453,5,99,-118.2648,1,4,0,2001-02,55,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,482,20101136,34.0423,172,2,-118.0978,0,4,0,2001-02,54,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,491,20101136,34.0123,-143,32,-118.4128,0,4,0,2001-02,19,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/11/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,16,20101159,34.0183,43,26,-118.2268,10,1,0,2001-02,25,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,103,20101159,33.9193,-212,125,-118.4818,0,1,0,2001-02,24,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/14/02,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,121,20101159,34.0483,172,-4,-118.0978,10,2,0,2001-02,57,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/14/02,LAL @ POR,POR
Driving Layup Shot,Layup,230,20101159,34.0443,0,0,-118.2698,2,2,0,2001-02,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,236,20101159,34.0183,180,26,-118.0898,1,2,0,2001-02,49,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,331,20101159,34.0183,115,26,-118.1548,1,3,0,2001-02,57,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,370,20101159,34.0293,115,15,-118.1548,10,4,0,2001-02,25,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/14/02,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,418,20101159,33.9473,73,97,-118.1968,5,4,0,2001-02,7,12,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,455,20101159,34.0443,64,0,-118.2058,2,4,0,2001-02,10,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,493,20101159,33.9473,-69,97,-118.3388,4,5,0,2001-02,33,11,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,4/14/02,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,518,20101159,33.9093,108,135,-118.1618,1,5,0,2001-02,35,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,584,20101159,33.8883,-185,156,-118.4548,1,6,0,2001-02,19,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/14/02,LAL @ POR,POR
Jump Shot,Jump Shot,43,20101164,33.8463,159,198,-118.1108,5,1,0,2001-02,43,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/15/02,LAL vs. SEA,SEA
Jump Shot,Jump Shot,221,20101164,33.9723,79,72,-118.1908,10,3,0,2001-02,52,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/15/02,LAL vs. SEA,SEA
Reverse Layup Shot,Layup,224,20101164,34.0443,0,0,-118.2698,10,3,0,2001-02,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/02,LAL vs. SEA,SEA
Tip Shot,Tip Shot,228,20101164,34.0443,0,0,-118.2698,9,3,0,2001-02,48,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/02,LAL vs. SEA,SEA
Alley Oop Dunk Shot,Dunk,285,20101164,34.0443,0,0,-118.2698,4,3,0,2001-02,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/02,LAL vs. SEA,SEA
Jump Shot,Jump Shot,290,20101164,33.8753,79,169,-118.1908,3,3,0,2001-02,33,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/15/02,LAL vs. SEA,SEA
Jump Shot,Jump Shot,310,20101164,34.0443,222,0,-118.0478,2,3,0,2001-02,9,22,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,4/15/02,LAL vs. SEA,SEA
Jump Shot,Jump Shot,313,20101164,33.8123,-134,232,-118.4038,1,3,0,2001-02,34,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/15/02,LAL vs. SEA,SEA
Jump Shot,Jump Shot,383,20101164,33.8693,79,175,-118.1908,6,4,0,2001-02,58,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/15/02,LAL vs. SEA,SEA
Alley Oop Layup shot,Layup,403,20101164,34.0443,0,0,-118.2698,5,4,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/02,LAL vs. SEA,SEA
Jump Shot,Jump Shot,410,20101164,34.0553,123,-11,-118.1468,5,4,0,2001-02,17,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/15/02,LAL vs. SEA,SEA
Jump Shot,Jump Shot,18,20101188,34.0653,159,-21,-118.1108,10,1,0,2001-02,20,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/17/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,31,20101188,33.9193,210,125,-118.0598,9,1,0,2001-02,1,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/17/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,40,20101188,33.8223,-141,222,-118.4108,7,1,0,2001-02,47,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/17/02,LAL vs. SAC,SAC
Dunk Shot,Dunk,64,20101188,34.0443,0,0,-118.2698,4,1,0,2001-02,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/02,LAL vs. SAC,SAC
Driving Finger Roll Shot,Layup,70,20101188,34.0443,0,0,-118.2698,4,1,0,2001-02,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,94,20101188,33.9833,30,61,-118.2398,1,1,0,2001-02,10,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/17/02,LAL vs. SAC,SAC
Layup Shot,Layup,182,20101188,34.0443,0,0,-118.2698,5,2,0,2001-02,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,202,20101188,33.8393,-27,205,-118.2968,3,2,0,2001-02,6,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/17/02,LAL vs. SAC,SAC
Turnaround Jump Shot,Jump Shot,214,20101188,33.9933,108,51,-118.1618,2,2,0,2001-02,4,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/17/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,248,20101188,33.9193,123,125,-118.1468,0,2,0,2001-02,0,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/17/02,LAL vs. SAC,SAC
Running Jump Shot,Jump Shot,264,20101188,33.9873,79,57,-118.1908,9,3,0,2001-02,54,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/17/02,LAL vs. SAC,SAC
Layup Shot,Layup,272,20101188,34.0443,0,0,-118.2698,8,3,0,2001-02,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/02,LAL vs. SAC,SAC
Layup Shot,Layup,312,20101188,34.0443,0,0,-118.2698,4,3,0,2001-02,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/17/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,346,20101188,33.9263,-162,118,-118.4318,0,3,0,2001-02,56,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/17/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,7,20200003,33.9393,-117,105,-118.3868,11,1,0,2002-03,27,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,11,20200003,33.9553,-120,89,-118.3898,10,1,0,2002-03,57,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,17,20200003,33.9673,41,77,-118.2288,10,1,0,2002-03,18,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,10/29/02,LAL vs. SAS,SAS
Layup Shot,Layup,19,20200003,34.0443,0,0,-118.2698,10,1,0,2002-03,12,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,54,20200003,33.9933,38,51,-118.2318,5,1,0,2002-03,55,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,62,20200003,34.0143,-145,30,-118.4148,5,1,0,2002-03,14,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,10/29/02,LAL vs. SAS,SAS
Layup Shot,Layup,79,20200003,34.0443,0,0,-118.2698,3,1,0,2002-03,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,81,20200003,34.0443,-62,0,-118.3318,3,1,0,2002-03,27,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Driving Layup Shot,Layup,122,20200003,34.0443,0,0,-118.2698,0,1,0,2002-03,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,189,20200003,33.9813,-15,63,-118.2848,6,2,0,2002-03,52,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,192,20200003,33.9423,130,102,-118.1398,6,2,0,2002-03,44,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,10/29/02,LAL vs. SAS,SAS
Finger Roll Shot,Layup,216,20200003,34.0083,-25,36,-118.2948,5,2,0,2002-03,18,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,299,20200003,34.0263,-66,18,-118.3358,10,3,0,2002-03,41,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Reverse Layup Shot,Layup,319,20200003,34.0443,0,0,-118.2698,8,3,0,2002-03,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,351,20200003,33.9623,64,82,-118.2058,5,3,0,2002-03,7,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,355,20200003,33.8883,38,156,-118.2318,4,3,0,2002-03,29,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,370,20200003,33.8753,-153,169,-118.4228,2,3,0,2002-03,59,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,10/29/02,LAL vs. SAS,SAS
Reverse Dunk Shot,Dunk,383,20200003,34.0443,0,0,-118.2698,1,3,0,2002-03,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,402,20200003,33.8663,82,178,-118.1878,0,3,0,2002-03,18,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,10/29/02,LAL vs. SAS,SAS
Layup Shot,Layup,421,20200003,34.0443,0,0,-118.2698,10,4,0,2002-03,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Layup Shot,Layup,479,20200003,34.0443,0,0,-118.2698,5,4,0,2002-03,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Layup Shot,Layup,508,20200003,34.0443,0,0,-118.2698,3,4,0,2002-03,27,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,529,20200003,33.8553,167,189,-118.1028,1,4,0,2002-03,22,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,10/29/02,LAL vs. SAS,SAS
Dunk Shot,Dunk,558,20200003,34.0443,0,0,-118.2698,0,4,0,2002-03,19,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/29/02,LAL vs. SAS,SAS
Jump Shot,Jump Shot,561,20200003,33.9013,-222,143,-118.4918,0,4,0,2002-03,4,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,10/29/02,LAL vs. SAS,SAS
Dunk Shot,Dunk,3,20200014,34.0443,0,0,-118.2698,11,1,0,2002-03,50,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/02,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,17,20200014,34.0443,174,0,-118.0958,9,1,0,2002-03,34,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,65,20200014,33.8023,49,242,-118.2208,3,1,0,2002-03,52,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,10/30/02,LAL @ POR,POR
Alley Oop Layup shot,Layup,71,20200014,34.0443,0,0,-118.2698,2,1,0,2002-03,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,115,20200014,33.8303,0,214,-118.2698,11,2,0,2002-03,50,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,132,20200014,33.8633,163,181,-118.1068,9,2,0,2002-03,59,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,189,20200014,34.0373,169,7,-118.1008,5,2,0,2002-03,49,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,200,20200014,33.9813,200,63,-118.0698,5,2,0,2002-03,4,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,221,20200014,33.8943,195,150,-118.0748,3,2,0,2002-03,22,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,260,20200014,33.8713,-172,173,-118.4418,0,2,0,2002-03,0,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,10/30/02,LAL @ POR,POR
Driving Layup Shot,Layup,278,20200014,34.0443,0,0,-118.2698,9,3,0,2002-03,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/02,LAL @ POR,POR
Driving Layup Shot,Layup,285,20200014,34.0443,0,0,-118.2698,9,3,0,2002-03,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,349,20200014,33.8173,120,227,-118.1498,1,3,0,2002-03,32,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,351,20200014,33.8913,-214,153,-118.4838,0,3,0,2002-03,40,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,10/30/02,LAL @ POR,POR
Jump Shot,Jump Shot,356,20200014,33.8523,-199,192,-118.4688,0,3,0,2002-03,0,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,10/30/02,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,373,20200014,34.0363,-92,8,-118.3618,10,4,0,2002-03,43,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,10/30/02,LAL @ POR,POR
Running Jump Shot,Jump Shot,4,20200029,33.8993,-105,145,-118.3748,11,1,0,2002-03,38,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/1/02,LAL @ LAC,LAC
Tip Shot,Tip Shot,34,20200029,34.0443,0,0,-118.2698,7,1,0,2002-03,35,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/1/02,LAL @ LAC,LAC
Layup Shot,Layup,36,20200029,34.0443,0,0,-118.2698,7,1,0,2002-03,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/1/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,71,20200029,34.0263,182,18,-118.0878,4,1,0,2002-03,17,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/1/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,199,20200029,33.7943,-99,250,-118.3688,3,2,0,2002-03,56,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/1/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,230,20200029,33.8353,52,209,-118.2178,0,2,0,2002-03,45,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/1/02,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,254,20200029,33.9753,-5,69,-118.2748,10,3,0,2002-03,21,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/1/02,LAL @ LAC,LAC
Driving Layup Shot,Layup,295,20200029,34.0443,0,0,-118.2698,6,3,0,2002-03,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/1/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,331,20200029,33.9703,-2,74,-118.2718,3,3,0,2002-03,45,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/1/02,LAL @ LAC,LAC
Driving Dunk Shot,Dunk,351,20200029,34.0443,0,0,-118.2698,2,3,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/1/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,382,20200029,33.8813,8,163,-118.2618,10,4,0,2002-03,19,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/1/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,453,20200029,33.9123,-5,132,-118.2748,2,4,0,2002-03,31,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/1/02,LAL @ LAC,LAC
Jump Shot,Jump Shot,85,20200045,33.8583,-169,186,-118.4388,2,1,0,2002-03,47,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,88,20200045,33.9223,90,122,-118.1798,2,1,0,2002-03,17,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,121,20200045,33.8663,118,178,-118.1518,10,2,0,2002-03,38,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,238,20200045,33.9173,-176,127,-118.4458,10,3,0,2002-03,4,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/3/02,LAL vs. POR,POR
Turnaround Jump Shot,Jump Shot,256,20200045,33.9533,52,91,-118.2178,7,3,0,2002-03,37,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,292,20200045,33.9803,233,64,-118.0368,3,3,0,2002-03,32,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/3/02,LAL vs. POR,POR
Layup Shot,Layup,346,20200045,34.0443,0,0,-118.2698,10,4,0,2002-03,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,393,20200045,33.7843,-21,260,-118.2908,6,4,0,2002-03,24,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,395,20200045,33.8483,-3,196,-118.2728,5,4,0,2002-03,49,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,407,20200045,33.7863,98,258,-118.1718,4,4,0,2002-03,29,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,419,20200045,33.8683,41,176,-118.2288,3,4,0,2002-03,50,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,438,20200045,33.7973,39,247,-118.2308,1,4,0,2002-03,46,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/3/02,LAL vs. POR,POR
Layup Shot,Layup,456,20200045,34.0443,0,0,-118.2698,0,4,0,2002-03,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/3/02,LAL vs. POR,POR
Tip Shot,Tip Shot,457,20200045,34.0443,0,0,-118.2698,0,4,0,2002-03,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/3/02,LAL vs. POR,POR
Jump Shot,Jump Shot,516,20200045,33.8153,-151,229,-118.4208,2,5,0,2002-03,1,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/3/02,LAL vs. POR,POR
Driving Layup Shot,Layup,522,20200045,34.0443,0,0,-118.2698,1,5,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/3/02,LAL vs. POR,POR
Layup Shot,Layup,15,20200053,34.0243,1,20,-118.2688,9,1,0,2002-03,39,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,29,20200053,34.0373,57,7,-118.2128,8,1,0,2002-03,31,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,34,20200053,34.0553,232,-11,-118.0378,8,1,0,2002-03,0,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,40,20200053,33.9763,141,68,-118.1288,6,1,0,2002-03,55,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/5/02,LAL @ CLE,CLE
Tip Shot,Tip Shot,68,20200053,34.0343,-5,10,-118.2748,4,1,0,2002-03,31,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/02,LAL @ CLE,CLE
Layup Shot,Layup,70,20200053,34.0393,-6,5,-118.2758,4,1,0,2002-03,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/02,LAL @ CLE,CLE
Layup Shot,Layup,216,20200053,34.0363,13,8,-118.2568,2,2,0,2002-03,28,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,218,20200053,33.9143,8,130,-118.2618,2,2,0,2002-03,19,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/5/02,LAL @ CLE,CLE
Fadeaway Jump Shot,Jump Shot,248,20200053,33.8813,29,163,-118.2408,11,3,0,2002-03,39,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,279,20200053,33.8343,-2,210,-118.2718,7,3,0,2002-03,37,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,332,20200053,34.0373,59,7,-118.2108,2,3,0,2002-03,25,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,369,20200053,33.8893,141,155,-118.1288,11,4,0,2002-03,20,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/5/02,LAL @ CLE,CLE
Jump Shot,Jump Shot,8,20200069,33.9243,-102,120,-118.3718,10,1,0,2002-03,54,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Layup Shot,Layup,34,20200069,34.0323,-16,12,-118.2858,8,1,0,2002-03,25,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,75,20200069,33.9803,1,64,-118.2688,4,1,0,2002-03,2,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/02,LAL @ BOS,BOS
Fadeaway Jump Shot,Jump Shot,93,20200069,33.9933,130,51,-118.1398,2,1,0,2002-03,24,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,103,20200069,33.8303,-126,214,-118.3958,0,1,0,2002-03,55,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/7/02,LAL @ BOS,BOS
Layup Shot,Layup,110,20200069,34.0393,-6,5,-118.2758,0,1,0,2002-03,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,113,20200069,33.4953,64,549,-118.2058,0,1,0,2002-03,0,55,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,166,20200069,34.0623,-161,-18,-118.4308,5,2,0,2002-03,56,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,168,20200069,33.9073,-28,137,-118.2978,5,2,0,2002-03,27,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,186,20200069,34.0473,92,-3,-118.1778,4,2,0,2002-03,7,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Fadeaway Jump Shot,Jump Shot,210,20200069,33.9393,87,105,-118.1828,1,2,0,2002-03,24,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,215,20200069,33.8753,-112,169,-118.3818,0,2,0,2002-03,52,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,223,20200069,33.6863,151,358,-118.1188,0,2,0,2002-03,0,38,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,232,20200069,33.9683,-18,76,-118.2878,11,3,0,2002-03,5,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,235,20200069,33.9223,143,122,-118.1268,10,3,0,2002-03,31,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,247,20200069,33.9393,64,105,-118.2058,8,3,0,2002-03,44,12,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,250,20200069,33.8153,131,229,-118.1388,8,3,0,2002-03,13,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/7/02,LAL @ BOS,BOS
Fadeaway Jump Shot,Jump Shot,259,20200069,34.0633,-181,-19,-118.4508,7,3,0,2002-03,3,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,261,20200069,34.0523,113,-8,-118.1568,6,3,0,2002-03,31,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,269,20200069,33.8783,110,166,-118.1598,5,3,0,2002-03,49,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,312,20200069,33.8843,95,160,-118.1748,1,3,0,2002-03,2,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,316,20200069,33.7873,-6,257,-118.2758,0,3,0,2002-03,32,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,341,20200069,34.0133,149,31,-118.1208,9,4,0,2002-03,45,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,343,20200069,34.0133,34,31,-118.2358,9,4,0,2002-03,39,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,367,20200069,33.8153,-168,229,-118.4378,7,4,0,2002-03,10,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,372,20200069,33.8883,-113,156,-118.3828,6,4,0,2002-03,26,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,381,20200069,34.0583,-133,-14,-118.4028,5,4,0,2002-03,12,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,389,20200069,34.0423,148,2,-118.1218,4,4,0,2002-03,41,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,401,20200069,33.7893,16,255,-118.2538,3,4,0,2002-03,17,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,408,20200069,33.8863,103,158,-118.1668,2,4,0,2002-03,31,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,412,20200069,34.0143,71,30,-118.1988,2,4,0,2002-03,16,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,414,20200069,33.9393,-125,105,-118.3948,2,4,0,2002-03,10,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,417,20200069,33.9783,-123,66,-118.3928,1,4,0,2002-03,36,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,427,20200069,33.9953,31,49,-118.2388,0,4,0,2002-03,53,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,434,20200069,34.0033,97,41,-118.1728,0,4,0,2002-03,18,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,454,20200069,33.9243,-118,120,-118.3878,3,5,0,2002-03,46,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,470,20200069,33.8343,10,210,-118.2598,2,5,0,2002-03,16,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Turnaround Jump Shot,Jump Shot,485,20200069,33.8613,46,183,-118.2238,0,5,0,2002-03,58,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,495,20200069,33.8483,-158,196,-118.4278,0,5,0,2002-03,1,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/7/02,LAL @ BOS,BOS
Jump Shot,Jump Shot,6,20200076,34.0063,126,38,-118.1438,11,1,0,2002-03,11,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/02,LAL @ WAS,WAS
Running Layup Shot,Layup,15,20200076,34.0443,16,0,-118.2538,10,1,0,2002-03,32,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,17,20200076,33.9093,151,135,-118.1188,10,1,0,2002-03,12,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,46,20200076,34.0813,205,-37,-118.0648,5,1,0,2002-03,10,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,64,20200076,33.8433,6,201,-118.2638,2,1,0,2002-03,25,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,72,20200076,34.0323,75,12,-118.1948,1,1,0,2002-03,58,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,82,20200076,33.9803,102,64,-118.1678,0,1,0,2002-03,40,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,137,20200076,33.9263,49,118,-118.2208,6,2,0,2002-03,26,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,148,20200076,33.9243,161,120,-118.1088,5,2,0,2002-03,10,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,174,20200076,33.8863,135,158,-118.1348,2,2,0,2002-03,31,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,183,20200076,34.0573,71,-13,-118.1988,1,2,0,2002-03,40,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,226,20200076,34.0703,200,-26,-118.0698,10,3,0,2002-03,5,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,275,20200076,33.9683,-56,76,-118.3258,5,3,0,2002-03,1,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,291,20200076,33.8473,92,197,-118.1778,3,3,0,2002-03,57,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Layup Shot,Layup,323,20200076,34.0343,-16,10,-118.2858,0,3,0,2002-03,52,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,377,20200076,33.8663,84,178,-118.1858,6,4,0,2002-03,12,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/8/02,LAL @ WAS,WAS
Running Jump Shot,Jump Shot,401,20200076,33.9913,-115,53,-118.3848,3,4,0,2002-03,44,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,411,20200076,33.9983,-49,46,-118.3188,2,4,0,2002-03,42,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,424,20200076,33.9113,-8,133,-118.2778,1,4,0,2002-03,14,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/8/02,LAL @ WAS,WAS
Jump Shot,Jump Shot,38,20200106,33.9533,138,91,-118.1318,8,1,0,2002-03,14,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/12/02,LAL vs. ATL,ATL
Layup Shot,Layup,63,20200106,34.0443,0,0,-118.2698,5,1,0,2002-03,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,112,20200106,33.9303,0,114,-118.2698,1,1,0,2002-03,2,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,138,20200106,33.9473,136,97,-118.1338,9,2,0,2002-03,18,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/12/02,LAL vs. ATL,ATL
Driving Layup Shot,Layup,164,20200106,34.0443,0,0,-118.2698,6,2,0,2002-03,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,215,20200106,33.9503,-54,94,-118.3238,1,2,0,2002-03,46,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/12/02,LAL vs. ATL,ATL
Layup Shot,Layup,237,20200106,34.0443,0,0,-118.2698,0,2,0,2002-03,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,262,20200106,33.9583,54,86,-118.2158,10,3,0,2002-03,11,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,274,20200106,33.8763,26,168,-118.2438,9,3,0,2002-03,35,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/12/02,LAL vs. ATL,ATL
Slam Dunk Shot,Dunk,276,20200106,34.0443,0,0,-118.2698,9,3,0,2002-03,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/02,LAL vs. ATL,ATL
Running Jump Shot,Jump Shot,297,20200106,34.0673,-95,-23,-118.3648,6,3,0,2002-03,19,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,300,20200106,33.9073,6,137,-118.2638,5,3,0,2002-03,53,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/12/02,LAL vs. ATL,ATL
Driving Layup Shot,Layup,308,20200106,34.0443,0,0,-118.2698,4,3,0,2002-03,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,342,20200106,33.9603,115,84,-118.1548,1,3,0,2002-03,3,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,349,20200106,33.8153,120,229,-118.1498,0,3,0,2002-03,29,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,364,20200106,34.0473,133,-3,-118.1368,10,4,0,2002-03,38,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,411,20200106,33.8503,44,194,-118.2258,5,4,0,2002-03,29,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/12/02,LAL vs. ATL,ATL
Jump Shot,Jump Shot,38,20200127,33.9443,-108,100,-118.3778,8,1,0,2002-03,6,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,41,20200127,34.0043,182,40,-118.0878,7,1,0,2002-03,33,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,49,20200127,33.8713,43,173,-118.2268,6,1,0,2002-03,46,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,56,20200127,33.9063,103,138,-118.1668,5,1,0,2002-03,50,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,61,20200127,33.8483,10,196,-118.2598,5,1,0,2002-03,16,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Dunk Shot,Dunk,64,20200127,34.0443,0,0,-118.2698,4,1,0,2002-03,55,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/02,LAL vs. GSW,GSW
Turnaround Jump Shot,Jump Shot,67,20200127,33.8993,-85,145,-118.3548,4,1,0,2002-03,21,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,80,20200127,33.9963,-102,48,-118.3718,3,1,0,2002-03,15,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,84,20200127,33.9993,174,45,-118.0958,3,1,0,2002-03,5,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,111,20200127,33.8943,-80,150,-118.3498,0,1,0,2002-03,39,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,118,20200127,33.8713,225,173,-118.0448,0,1,0,2002-03,1,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,140,20200127,33.9013,97,143,-118.1728,9,2,0,2002-03,41,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,195,20200127,34.0503,-209,-6,-118.4788,5,2,0,2002-03,20,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,197,20200127,33.9683,164,76,-118.1058,4,2,0,2002-03,38,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Fadeaway Jump Shot,Jump Shot,203,20200127,34.0523,-158,-8,-118.4278,4,2,0,2002-03,3,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,234,20200127,33.8223,5,222,-118.2648,0,2,0,2002-03,34,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Turnaround Jump Shot,Jump Shot,243,20200127,33.9013,1,143,-118.2688,0,2,0,2002-03,2,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/15/02,LAL vs. GSW,GSW
Turnaround Jump Shot,Jump Shot,251,20200127,34.0533,-161,-9,-118.4308,11,3,0,2002-03,15,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,256,20200127,33.9903,156,54,-118.1138,10,3,0,2002-03,31,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Layup Shot,Layup,288,20200127,34.0443,0,0,-118.2698,8,3,0,2002-03,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,301,20200127,34.0223,75,22,-118.1948,7,3,0,2002-03,4,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/15/02,LAL vs. GSW,GSW
Driving Finger Roll Shot,Layup,328,20200127,34.0513,-39,-7,-118.3088,4,3,0,2002-03,23,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/02,LAL vs. GSW,GSW
Dunk Shot,Dunk,359,20200127,34.0443,0,0,-118.2698,2,3,0,2002-03,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,363,20200127,33.9273,235,117,-118.0348,0,3,0,2002-03,57,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/15/02,LAL vs. GSW,GSW
Slam Dunk Shot,Dunk,426,20200127,34.0443,0,0,-118.2698,6,4,0,2002-03,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,437,20200127,33.8863,-8,158,-118.2778,5,4,0,2002-03,48,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,442,20200127,34.0193,-179,25,-118.4488,5,4,0,2002-03,10,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,450,20200127,33.9533,-57,91,-118.3268,4,4,0,2002-03,12,10,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,471,20200127,33.8913,21,153,-118.2488,1,4,0,2002-03,57,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/15/02,LAL vs. GSW,GSW
Fadeaway Jump Shot,Jump Shot,482,20200127,33.9193,-169,125,-118.4388,0,4,0,2002-03,47,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,487,20200127,33.8483,18,196,-118.2518,0,4,0,2002-03,18,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Turnaround Jump Shot,Jump Shot,512,20200127,34.0183,161,26,-118.1088,4,5,0,2002-03,26,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,543,20200127,33.8913,92,153,-118.1778,2,5,0,2002-03,8,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/15/02,LAL vs. GSW,GSW
Turnaround Jump Shot,Jump Shot,556,20200127,34.0163,-138,28,-118.4078,1,5,0,2002-03,31,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/15/02,LAL vs. GSW,GSW
Jump Shot,Jump Shot,2,20200142,33.9603,-48,84,-118.3178,11,1,0,2002-03,45,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,16,20200142,33.9343,-46,110,-118.3158,9,1,0,2002-03,19,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,21,20200142,33.9243,-89,120,-118.3588,8,1,0,2002-03,20,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,30,20200142,33.9093,110,135,-118.1598,7,1,0,2002-03,6,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,47,20200142,33.9243,84,120,-118.1858,5,1,0,2002-03,29,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,57,20200142,33.9213,20,123,-118.2498,4,1,0,2002-03,14,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,144,20200142,33.8983,0,146,-118.2698,8,2,0,2002-03,42,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,151,20200142,33.9093,-95,135,-118.3648,7,2,0,2002-03,58,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,161,20200142,33.9223,49,122,-118.2208,6,2,0,2002-03,41,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/17/02,LAL vs. HOU,HOU
Driving Layup Shot,Layup,185,20200142,34.0443,0,0,-118.2698,3,2,0,2002-03,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,189,20200142,33.8683,20,176,-118.2498,3,2,0,2002-03,15,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,219,20200142,33.8603,-20,184,-118.2898,0,2,0,2002-03,50,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Layup Shot,Layup,244,20200142,34.0443,0,0,-118.2698,11,3,0,2002-03,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,246,20200142,34.0323,62,12,-118.2078,10,3,0,2002-03,52,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,254,20200142,33.8883,-38,156,-118.3078,10,3,0,2002-03,0,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,271,20200142,33.9213,103,123,-118.1668,8,3,0,2002-03,6,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,277,20200142,33.9983,163,46,-118.1068,7,3,0,2002-03,27,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,280,20200142,34.0113,100,33,-118.1698,6,3,0,2002-03,57,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,299,20200142,33.9343,128,110,-118.1418,4,3,0,2002-03,56,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Slam Dunk Shot,Dunk,301,20200142,34.0443,0,0,-118.2698,4,3,0,2002-03,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,313,20200142,33.8913,-54,153,-118.3238,3,3,0,2002-03,4,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Driving Layup Shot,Layup,326,20200142,34.0093,-13,35,-118.2828,1,3,0,2002-03,22,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,389,20200142,34.0453,-131,-1,-118.4008,7,4,0,2002-03,23,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,391,20200142,33.9733,-77,71,-118.3468,6,4,0,2002-03,44,10,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,404,20200142,34.0583,153,-14,-118.1168,5,4,0,2002-03,48,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,407,20200142,33.8833,-29,161,-118.2988,5,4,0,2002-03,13,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,409,20200142,33.9993,-207,45,-118.4768,4,4,0,2002-03,48,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,411,20200142,33.9403,-20,104,-118.2898,4,4,0,2002-03,12,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,420,20200142,33.9933,-143,51,-118.4128,3,4,0,2002-03,9,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,438,20200142,34.0493,228,-5,-118.0418,1,4,0,2002-03,46,22,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/17/02,LAL vs. HOU,HOU
Driving Layup Shot,Layup,452,20200142,34.0443,0,0,-118.2698,0,4,0,2002-03,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/02,LAL vs. HOU,HOU
Jump Shot,Jump Shot,18,20200151,33.9803,-108,64,-118.3778,10,1,0,2002-03,14,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,30,20200151,33.9223,69,122,-118.2008,8,1,0,2002-03,46,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,51,20200151,33.8753,-142,169,-118.4118,5,1,0,2002-03,52,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,69,20200151,34.0343,105,10,-118.1648,3,1,0,2002-03,56,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,101,20200151,33.9063,52,138,-118.2178,1,1,0,2002-03,13,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/19/02,LAL @ DAL,DAL
Slam Dunk Shot,Dunk,111,20200151,34.0443,0,0,-118.2698,0,1,0,2002-03,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,122,20200151,34.0223,207,22,-118.0628,11,2,0,2002-03,36,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,136,20200151,34.0353,-150,9,-118.4198,9,2,0,2002-03,56,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,139,20200151,33.9673,105,77,-118.1648,9,2,0,2002-03,27,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/19/02,LAL @ DAL,DAL
Turnaround Jump Shot,Jump Shot,181,20200151,34.0063,80,38,-118.1898,6,2,0,2002-03,8,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/19/02,LAL @ DAL,DAL
Layup Shot,Layup,210,20200151,34.0443,0,0,-118.2698,3,2,0,2002-03,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,230,20200151,33.9193,-74,125,-118.3438,0,2,0,2002-03,37,14,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,286,20200151,33.9983,-140,46,-118.4098,8,3,0,2002-03,57,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,338,20200151,34.0193,102,25,-118.1678,4,3,0,2002-03,2,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,341,20200151,34.0033,-66,41,-118.3358,3,3,0,2002-03,43,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/19/02,LAL @ DAL,DAL
Jump Shot,Jump Shot,351,20200151,33.9223,-210,122,-118.4798,2,3,0,2002-03,56,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/19/02,LAL @ DAL,DAL
Layup Shot,Layup,361,20200151,34.0443,0,0,-118.2698,2,3,0,2002-03,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/02,LAL @ DAL,DAL
Slam Dunk Shot,Dunk,28,20200160,34.0263,-2,18,-118.2718,8,1,0,2002-03,33,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/20/02,LAL @ SAS,SAS
Running Jump Shot,Jump Shot,48,20200160,34.0083,-118,36,-118.3878,5,1,0,2002-03,20,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,54,20200160,33.8383,95,206,-118.1748,4,1,0,2002-03,11,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,66,20200160,33.8593,-46,185,-118.3158,3,1,0,2002-03,28,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,96,20200160,33.9553,135,89,-118.1348,0,1,0,2002-03,31,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,177,20200160,33.9733,75,71,-118.1948,4,2,0,2002-03,24,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/20/02,LAL @ SAS,SAS
Slam Dunk Shot,Dunk,184,20200160,34.0293,0,15,-118.2698,3,2,0,2002-03,29,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/20/02,LAL @ SAS,SAS
Running Jump Shot,Jump Shot,226,20200160,34.0143,-46,30,-118.3158,0,2,0,2002-03,14,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,235,20200160,33.9193,143,125,-118.1268,11,3,0,2002-03,41,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,247,20200160,33.9443,-143,100,-118.4128,9,3,0,2002-03,55,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Running Jump Shot,Jump Shot,251,20200160,34.0313,51,13,-118.2188,9,3,0,2002-03,30,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,261,20200160,33.9223,151,122,-118.1188,7,3,0,2002-03,57,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,304,20200160,33.8813,43,163,-118.2268,2,3,0,2002-03,53,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,331,20200160,33.9603,163,84,-118.1068,1,3,0,2002-03,15,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,358,20200160,33.9983,-200,46,-118.4698,10,4,0,2002-03,58,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,374,20200160,33.8203,-80,224,-118.3498,9,4,0,2002-03,16,23,0,2PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,428,20200160,33.8503,156,194,-118.1138,3,4,0,2002-03,10,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,441,20200160,33.9123,179,132,-118.0908,1,4,0,2002-03,44,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,455,20200160,33.8703,-179,174,-118.4488,0,4,0,2002-03,34,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/20/02,LAL @ SAS,SAS
Jump Shot,Jump Shot,46,20200178,33.7813,-66,263,-118.3358,8,1,0,2002-03,31,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/22/02,LAL vs. CHI,CHI
Reverse Layup Shot,Layup,79,20200178,33.9953,8,49,-118.2618,5,1,0,2002-03,11,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,165,20200178,33.8843,189,160,-118.0808,9,2,0,2002-03,1,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,301,20200178,33.8933,82,151,-118.1878,8,3,0,2002-03,56,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,318,20200178,33.8483,-49,196,-118.3188,6,3,0,2002-03,24,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,338,20200178,33.9453,113,99,-118.1568,5,3,0,2002-03,7,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,347,20200178,33.9963,158,48,-118.1118,3,3,0,2002-03,21,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,370,20200178,34.0163,-84,28,-118.3538,1,3,0,2002-03,28,8,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/22/02,LAL vs. CHI,CHI
Slam Dunk Shot,Dunk,375,20200178,34.0443,0,0,-118.2698,1,3,0,2002-03,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,378,20200178,33.8303,-154,214,-118.4238,0,3,0,2002-03,37,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,382,20200178,33.8783,-140,166,-118.4098,0,3,0,2002-03,0,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,406,20200178,33.9623,-103,82,-118.3728,9,4,0,2002-03,26,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/22/02,LAL vs. CHI,CHI
Jump Shot,Jump Shot,7,20200194,33.8713,-113,173,-118.3828,10,1,0,2002-03,41,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,28,20200194,33.8383,-161,206,-118.4308,7,1,0,2002-03,28,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/24/02,LAL vs. MIL,MIL
Slam Dunk Shot,Dunk,53,20200194,34.0443,0,0,-118.2698,4,1,0,2002-03,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,117,20200194,33.8613,1,183,-118.2688,11,2,0,2002-03,45,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,211,20200194,33.9353,148,109,-118.1218,3,2,0,2002-03,13,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,268,20200194,33.8503,-189,194,-118.4588,10,3,0,2002-03,51,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,295,20200194,34.0033,112,41,-118.1578,8,3,0,2002-03,18,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/24/02,LAL vs. MIL,MIL
Turnaround Jump Shot,Jump Shot,370,20200194,34.0183,161,26,-118.1088,2,3,0,2002-03,31,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,520,20200194,34.0603,235,-16,-118.0348,2,4,0,2002-03,7,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,530,20200194,33.9683,-20,76,-118.2898,0,4,0,2002-03,56,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,532,20200194,33.8843,-135,160,-118.4048,0,4,0,2002-03,21,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/24/02,LAL vs. MIL,MIL
Jump Shot,Jump Shot,2,20200199,33.9223,-59,122,-118.3288,11,1,0,2002-03,46,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,44,20200199,33.8573,-166,187,-118.4358,6,1,0,2002-03,4,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,250,20200199,33.9173,89,127,-118.1808,9,3,0,2002-03,20,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,266,20200199,33.8503,176,194,-118.0938,6,3,0,2002-03,25,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,288,20200199,33.9143,31,130,-118.2388,4,3,0,2002-03,23,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,324,20200199,33.8883,108,156,-118.1618,0,3,0,2002-03,39,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,340,20200199,33.8153,87,229,-118.1828,11,4,0,2002-03,1,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/26/02,LAL @ MIA,MIA
Layup Shot,Layup,350,20200199,34.0443,0,0,-118.2698,10,4,0,2002-03,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,408,20200199,34.0063,89,38,-118.1808,5,4,0,2002-03,7,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/26/02,LAL @ MIA,MIA
Dunk Shot,Dunk,420,20200199,34.0443,0,0,-118.2698,3,4,0,2002-03,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,436,20200199,33.9653,-177,79,-118.4468,2,4,0,2002-03,16,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,441,20200199,33.8353,135,209,-118.1348,1,4,0,2002-03,33,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,450,20200199,33.9093,52,135,-118.2178,1,4,0,2002-03,5,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/26/02,LAL @ MIA,MIA
Jump Shot,Jump Shot,41,20200206,34.0633,135,-19,-118.1348,6,1,0,2002-03,21,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,67,20200206,34.0083,-171,36,-118.4408,4,1,0,2002-03,30,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Fadeaway Jump Shot,Jump Shot,81,20200206,34.0523,154,-8,-118.1158,3,1,0,2002-03,16,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/02,LAL @ ORL,ORL
Layup Shot,Layup,88,20200206,34.0443,0,0,-118.2698,2,1,0,2002-03,37,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,124,20200206,33.9453,163,99,-118.1068,10,2,0,2002-03,49,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Turnaround Jump Shot,Jump Shot,140,20200206,33.9343,-125,110,-118.3948,9,2,0,2002-03,42,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,144,20200206,33.9473,-130,97,-118.3998,9,2,0,2002-03,23,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,147,20200206,33.8913,-20,153,-118.2898,8,2,0,2002-03,57,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,187,20200206,33.9403,-123,104,-118.3928,5,2,0,2002-03,17,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Fadeaway Jump Shot,Jump Shot,192,20200206,33.9983,103,46,-118.1668,4,2,0,2002-03,51,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,201,20200206,33.9043,-108,140,-118.3778,4,2,0,2002-03,20,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Slam Dunk Shot,Dunk,227,20200206,34.0443,0,0,-118.2698,1,2,0,2002-03,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Fadeaway Jump Shot,Jump Shot,235,20200206,34.0553,161,-11,-118.1088,0,2,0,2002-03,48,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Reverse Layup Shot,Layup,242,20200206,34.0443,0,0,-118.2698,0,2,0,2002-03,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Driving Finger Roll Shot,Layup,267,20200206,34.0443,0,0,-118.2698,10,3,0,2002-03,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,304,20200206,33.8373,-82,207,-118.3518,6,3,0,2002-03,23,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,319,20200206,33.8353,-20,209,-118.2898,4,3,0,2002-03,52,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Reverse Layup Shot,Layup,335,20200206,34.0443,0,0,-118.2698,3,3,0,2002-03,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,373,20200206,33.8633,-23,181,-118.2928,0,3,0,2002-03,6,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,384,20200206,34.0703,195,-26,-118.0748,11,4,0,2002-03,44,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Fadeaway Jump Shot,Jump Shot,388,20200206,33.9993,-156,45,-118.4258,10,4,0,2002-03,53,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Fadeaway Jump Shot,Jump Shot,390,20200206,34.0703,143,-26,-118.1268,10,4,0,2002-03,16,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/02,LAL @ ORL,ORL
Finger Roll Shot,Layup,399,20200206,34.0443,0,0,-118.2698,9,4,0,2002-03,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,416,20200206,33.9073,82,137,-118.1878,7,4,0,2002-03,24,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,445,20200206,33.9443,169,100,-118.1008,4,4,0,2002-03,43,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/27/02,LAL @ ORL,ORL
Slam Dunk Shot,Dunk,455,20200206,34.0443,0,0,-118.2698,3,4,0,2002-03,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Finger Roll Shot,Layup,471,20200206,34.0443,0,0,-118.2698,2,4,0,2002-03,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/27/02,LAL @ ORL,ORL
Jump Shot,Jump Shot,501,20200206,33.9503,98,94,-118.1718,0,4,0,2002-03,45,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/27/02,LAL @ ORL,ORL
Layup Shot,Layup,13,20200223,34.0443,0,0,-118.2698,10,1,0,2002-03,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Layup Shot,Layup,16,20200223,34.0443,0,0,-118.2698,10,1,0,2002-03,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Layup Shot,Layup,18,20200223,34.0443,0,0,-118.2698,9,1,0,2002-03,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Dunk Shot,Dunk,37,20200223,34.0443,0,0,-118.2698,7,1,0,2002-03,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,47,20200223,34.0363,71,8,-118.1988,6,1,0,2002-03,28,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,67,20200223,33.9113,29,133,-118.2408,4,1,0,2002-03,43,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/29/02,LAL @ MEM,MEM
Driving Layup Shot,Layup,77,20200223,34.0443,0,0,-118.2698,3,1,0,2002-03,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Layup Shot,Layup,92,20200223,34.0443,0,0,-118.2698,2,1,0,2002-03,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,105,20200223,34.0553,227,-11,-118.0428,0,1,0,2002-03,46,22,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/29/02,LAL @ MEM,MEM
Turnaround Jump Shot,Jump Shot,107,20200223,33.9453,8,99,-118.2618,0,1,0,2002-03,9,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,140,20200223,33.9653,-146,79,-118.4158,8,2,0,2002-03,57,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/29/02,LAL @ MEM,MEM
Driving Layup Shot,Layup,194,20200223,34.0443,0,0,-118.2698,3,2,0,2002-03,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,196,20200223,33.9733,-20,71,-118.2898,3,2,0,2002-03,30,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Fadeaway Jump Shot,Jump Shot,200,20200223,34.0313,-153,13,-118.4228,3,2,0,2002-03,0,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/29/02,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,223,20200223,33.9783,52,66,-118.2178,0,2,0,2002-03,4,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,230,20200223,33.6483,-174,396,-118.4438,0,2,0,2002-03,0,43,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/29/02,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,235,20200223,33.9653,-15,79,-118.2848,11,3,0,2002-03,53,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,242,20200223,33.9093,166,135,-118.1038,10,3,0,2002-03,37,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/29/02,LAL @ MEM,MEM
Reverse Dunk Shot,Dunk,254,20200223,34.0443,0,0,-118.2698,9,3,0,2002-03,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,267,20200223,33.9813,-11,63,-118.2808,7,3,0,2002-03,12,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,300,20200223,33.9813,8,63,-118.2618,3,3,0,2002-03,48,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Fadeaway Jump Shot,Jump Shot,312,20200223,33.9853,-153,59,-118.4228,2,3,0,2002-03,53,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,359,20200223,33.8523,-171,192,-118.4408,9,4,0,2002-03,43,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,380,20200223,33.9833,-225,61,-118.4948,8,4,0,2002-03,36,23,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/29/02,LAL @ MEM,MEM
Layup Shot,Layup,407,20200223,34.0443,0,0,-118.2698,5,4,0,2002-03,58,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,411,20200223,34.0013,-123,43,-118.3928,5,4,0,2002-03,56,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,417,20200223,33.8783,-49,166,-118.3188,4,4,0,2002-03,40,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/29/02,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,440,20200223,33.9753,-29,69,-118.2988,2,4,0,2002-03,40,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Tip Shot,Tip Shot,449,20200223,34.0443,0,0,-118.2698,1,4,0,2002-03,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,471,20200223,33.8253,-2,219,-118.2718,0,4,0,2002-03,0,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,497,20200223,33.9623,-146,82,-118.4158,2,5,0,2002-03,1,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/29/02,LAL @ MEM,MEM
Fadeaway Jump Shot,Jump Shot,509,20200223,33.9403,-54,104,-118.3238,0,5,0,2002-03,55,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/29/02,LAL @ MEM,MEM
Dunk Shot,Dunk,520,20200223,34.0443,0,0,-118.2698,0,5,0,2002-03,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/29/02,LAL @ MEM,MEM
Jump Shot,Jump Shot,28,20200243,34.0443,184,0,-118.0858,7,1,0,2002-03,31,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,30,20200243,33.9093,-113,135,-118.3828,6,1,0,2002-03,46,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,81,20200243,33.9173,179,127,-118.0908,1,1,0,2002-03,47,21,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/1/02,LAL vs. MIN,MIN
Driving Layup Shot,Layup,92,20200243,34.0443,0,0,-118.2698,0,1,0,2002-03,35,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/02,LAL vs. MIN,MIN
Driving Layup Shot,Layup,212,20200243,34.0443,0,0,-118.2698,0,2,0,2002-03,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/02,LAL vs. MIN,MIN
Slam Dunk Shot,Dunk,266,20200243,34.0443,0,0,-118.2698,6,3,0,2002-03,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,325,20200243,33.9443,62,100,-118.2078,0,3,0,2002-03,28,11,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/1/02,LAL vs. MIN,MIN
Reverse Layup Shot,Layup,382,20200243,34.0443,0,0,-118.2698,7,4,0,2002-03,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,385,20200243,33.9883,11,56,-118.2588,6,4,0,2002-03,44,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,442,20200243,33.9633,0,81,-118.2698,1,4,0,2002-03,56,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,448,20200243,33.8223,105,222,-118.1648,1,4,0,2002-03,22,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,502,20200243,33.8013,123,243,-118.1468,0,4,0,2002-03,0,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/1/02,LAL vs. MIN,MIN
Jump Shot,Jump Shot,11,20200254,33.8553,92,189,-118.1778,10,1,0,2002-03,34,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/3/02,LAL vs. MEM,MEM
Driving Finger Roll Shot,Layup,30,20200254,34.0443,0,0,-118.2698,8,1,0,2002-03,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,51,20200254,33.8843,-128,160,-118.3978,5,1,0,2002-03,9,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/3/02,LAL vs. MEM,MEM
Layup Shot,Layup,102,20200254,34.0443,0,0,-118.2698,0,1,0,2002-03,45,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Layup Shot,Layup,126,20200254,34.0443,0,0,-118.2698,10,2,0,2002-03,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,192,20200254,33.9673,-166,77,-118.4358,3,2,0,2002-03,57,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/3/02,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,218,20200254,34.0443,0,0,-118.2698,1,2,0,2002-03,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Reverse Dunk Shot,Dunk,223,20200254,34.0443,0,0,-118.2698,0,2,0,2002-03,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Running Dunk Shot,Dunk,272,20200254,34.0443,0,0,-118.2698,7,3,0,2002-03,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,284,20200254,33.8943,205,150,-118.0648,6,3,0,2002-03,19,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/3/02,LAL vs. MEM,MEM
Driving Layup Shot,Layup,293,20200254,34.0443,0,0,-118.2698,5,3,0,2002-03,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,313,20200254,33.9393,128,105,-118.1418,3,3,0,2002-03,20,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/3/02,LAL vs. MEM,MEM
Jump Shot,Jump Shot,349,20200254,33.5433,-118,501,-118.3878,0,3,0,2002-03,0,51,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,12/3/02,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,365,20200254,34.0443,0,0,-118.2698,11,4,0,2002-03,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Turnaround Jump Shot,Jump Shot,441,20200254,33.9783,-66,66,-118.3358,3,4,0,2002-03,44,9,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/3/02,LAL vs. MEM,MEM
Alley Oop Dunk Shot,Dunk,473,20200254,34.0443,0,0,-118.2698,1,4,0,2002-03,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/02,LAL vs. MEM,MEM
Dunk Shot,Dunk,37,20200262,34.0443,0,0,-118.2698,5,1,0,2002-03,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/02,LAL @ UTA,UTA
Driving Layup Shot,Layup,64,20200262,34.0443,0,0,-118.2698,3,1,0,2002-03,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,77,20200262,33.8763,-10,168,-118.2798,2,1,0,2002-03,17,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,91,20200262,34.0083,59,36,-118.2108,0,1,0,2002-03,41,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,106,20200262,33.8373,-84,207,-118.3538,0,1,0,2002-03,0,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,115,20200262,33.8373,-99,207,-118.3688,11,2,0,2002-03,5,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/4/02,LAL @ UTA,UTA
Fadeaway Jump Shot,Jump Shot,130,20200262,34.0573,-138,-13,-118.4078,8,2,0,2002-03,58,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,182,20200262,34.0673,-192,-23,-118.4618,4,2,0,2002-03,3,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,238,20200262,33.8653,-6,179,-118.2758,10,3,0,2002-03,9,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,276,20200262,33.8193,92,225,-118.1778,6,3,0,2002-03,0,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/4/02,LAL @ UTA,UTA
Driving Layup Shot,Layup,395,20200262,34.0443,0,0,-118.2698,7,4,0,2002-03,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/02,LAL @ UTA,UTA
Layup Shot,Layup,398,20200262,34.0443,0,0,-118.2698,7,4,0,2002-03,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/02,LAL @ UTA,UTA
Layup Shot,Layup,454,20200262,34.0443,0,0,-118.2698,1,4,0,2002-03,48,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,472,20200262,34.0473,223,-3,-118.0468,0,4,0,2002-03,34,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/4/02,LAL @ UTA,UTA
Jump Shot,Jump Shot,21,20200278,33.8523,202,192,-118.0678,8,1,0,2002-03,36,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/6/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,127,20200278,33.9193,126,125,-118.1438,11,2,0,2002-03,15,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/6/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,141,20200278,34.0503,159,-6,-118.1108,9,2,0,2002-03,14,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/6/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,210,20200278,34.0013,167,43,-118.1028,2,2,0,2002-03,46,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/6/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,248,20200278,33.9763,71,68,-118.1988,11,3,0,2002-03,32,9,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/6/02,LAL vs. DAL,DAL
Driving Layup Shot,Layup,268,20200278,34.0443,0,0,-118.2698,8,3,0,2002-03,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Layup Shot,Layup,279,20200278,34.0443,0,0,-118.2698,7,3,0,2002-03,15,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,308,20200278,33.9063,115,138,-118.1548,4,3,0,2002-03,11,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/6/02,LAL vs. DAL,DAL
Tip Shot,Tip Shot,311,20200278,34.0443,0,0,-118.2698,4,3,0,2002-03,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,322,20200278,34.0133,94,31,-118.1758,2,3,0,2002-03,34,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/6/02,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,360,20200278,33.9763,-2,68,-118.2718,10,4,0,2002-03,34,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Driving Dunk Shot,Dunk,392,20200278,34.0443,0,0,-118.2698,7,4,0,2002-03,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Turnaround Jump Shot,Jump Shot,405,20200278,33.9913,-34,53,-118.3038,5,4,0,2002-03,49,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Jump Shot,Jump Shot,419,20200278,33.8013,80,243,-118.1898,4,4,0,2002-03,11,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/6/02,LAL vs. DAL,DAL
Driving Finger Roll Shot,Layup,422,20200278,34.0443,0,0,-118.2698,3,4,0,2002-03,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Reverse Layup Shot,Layup,439,20200278,34.0443,0,0,-118.2698,2,4,0,2002-03,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Driving Finger Roll Shot,Layup,444,20200278,34.0443,0,0,-118.2698,1,4,0,2002-03,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/6/02,LAL vs. DAL,DAL
Turnaround Jump Shot,Jump Shot,468,20200278,33.9273,110,117,-118.1598,0,4,0,2002-03,8,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/6/02,LAL vs. DAL,DAL
Reverse Layup Shot,Layup,27,20200292,34.0443,0,0,-118.2698,9,1,0,2002-03,50,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Driving Layup Shot,Layup,47,20200292,34.0443,0,0,-118.2698,7,1,0,2002-03,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,176,20200292,33.9583,128,86,-118.1418,9,2,0,2002-03,1,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,224,20200292,33.9553,-5,89,-118.2748,5,2,0,2002-03,6,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,227,20200292,33.9093,15,135,-118.2548,4,2,0,2002-03,42,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/8/02,LAL vs. UTA,UTA
Slam Dunk Shot,Dunk,236,20200292,34.0443,0,0,-118.2698,4,2,0,2002-03,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Driving Layup Shot,Layup,270,20200292,34.0443,0,0,-118.2698,0,2,0,2002-03,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,277,20200292,33.9073,13,137,-118.2568,0,2,0,2002-03,0,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,293,20200292,33.8483,8,196,-118.2618,10,3,0,2002-03,35,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,336,20200292,33.9963,84,48,-118.1858,6,3,0,2002-03,31,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/8/02,LAL vs. UTA,UTA
Driving Layup Shot,Layup,353,20200292,34.0443,0,0,-118.2698,3,3,0,2002-03,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Driving Layup Shot,Layup,371,20200292,34.0443,0,0,-118.2698,2,3,0,2002-03,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,391,20200292,34.0093,-46,35,-118.3158,0,3,0,2002-03,40,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,483,20200292,34.0633,-238,-19,-118.5078,2,4,0,2002-03,45,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,490,20200292,34.0223,34,22,-118.2358,1,4,0,2002-03,42,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Driving Dunk Shot,Dunk,505,20200292,34.0443,0,0,-118.2698,0,4,0,2002-03,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/02,LAL vs. UTA,UTA
Jump Shot,Jump Shot,66,20200305,33.9373,148,107,-118.1218,4,1,0,2002-03,54,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/10/02,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,87,20200305,34.0443,0,0,-118.2698,2,1,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/02,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,98,20200305,34.0443,0,0,-118.2698,1,1,0,2002-03,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/02,LAL @ GSW,GSW
Reverse Layup Shot,Layup,100,20200305,34.0443,0,0,-118.2698,1,1,0,2002-03,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,102,20200305,33.9193,-10,125,-118.2798,0,1,0,2002-03,32,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/10/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,104,20200305,34.0223,-28,22,-118.2978,0,1,0,2002-03,3,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,142,20200305,33.9913,8,53,-118.2618,8,2,0,2002-03,13,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/10/02,LAL @ GSW,GSW
Reverse Layup Shot,Layup,261,20200305,34.0443,0,0,-118.2698,7,3,0,2002-03,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/10/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,266,20200305,34.0043,-28,40,-118.2978,6,3,0,2002-03,42,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/10/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,416,20200305,33.8633,166,181,-118.1038,3,4,0,2002-03,6,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/10/02,LAL @ GSW,GSW
Jump Shot,Jump Shot,428,20200305,34.0313,-138,13,-118.4078,1,4,0,2002-03,21,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/10/02,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,7,20200326,34.0443,0,0,-118.2698,10,1,0,2002-03,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/02,LAL vs. NOH,NOH
Driving Layup Shot,Layup,33,20200326,34.0443,0,0,-118.2698,7,1,0,2002-03,37,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/02,LAL vs. NOH,NOH
Jump Shot,Jump Shot,98,20200326,33.9993,18,45,-118.2518,0,1,0,2002-03,43,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/13/02,LAL vs. NOH,NOH
Alley Oop Layup shot,Layup,114,20200326,34.0443,0,0,-118.2698,11,2,0,2002-03,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/02,LAL vs. NOH,NOH
Slam Dunk Shot,Dunk,209,20200326,34.0443,0,0,-118.2698,0,2,0,2002-03,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/02,LAL vs. NOH,NOH
Jump Shot,Jump Shot,220,20200326,33.8963,110,148,-118.1598,11,3,0,2002-03,20,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/13/02,LAL vs. NOH,NOH
Driving Layup Shot,Layup,284,20200326,34.0443,0,0,-118.2698,3,3,0,2002-03,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/02,LAL vs. NOH,NOH
Jump Shot,Jump Shot,334,20200326,33.9583,-21,86,-118.2908,11,4,0,2002-03,20,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/13/02,LAL vs. NOH,NOH
Jump Shot,Jump Shot,338,20200326,33.8893,-126,155,-118.3958,10,4,0,2002-03,36,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/13/02,LAL vs. NOH,NOH
Slam Dunk Shot,Dunk,344,20200326,34.0443,0,0,-118.2698,9,4,0,2002-03,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/02,LAL vs. NOH,NOH
Jump Shot,Jump Shot,384,20200326,33.9123,10,132,-118.2598,5,4,0,2002-03,35,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/13/02,LAL vs. NOH,NOH
Jump Shot,Jump Shot,411,20200326,33.8963,62,148,-118.2078,4,4,0,2002-03,2,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/13/02,LAL vs. NOH,NOH
Jump Shot,Jump Shot,415,20200326,33.9113,29,133,-118.2408,3,4,0,2002-03,47,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/13/02,LAL vs. NOH,NOH
Layup Shot,Layup,43,20200341,34.0243,3,20,-118.2668,7,1,0,2002-03,38,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,71,20200341,33.9073,-2,137,-118.2718,5,1,0,2002-03,8,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,96,20200341,34.0243,135,20,-118.1348,2,1,0,2002-03,26,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,101,20200341,34.0413,-143,3,-118.4128,2,1,0,2002-03,18,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,273,20200341,34.0363,77,8,-118.1928,10,3,0,2002-03,50,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/15/02,LAL vs. ORL,ORL
Driving Layup Shot,Layup,276,20200341,34.0443,0,0,-118.2698,10,3,0,2002-03,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,290,20200341,34.0083,-38,36,-118.3078,9,3,0,2002-03,3,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,295,20200341,33.9043,-62,140,-118.3318,8,3,0,2002-03,23,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/15/02,LAL vs. ORL,ORL
Slam Dunk Shot,Dunk,301,20200341,34.0443,0,0,-118.2698,8,3,0,2002-03,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,342,20200341,34.0163,95,28,-118.1748,4,3,0,2002-03,27,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,393,20200341,33.8913,-44,153,-118.3138,0,3,0,2002-03,31,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/15/02,LAL vs. ORL,ORL
Jump Shot,Jump Shot,33,20200352,33.9963,128,48,-118.1418,5,1,0,2002-03,54,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,68,20200352,33.9223,-115,122,-118.3848,1,1,0,2002-03,24,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,111,20200352,34.0533,153,-9,-118.1168,9,2,0,2002-03,31,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,208,20200352,33.8173,-11,227,-118.2808,0,2,0,2002-03,41,22,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,213,20200352,33.9353,-153,109,-118.4228,0,2,0,2002-03,1,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/17/02,LAL @ MIN,MIN
Driving Dunk Shot,Dunk,222,20200352,34.0443,0,0,-118.2698,10,3,0,2002-03,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,228,20200352,33.9013,159,143,-118.1108,9,3,0,2002-03,49,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/17/02,LAL @ MIN,MIN
Layup Shot,Layup,295,20200352,34.0443,0,0,-118.2698,1,3,0,2002-03,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/02,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,301,20200352,33.8763,-75,168,-118.3448,0,3,0,2002-03,38,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,316,20200352,33.8573,141,187,-118.1288,11,4,0,2002-03,36,23,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,339,20200352,33.9533,195,91,-118.0748,7,4,0,2002-03,59,21,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/17/02,LAL @ MIN,MIN
Jump Shot,Jump Shot,11,20200367,33.9033,133,141,-118.1368,11,1,0,2002-03,1,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,21,20200367,33.8553,-120,189,-118.3898,9,1,0,2002-03,59,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,32,20200367,34.0423,176,2,-118.0938,8,1,0,2002-03,27,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Running Jump Shot,Jump Shot,37,20200367,33.9983,21,46,-118.2488,7,1,0,2002-03,55,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/19/02,LAL @ NJN,NJN
Reverse Layup Shot,Layup,58,20200367,34.0443,0,0,-118.2698,6,1,0,2002-03,19,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,89,20200367,33.9293,18,115,-118.2518,3,1,0,2002-03,16,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/19/02,LAL @ NJN,NJN
Reverse Layup Shot,Layup,118,20200367,34.0443,0,0,-118.2698,1,1,0,2002-03,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/02,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,126,20200367,33.9033,31,141,-118.2388,0,1,0,2002-03,1,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,132,20200367,33.8433,1,201,-118.2688,11,2,0,2002-03,31,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,157,20200367,33.8753,112,169,-118.1578,9,2,0,2002-03,6,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,203,20200367,33.9833,-72,61,-118.3418,4,2,0,2002-03,46,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,237,20200367,33.9623,21,82,-118.2488,2,2,0,2002-03,43,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/19/02,LAL @ NJN,NJN
Running Jump Shot,Jump Shot,248,20200367,34.0313,102,13,-118.1678,1,2,0,2002-03,25,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/19/02,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,258,20200367,34.0533,158,-9,-118.1118,0,2,0,2002-03,20,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/19/02,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,276,20200367,33.9063,-85,138,-118.3548,11,3,0,2002-03,25,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Running Jump Shot,Jump Shot,317,20200367,33.9783,-74,66,-118.3438,5,3,0,2002-03,57,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/19/02,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,333,20200367,33.8833,-89,161,-118.3588,4,3,0,2002-03,21,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Layup Shot,Layup,406,20200367,34.0443,0,0,-118.2698,8,4,0,2002-03,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,436,20200367,34.0443,227,0,-118.0428,5,4,0,2002-03,7,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,446,20200367,34.0443,130,0,-118.1398,4,4,0,2002-03,28,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,451,20200367,34.0183,190,26,-118.0798,4,4,0,2002-03,9,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,461,20200367,33.9813,177,63,-118.0928,2,4,0,2002-03,56,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/19/02,LAL @ NJN,NJN
Jump Shot,Jump Shot,2,20200372,34.0063,-29,38,-118.2988,11,1,0,2002-03,51,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Driving Layup Shot,Layup,12,20200372,34.0443,0,0,-118.2698,10,1,0,2002-03,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,27,20200372,34.0093,113,35,-118.1568,8,1,0,2002-03,9,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/02,LAL @ PHI,PHI
Fadeaway Jump Shot,Jump Shot,84,20200372,34.0573,117,-13,-118.1528,1,1,0,2002-03,41,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,106,20200372,33.9573,117,87,-118.1528,0,1,0,2002-03,2,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,132,20200372,34.0473,153,-3,-118.1168,9,2,0,2002-03,35,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/02,LAL @ PHI,PHI
Layup Shot,Layup,143,20200372,34.0443,0,0,-118.2698,7,2,0,2002-03,45,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Dunk Shot,Dunk,151,20200372,34.0443,0,0,-118.2698,7,2,0,2002-03,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,177,20200372,33.8553,103,189,-118.1668,5,2,0,2002-03,27,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/20/02,LAL @ PHI,PHI
Alley Oop Dunk Shot,Dunk,179,20200372,34.0443,0,0,-118.2698,5,2,0,2002-03,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,206,20200372,34.0533,-174,-9,-118.4438,1,2,0,2002-03,33,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,239,20200372,33.9393,-123,105,-118.3928,11,3,0,2002-03,37,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,263,20200372,34.0313,146,13,-118.1238,8,3,0,2002-03,24,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/20/02,LAL @ PHI,PHI
Layup Shot,Layup,267,20200372,34.0443,0,0,-118.2698,8,3,0,2002-03,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,273,20200372,34.0443,-33,0,-118.3028,7,3,0,2002-03,2,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,314,20200372,34.0393,164,5,-118.1058,3,3,0,2002-03,42,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,333,20200372,33.8433,179,201,-118.0908,0,3,0,2002-03,50,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/20/02,LAL @ PHI,PHI
Driving Layup Shot,Layup,335,20200372,34.0443,0,0,-118.2698,0,3,0,2002-03,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,339,20200372,33.3933,-207,651,-118.4768,0,3,0,2002-03,0,68,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,12/20/02,LAL @ PHI,PHI
Alley Oop Layup shot,Layup,345,20200372,34.0443,0,0,-118.2698,11,4,0,2002-03,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Turnaround Jump Shot,Jump Shot,380,20200372,34.0323,-141,12,-118.4108,9,4,0,2002-03,11,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/20/02,LAL @ PHI,PHI
Alley Oop Dunk Shot,Dunk,393,20200372,34.0443,0,0,-118.2698,8,4,0,2002-03,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,418,20200372,33.8013,89,243,-118.1808,5,4,0,2002-03,48,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,461,20200372,33.8943,3,150,-118.2668,1,4,0,2002-03,54,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,480,20200372,33.7833,89,261,-118.1808,0,4,0,2002-03,2,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,539,20200372,34.0473,-241,-3,-118.5108,0,5,0,2002-03,19,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/20/02,LAL @ PHI,PHI
Driving Dunk Shot,Dunk,546,20200372,34.0443,0,0,-118.2698,0,5,0,2002-03,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/02,LAL @ PHI,PHI
Jump Shot,Jump Shot,8,20200392,33.9303,72,114,-118.1978,10,1,0,2002-03,59,13,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,34,20200392,33.9073,108,137,-118.1618,7,1,0,2002-03,42,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,39,20200392,33.8553,-3,189,-118.2728,7,1,0,2002-03,11,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/22/02,LAL @ TOR,TOR
Turnaround Jump Shot,Jump Shot,59,20200392,33.9093,72,135,-118.1978,5,1,0,2002-03,2,15,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,70,20200392,33.8553,161,189,-118.1088,4,1,0,2002-03,18,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,87,20200392,34.0163,197,28,-118.0728,2,1,0,2002-03,46,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/22/02,LAL @ TOR,TOR
Driving Layup Shot,Layup,108,20200392,34.0443,0,0,-118.2698,1,1,0,2002-03,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,182,20200392,33.9173,67,127,-118.2028,8,2,0,2002-03,14,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/22/02,LAL @ TOR,TOR
Turnaround Jump Shot,Jump Shot,217,20200392,33.9033,-75,141,-118.3448,4,2,0,2002-03,53,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,219,20200392,34.0363,158,8,-118.1118,4,2,0,2002-03,15,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,250,20200392,33.8353,-151,209,-118.4208,0,2,0,2002-03,34,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/22/02,LAL @ TOR,TOR
Running Jump Shot,Jump Shot,252,20200392,33.9833,-20,61,-118.2898,0,2,0,2002-03,0,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,301,20200392,33.9733,-172,71,-118.4418,7,3,0,2002-03,58,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,306,20200392,33.8753,44,169,-118.2258,7,3,0,2002-03,1,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/22/02,LAL @ TOR,TOR
Fadeaway Jump Shot,Jump Shot,319,20200392,34.0273,176,17,-118.0938,5,3,0,2002-03,49,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/22/02,LAL @ TOR,TOR
Driving Layup Shot,Layup,348,20200392,34.0443,0,0,-118.2698,2,3,0,2002-03,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/02,LAL @ TOR,TOR
Jump Shot,Jump Shot,422,20200392,33.9703,130,74,-118.1398,7,4,0,2002-03,28,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/22/02,LAL @ TOR,TOR
Turnaround Jump Shot,Jump Shot,425,20200392,33.9853,-3,59,-118.2728,6,4,0,2002-03,55,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/22/02,LAL @ TOR,TOR
Turnaround Jump Shot,Jump Shot,436,20200392,34.0033,-100,41,-118.3698,5,4,0,2002-03,50,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/02,LAL @ TOR,TOR
Turnaround Jump Shot,Jump Shot,440,20200392,34.0243,-120,20,-118.3898,5,4,0,2002-03,3,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/02,LAL @ TOR,TOR
Running Jump Shot,Jump Shot,483,20200392,33.9503,47,94,-118.2228,0,4,0,2002-03,20,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/22/02,LAL @ TOR,TOR
Driving Layup Shot,Layup,545,20200392,34.0443,0,0,-118.2698,0,5,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/02,LAL @ TOR,TOR
Running Jump Shot,Jump Shot,20,20200404,33.8403,3,204,-118.2668,9,1,0,2002-03,49,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,24,20200404,33.9093,130,135,-118.1398,9,1,0,2002-03,13,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,78,20200404,34.0473,-159,-3,-118.4288,3,1,0,2002-03,15,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,98,20200404,34.0423,-105,2,-118.3748,1,1,0,2002-03,25,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/25/02,LAL vs. SAC,SAC
Driving Layup Shot,Layup,133,20200404,34.0443,0,0,-118.2698,10,2,0,2002-03,58,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/02,LAL vs. SAC,SAC
Turnaround Jump Shot,Jump Shot,137,20200404,34.0413,138,3,-118.1318,10,2,0,2002-03,23,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,142,20200404,33.9163,-113,128,-118.3828,9,2,0,2002-03,53,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,148,20200404,33.9173,135,127,-118.1348,8,2,0,2002-03,43,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,150,20200404,33.9963,8,48,-118.2618,8,2,0,2002-03,38,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/02,LAL vs. SAC,SAC
Running Jump Shot,Jump Shot,171,20200404,33.9113,-23,133,-118.2928,6,2,0,2002-03,28,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/02,LAL vs. SAC,SAC
Layup Shot,Layup,209,20200404,34.0443,0,0,-118.2698,2,2,0,2002-03,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/02,LAL vs. SAC,SAC
Layup Shot,Layup,243,20200404,34.0443,0,0,-118.2698,0,2,0,2002-03,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,260,20200404,33.9853,-163,59,-118.4328,11,3,0,2002-03,27,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/25/02,LAL vs. SAC,SAC
Driving Layup Shot,Layup,262,20200404,34.0443,0,0,-118.2698,11,3,0,2002-03,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,337,20200404,33.9803,21,64,-118.2488,4,3,0,2002-03,22,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,401,20200404,33.8963,-209,148,-118.4788,10,4,0,2002-03,28,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,433,20200404,33.9453,-52,99,-118.3218,8,4,0,2002-03,17,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,439,20200404,33.9043,-140,140,-118.4098,7,4,0,2002-03,19,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,450,20200404,33.9093,-82,135,-118.3518,6,4,0,2002-03,4,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,458,20200404,33.9583,-125,86,-118.3948,5,4,0,2002-03,38,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,474,20200404,33.7923,-6,252,-118.2758,4,4,0,2002-03,3,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/25/02,LAL vs. SAC,SAC
Jump Shot,Jump Shot,2,20200425,33.9303,190,114,-118.0798,11,1,0,2002-03,45,22,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,7,20200425,34.0323,-209,12,-118.4788,10,1,0,2002-03,30,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/28/02,LAL @ DEN,DEN
Reverse Layup Shot,Layup,32,20200425,34.0443,0,0,-118.2698,7,1,0,2002-03,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/02,LAL @ DEN,DEN
Alley Oop Dunk Shot,Dunk,78,20200425,34.0443,0,0,-118.2698,3,1,0,2002-03,12,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/02,LAL @ DEN,DEN
Reverse Layup Shot,Layup,85,20200425,34.0443,0,0,-118.2698,2,1,0,2002-03,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/02,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,106,20200425,33.9633,57,81,-118.2128,0,1,0,2002-03,8,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,185,20200425,34.0293,64,15,-118.2058,3,2,0,2002-03,31,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,200,20200425,33.9883,164,56,-118.1058,2,2,0,2002-03,44,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,223,20200425,33.8943,64,150,-118.2058,1,2,0,2002-03,2,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,234,20200425,33.6483,18,396,-118.2518,0,2,0,2002-03,0,39,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/28/02,LAL @ DEN,DEN
Driving Layup Shot,Layup,276,20200425,34.0443,0,0,-118.2698,6,3,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,279,20200425,33.8663,176,178,-118.0938,5,3,0,2002-03,55,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,303,20200425,33.9833,164,61,-118.1058,3,3,0,2002-03,57,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,320,20200425,33.9353,-146,109,-118.4158,1,3,0,2002-03,51,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,327,20200425,33.8943,194,150,-118.0758,0,3,0,2002-03,2,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/02,LAL @ DEN,DEN
Turnaround Jump Shot,Jump Shot,337,20200425,34.0453,182,-1,-118.0878,11,4,0,2002-03,15,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/02,LAL @ DEN,DEN
Slam Dunk Shot,Dunk,355,20200425,34.0443,0,0,-118.2698,9,4,0,2002-03,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/02,LAL @ DEN,DEN
Jump Shot,Jump Shot,5,20200431,33.8893,97,155,-118.1728,11,1,0,2002-03,24,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,26,20200431,33.9033,0,141,-118.2698,8,1,0,2002-03,9,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,44,20200431,34.0143,128,30,-118.1418,6,1,0,2002-03,11,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,63,20200431,33.9033,110,141,-118.1598,4,1,0,2002-03,4,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,98,20200431,33.7963,200,248,-118.0698,0,1,0,2002-03,0,31,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/29/02,LAL vs. TOR,TOR
Driving Layup Shot,Layup,224,20200431,34.0443,0,0,-118.2698,11,3,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,227,20200431,33.9213,59,123,-118.2108,10,3,0,2002-03,49,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/29/02,LAL vs. TOR,TOR
Turnaround Jump Shot,Jump Shot,283,20200431,34.0533,128,-9,-118.1418,3,3,0,2002-03,48,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,308,20200431,33.9033,18,141,-118.2518,2,3,0,2002-03,10,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,312,20200431,33.8943,77,150,-118.1928,1,3,0,2002-03,27,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/29/02,LAL vs. TOR,TOR
Layup Shot,Layup,373,20200431,34.0443,0,0,-118.2698,8,4,0,2002-03,25,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/29/02,LAL vs. TOR,TOR
Jump Shot,Jump Shot,14,20200471,33.8913,56,153,-118.2138,9,1,0,2002-03,40,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,31,20200471,33.8373,-79,207,-118.3488,8,1,0,2002-03,6,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,64,20200471,34.0183,103,26,-118.1668,4,1,0,2002-03,29,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,67,20200471,33.8613,-108,183,-118.3778,4,1,0,2002-03,2,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,102,20200471,33.6743,-123,370,-118.3928,0,1,0,2002-03,0,38,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,108,20200471,33.8533,-82,191,-118.3518,11,2,0,2002-03,17,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,110,20200471,33.8503,154,194,-118.1158,10,2,0,2002-03,35,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,187,20200471,33.9553,158,89,-118.1118,3,2,0,2002-03,2,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,201,20200471,34.0343,102,10,-118.1678,1,2,0,2002-03,54,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,213,20200471,33.9813,89,63,-118.1808,0,2,0,2002-03,49,10,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,229,20200471,33.7913,13,253,-118.2568,0,2,0,2002-03,0,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,244,20200471,34.0453,187,-1,-118.0828,10,3,0,2002-03,18,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,250,20200471,33.9813,-105,63,-118.3748,9,3,0,2002-03,37,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,258,20200471,33.8753,98,169,-118.1718,8,3,0,2002-03,45,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Slam Dunk Shot,Dunk,269,20200471,34.0443,0,0,-118.2698,7,3,0,2002-03,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,292,20200471,34.0633,167,-19,-118.1028,5,3,0,2002-03,11,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,334,20200471,33.8753,-171,169,-118.4408,1,3,0,2002-03,19,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,343,20200471,33.8763,26,168,-118.2438,0,3,0,2002-03,57,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,352,20200471,33.6483,128,396,-118.1418,0,3,0,2002-03,0,41,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,425,20200471,33.9623,159,82,-118.1108,5,4,0,2002-03,7,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Driving Dunk Shot,Dunk,430,20200471,34.0443,0,0,-118.2698,4,4,0,2002-03,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/03,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,461,20200471,33.9143,-8,130,-118.2778,2,4,0,2002-03,35,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,466,20200471,33.7923,-44,252,-118.3138,2,4,0,2002-03,14,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Driving Layup Shot,Layup,479,20200471,34.0443,0,0,-118.2698,1,4,0,2002-03,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,485,20200471,33.9073,192,137,-118.0778,1,4,0,2002-03,34,23,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,501,20200471,33.9113,-151,133,-118.4208,1,4,0,2002-03,20,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,505,20200471,33.8533,-59,191,-118.3288,1,4,0,2002-03,9,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/4/03,LAL @ PHX,PHX
Driving Layup Shot,Layup,521,20200471,34.0443,0,0,-118.2698,0,4,0,2002-03,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,526,20200471,33.8043,-72,240,-118.3418,0,4,0,2002-03,26,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,535,20200471,33.8243,115,220,-118.1548,0,4,0,2002-03,3,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/4/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,7,20200476,33.8983,103,146,-118.1668,10,1,0,2002-03,37,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,14,20200476,33.9093,52,135,-118.2178,9,1,0,2002-03,35,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,23,20200476,33.8023,-79,242,-118.3488,8,1,0,2002-03,16,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,63,20200476,33.8883,-135,156,-118.4048,4,1,0,2002-03,11,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,84,20200476,34.0093,-62,35,-118.3318,2,1,0,2002-03,40,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,97,20200476,33.9353,126,109,-118.1438,1,1,0,2002-03,10,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,106,20200476,33.9033,26,141,-118.2438,0,1,0,2002-03,36,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/5/03,LAL vs. PHX,PHX
Turnaround Jump Shot,Jump Shot,129,20200476,33.9833,-39,61,-118.3088,10,2,0,2002-03,21,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/5/03,LAL vs. PHX,PHX
Driving Layup Shot,Layup,197,20200476,34.0443,0,0,-118.2698,4,2,0,2002-03,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,226,20200476,33.8843,-123,160,-118.3928,2,2,0,2002-03,6,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/5/03,LAL vs. PHX,PHX
Driving Dunk Shot,Dunk,278,20200476,34.0443,0,0,-118.2698,10,3,0,2002-03,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/5/03,LAL vs. PHX,PHX
Reverse Layup Shot,Layup,323,20200476,34.0443,0,0,-118.2698,5,3,0,2002-03,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,327,20200476,33.9993,-237,45,-118.5068,4,3,0,2002-03,40,24,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,1/5/03,LAL vs. PHX,PHX
Turnaround Jump Shot,Jump Shot,347,20200476,33.8963,-79,148,-118.3488,2,3,0,2002-03,48,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,379,20200476,33.9093,-102,135,-118.3718,11,4,0,2002-03,40,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,386,20200476,34.0223,52,22,-118.2178,10,4,0,2002-03,44,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,396,20200476,33.8503,-177,194,-118.4468,9,4,0,2002-03,45,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/5/03,LAL vs. PHX,PHX
Driving Layup Shot,Layup,422,20200476,34.0443,0,0,-118.2698,7,4,0,2002-03,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,438,20200476,33.8223,-149,222,-118.4188,6,4,0,2002-03,5,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,484,20200476,33.8753,197,169,-118.0728,1,4,0,2002-03,37,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/5/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,16,20200490,33.8713,117,173,-118.1528,10,1,0,2002-03,42,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,18,20200490,34.0063,149,38,-118.1208,10,1,0,2002-03,29,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,61,20200490,34.0083,44,36,-118.2258,5,1,0,2002-03,28,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/7/03,LAL vs. SEA,SEA
Layup Shot,Layup,99,20200490,34.0443,0,0,-118.2698,2,1,0,2002-03,49,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/03,LAL vs. SEA,SEA
Slam Dunk Shot,Dunk,102,20200490,34.0443,0,0,-118.2698,2,1,0,2002-03,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/03,LAL vs. SEA,SEA
Dunk Shot,Dunk,117,20200490,34.0443,0,0,-118.2698,0,1,0,2002-03,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,125,20200490,33.7053,181,339,-118.0888,0,1,0,2002-03,1,38,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,135,20200490,34.0423,-148,2,-118.4178,10,2,0,2002-03,46,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,187,20200490,33.8023,-52,242,-118.3218,5,2,0,2002-03,28,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,203,20200490,33.8143,125,230,-118.1448,3,2,0,2002-03,18,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,216,20200490,33.8173,118,227,-118.1518,2,2,0,2002-03,40,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,220,20200490,33.7993,-99,245,-118.3688,2,2,0,2002-03,5,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,232,20200490,33.8373,136,207,-118.1338,0,2,0,2002-03,30,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Running Jump Shot,Jump Shot,240,20200490,34.0493,-94,-5,-118.3638,11,3,0,2002-03,34,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,259,20200490,33.8323,-131,212,-118.4008,9,3,0,2002-03,19,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,271,20200490,33.8303,-126,214,-118.3958,7,3,0,2002-03,17,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,276,20200490,33.8113,-99,233,-118.3688,6,3,0,2002-03,37,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,286,20200490,34.0473,-232,-3,-118.5018,5,3,0,2002-03,10,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,306,20200490,33.8273,121,217,-118.1488,3,3,0,2002-03,1,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,308,20200490,33.8013,89,243,-118.1808,2,3,0,2002-03,27,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,316,20200490,33.9553,120,89,-118.1498,1,3,0,2002-03,30,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,375,20200490,33.7993,75,245,-118.1948,7,4,0,2002-03,40,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/7/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,9,20200516,34.0113,144,33,-118.1258,11,1,0,2002-03,1,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/10/03,LAL vs. CLE,CLE
Jump Shot,Jump Shot,65,20200516,33.8883,197,156,-118.0728,5,1,0,2002-03,14,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/10/03,LAL vs. CLE,CLE
Dunk Shot,Dunk,86,20200516,34.0443,0,0,-118.2698,3,1,0,2002-03,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/10/03,LAL vs. CLE,CLE
Reverse Layup Shot,Layup,153,20200516,34.0443,0,0,-118.2698,9,2,0,2002-03,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/10/03,LAL vs. CLE,CLE
Jump Shot,Jump Shot,206,20200516,34.0533,227,-9,-118.0428,4,2,0,2002-03,30,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/10/03,LAL vs. CLE,CLE
Slam Dunk Shot,Dunk,211,20200516,34.0443,0,0,-118.2698,4,2,0,2002-03,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/10/03,LAL vs. CLE,CLE
Layup Shot,Layup,242,20200516,34.0443,0,0,-118.2698,1,2,0,2002-03,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/10/03,LAL vs. CLE,CLE
Driving Layup Shot,Layup,261,20200516,34.0443,0,0,-118.2698,11,3,0,2002-03,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/10/03,LAL vs. CLE,CLE
Driving Dunk Shot,Dunk,370,20200516,34.0443,0,0,-118.2698,2,3,0,2002-03,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/10/03,LAL vs. CLE,CLE
Jump Shot,Jump Shot,386,20200516,33.9403,-184,104,-118.4538,0,3,0,2002-03,26,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/10/03,LAL vs. CLE,CLE
Jump Shot,Jump Shot,14,20200530,33.8473,-44,197,-118.3138,10,1,0,2002-03,15,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/12/03,LAL vs. MIA,MIA
Running Jump Shot,Jump Shot,34,20200530,33.8983,-128,146,-118.3978,7,1,0,2002-03,5,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/12/03,LAL vs. MIA,MIA
Reverse Layup Shot,Layup,107,20200530,34.0443,0,0,-118.2698,11,2,0,2002-03,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,166,20200530,33.9633,10,81,-118.2598,4,2,0,2002-03,40,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,204,20200530,34.0393,-172,5,-118.4418,1,2,0,2002-03,21,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/12/03,LAL vs. MIA,MIA
Reverse Layup Shot,Layup,212,20200530,34.0443,0,0,-118.2698,0,2,0,2002-03,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Layup Shot,Layup,238,20200530,34.0443,0,0,-118.2698,10,3,0,2002-03,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,262,20200530,33.8553,-171,189,-118.4408,7,3,0,2002-03,59,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,268,20200530,33.8303,120,214,-118.1498,7,3,0,2002-03,12,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,271,20200530,34.0633,-115,-19,-118.3848,6,3,0,2002-03,58,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/12/03,LAL vs. MIA,MIA
Reverse Layup Shot,Layup,279,20200530,34.0443,0,0,-118.2698,6,3,0,2002-03,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Driving Layup Shot,Layup,286,20200530,34.0443,0,0,-118.2698,4,3,0,2002-03,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Reverse Layup Shot,Layup,326,20200530,34.0443,0,0,-118.2698,1,3,0,2002-03,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Reverse Layup Shot,Layup,340,20200530,34.0443,0,0,-118.2698,11,4,0,2002-03,44,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,346,20200530,34.0243,138,20,-118.1318,10,4,0,2002-03,53,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,355,20200530,34.0133,174,31,-118.0958,9,4,0,2002-03,36,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/12/03,LAL vs. MIA,MIA
Layup Shot,Layup,370,20200530,34.0443,0,0,-118.2698,8,4,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,4,20200546,34.0413,184,3,-118.0858,11,1,0,2002-03,41,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,12,20200546,34.0183,144,26,-118.1258,10,1,0,2002-03,40,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,24,20200546,33.9623,6,82,-118.2638,9,1,0,2002-03,28,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/15/03,LAL @ NOH,NOH
Layup Shot,Layup,26,20200546,33.9603,-14,84,-118.2838,9,1,0,2002-03,24,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,41,20200546,33.8583,121,186,-118.1488,7,1,0,2002-03,24,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,48,20200546,34.0443,-186,0,-118.4558,6,1,0,2002-03,7,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,68,20200546,33.8713,-6,173,-118.2758,3,1,0,2002-03,36,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,87,20200546,34.0093,-148,35,-118.4178,1,1,0,2002-03,37,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/15/03,LAL @ NOH,NOH
Driving Layup Shot,Layup,110,20200546,34.0443,0,0,-118.2698,11,2,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,117,20200546,33.8073,-36,237,-118.3058,10,2,0,2002-03,31,23,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,123,20200546,34.0413,225,3,-118.0448,9,2,0,2002-03,36,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/15/03,LAL @ NOH,NOH
Reverse Dunk Shot,Dunk,126,20200546,34.0443,0,0,-118.2698,9,2,0,2002-03,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,195,20200546,33.9833,236,61,-118.0338,1,2,0,2002-03,32,24,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,227,20200546,33.9813,-122,63,-118.3918,10,3,0,2002-03,56,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/15/03,LAL @ NOH,NOH
Driving Layup Shot,Layup,252,20200546,34.0443,0,0,-118.2698,8,3,0,2002-03,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/15/03,LAL @ NOH,NOH
Layup Shot,Layup,274,20200546,34.0443,0,0,-118.2698,5,3,0,2002-03,13,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,281,20200546,33.8223,3,222,-118.2668,4,3,0,2002-03,44,22,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Layup Shot,Layup,325,20200546,34.0443,0,0,-118.2698,0,3,0,2002-03,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,341,20200546,34.0493,202,-5,-118.0678,11,4,0,2002-03,2,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,344,20200546,34.0013,148,43,-118.1218,10,4,0,2002-03,24,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,348,20200546,34.0443,164,0,-118.1058,9,4,0,2002-03,33,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,353,20200546,33.9633,144,81,-118.1258,8,4,0,2002-03,47,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,395,20200546,33.9453,-189,99,-118.4588,5,4,0,2002-03,34,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,416,20200546,33.9753,80,69,-118.1898,2,4,0,2002-03,31,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,429,20200546,33.9673,-72,77,-118.3418,1,4,0,2002-03,37,10,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/15/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,5,20200563,33.8653,-176,179,-118.4458,11,1,0,2002-03,9,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,8,20200563,33.8383,-140,206,-118.4098,10,1,0,2002-03,32,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,40,20200563,33.7943,56,250,-118.2138,6,1,0,2002-03,27,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,101,20200563,33.8403,-172,204,-118.4418,0,1,0,2002-03,48,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,109,20200563,33.9963,57,48,-118.2128,0,1,0,2002-03,12,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,174,20200563,34.0443,0,0,-118.2698,11,2,0,2002-03,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,182,20200563,33.9503,-11,94,-118.2808,5,2,0,2002-03,49,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/17/03,LAL @ HOU,HOU
Tip Shot,Tip Shot,184,20200563,34.0443,0,0,-118.2698,5,2,0,2002-03,46,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,210,20200563,34.0573,-161,-13,-118.4308,3,2,0,2002-03,3,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,235,20200563,33.7973,10,247,-118.2598,0,2,0,2002-03,0,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,241,20200563,33.9633,-66,81,-118.3358,11,3,0,2002-03,23,10,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/17/03,LAL @ HOU,HOU
Layup Shot,Layup,312,20200563,34.0443,0,0,-118.2698,3,3,0,2002-03,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,433,20200563,33.9373,164,107,-118.1058,2,4,0,2002-03,25,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,436,20200563,33.8733,-49,171,-118.3188,1,4,0,2002-03,44,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/17/03,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,450,20200563,33.9393,-90,105,-118.3598,0,4,0,2002-03,36,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/17/03,LAL @ HOU,HOU
Reverse Layup Shot,Layup,466,20200563,34.0443,0,0,-118.2698,0,4,0,2002-03,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,492,20200563,33.8573,89,187,-118.1808,2,5,0,2002-03,5,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,548,20200563,33.8123,-120,232,-118.3898,0,5,0,2002-03,1,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/17/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,57,20200587,34.0133,172,31,-118.0978,5,1,0,2002-03,32,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/20/03,LAL vs. LAC,LAC
Driving Layup Shot,Layup,94,20200587,34.0443,0,0,-118.2698,2,1,0,2002-03,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/20/03,LAL vs. LAC,LAC
Slam Dunk Shot,Dunk,103,20200587,34.0443,0,0,-118.2698,1,1,0,2002-03,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,207,20200587,33.9093,-113,135,-118.3828,3,2,0,2002-03,39,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,213,20200587,33.8153,92,229,-118.1778,3,2,0,2002-03,20,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/20/03,LAL vs. LAC,LAC
Reverse Layup Shot,Layup,291,20200587,34.0443,0,0,-118.2698,8,3,0,2002-03,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,315,20200587,33.9063,-136,138,-118.4058,6,3,0,2002-03,46,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/20/03,LAL vs. LAC,LAC
Layup Shot,Layup,380,20200587,34.0443,0,0,-118.2698,0,3,0,2002-03,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,386,20200587,33.8483,-125,196,-118.3948,0,3,0,2002-03,0,23,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,393,20200587,33.9443,-163,100,-118.4328,11,4,0,2002-03,33,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/20/03,LAL vs. LAC,LAC
Fadeaway Jump Shot,Jump Shot,410,20200587,33.9853,115,59,-118.1548,8,4,0,2002-03,57,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,419,20200587,34.0013,-141,43,-118.4108,7,4,0,2002-03,45,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,433,20200587,33.8613,-79,183,-118.3488,6,4,0,2002-03,6,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,446,20200587,34.0143,-233,30,-118.5028,5,4,0,2002-03,4,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,464,20200587,33.9673,38,77,-118.2318,2,4,0,2002-03,44,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/20/03,LAL vs. LAC,LAC
Finger Roll Shot,Layup,486,20200587,34.0443,0,0,-118.2698,0,4,0,2002-03,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/20/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,26,20200602,33.8913,-103,153,-118.3728,9,1,0,2002-03,31,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,42,20200602,33.8613,38,183,-118.2318,6,1,0,2002-03,44,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,57,20200602,33.8043,-71,240,-118.3408,4,1,0,2002-03,41,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,60,20200602,33.9073,125,137,-118.1448,4,1,0,2002-03,12,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/22/03,LAL vs. GSW,GSW
Driving Layup Shot,Layup,79,20200602,34.0443,0,0,-118.2698,2,1,0,2002-03,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,87,20200602,33.8583,-172,186,-118.4418,1,1,0,2002-03,36,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/22/03,LAL vs. GSW,GSW
Running Jump Shot,Jump Shot,100,20200602,34.0313,59,13,-118.2108,0,1,0,2002-03,6,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,187,20200602,33.8013,3,243,-118.2668,1,2,0,2002-03,29,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/22/03,LAL vs. GSW,GSW
Driving Layup Shot,Layup,190,20200602,34.0443,0,0,-118.2698,1,2,0,2002-03,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,248,20200602,33.9853,97,59,-118.1728,6,3,0,2002-03,21,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,369,20200602,34.0063,59,38,-118.2108,7,4,0,2002-03,53,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/22/03,LAL vs. GSW,GSW
Reverse Layup Shot,Layup,438,20200602,34.0443,0,0,-118.2698,0,4,0,2002-03,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,451,20200602,33.8173,120,227,-118.1498,0,4,0,2002-03,7,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,458,20200602,33.8063,108,238,-118.1618,0,4,0,2002-03,2,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/22/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,15,20200616,34.0533,140,-9,-118.1298,9,1,0,2002-03,43,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,40,20200616,34.0343,-156,10,-118.4258,6,1,0,2002-03,19,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/24/03,LAL vs. NJN,NJN
Follow Up Dunk Shot,Dunk,54,20200616,34.0443,0,0,-118.2698,5,1,0,2002-03,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,71,20200616,33.8993,166,145,-118.1038,2,1,0,2002-03,57,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,82,20200616,33.9813,89,63,-118.1808,1,1,0,2002-03,19,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,91,20200616,34.0633,149,-19,-118.1208,0,1,0,2002-03,39,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,188,20200616,33.8273,131,217,-118.1388,0,2,0,2002-03,36,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,268,20200616,34.0523,112,-8,-118.1578,4,3,0,2002-03,37,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,280,20200616,33.9883,46,56,-118.2238,3,3,0,2002-03,29,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/24/03,LAL vs. NJN,NJN
Tip Shot,Tip Shot,281,20200616,34.0443,0,0,-118.2698,3,3,0,2002-03,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,304,20200616,33.8523,-57,192,-118.3268,1,3,0,2002-03,16,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,337,20200616,34.0443,121,0,-118.1488,10,4,0,2002-03,7,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/24/03,LAL vs. NJN,NJN
Turnaround Jump Shot,Jump Shot,411,20200616,34.0473,120,-3,-118.1498,3,4,0,2002-03,13,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/24/03,LAL vs. NJN,NJN
Jump Shot,Jump Shot,8,20200651,33.9983,61,46,-118.2088,10,1,0,2002-03,40,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,35,20200651,33.9293,0,115,-118.2698,6,1,0,2002-03,44,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/29/03,LAL @ PHX,PHX
Reverse Dunk Shot,Dunk,44,20200651,34.0443,0,0,-118.2698,5,1,0,2002-03,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,52,20200651,33.9813,118,63,-118.1518,4,1,0,2002-03,19,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,73,20200651,33.9443,133,100,-118.1368,2,1,0,2002-03,39,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,107,20200651,33.8533,-77,191,-118.3468,0,1,0,2002-03,25,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/29/03,LAL @ PHX,PHX
Layup Shot,Layup,118,20200651,34.0443,0,0,-118.2698,11,2,0,2002-03,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,160,20200651,34.0213,-159,23,-118.4288,8,2,0,2002-03,14,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/29/03,LAL @ PHX,PHX
Reverse Layup Shot,Layup,194,20200651,34.0443,0,0,-118.2698,5,2,0,2002-03,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,222,20200651,33.9993,153,45,-118.1168,2,2,0,2002-03,53,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/29/03,LAL @ PHX,PHX
Layup Shot,Layup,235,20200651,34.0443,0,0,-118.2698,0,2,0,2002-03,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,248,20200651,33.9753,-136,69,-118.4058,11,3,0,2002-03,47,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,331,20200651,33.9833,-148,61,-118.4178,2,3,0,2002-03,25,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,347,20200651,34.0093,-153,35,-118.4228,1,3,0,2002-03,5,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/29/03,LAL @ PHX,PHX
Layup Shot,Layup,356,20200651,34.0443,0,0,-118.2698,0,3,0,2002-03,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Layup Shot,Layup,403,20200651,34.0443,0,0,-118.2698,8,4,0,2002-03,19,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,411,20200651,33.9493,66,95,-118.2038,7,4,0,2002-03,52,11,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,414,20200651,34.0033,-125,41,-118.3948,7,4,0,2002-03,45,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,432,20200651,33.8783,67,166,-118.2028,5,4,0,2002-03,7,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,435,20200651,34.0363,223,8,-118.0468,4,4,0,2002-03,34,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/29/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,439,20200651,33.9063,-153,138,-118.4228,4,4,0,2002-03,2,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/29/03,LAL @ PHX,PHX
Dunk Shot,Dunk,477,20200651,34.0443,0,0,-118.2698,0,4,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/29/03,LAL @ PHX,PHX
Driving Layup Shot,Layup,28,20200667,34.0443,0,0,-118.2698,9,1,0,2002-03,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,51,20200667,34.0063,85,38,-118.1848,6,1,0,2002-03,29,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,66,20200667,33.9033,-197,141,-118.4668,4,1,0,2002-03,49,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/31/03,LAL @ SAC,SAC
Driving Layup Shot,Layup,75,20200667,34.0443,0,0,-118.2698,3,1,0,2002-03,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Layup Shot,Layup,80,20200667,34.0443,0,0,-118.2698,3,1,0,2002-03,4,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Driving Layup Shot,Layup,82,20200667,34.0443,0,0,-118.2698,2,1,0,2002-03,58,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Driving Dunk Shot,Dunk,88,20200667,34.0443,0,0,-118.2698,2,1,0,2002-03,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,110,20200667,33.5773,-69,467,-118.3388,0,1,0,2002-03,0,47,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,1/31/03,LAL @ SAC,SAC
Reverse Layup Shot,Layup,144,20200667,34.0443,0,0,-118.2698,8,2,0,2002-03,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Reverse Layup Shot,Layup,157,20200667,34.0293,-46,15,-118.3158,7,2,0,2002-03,14,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,191,20200667,33.8703,117,174,-118.1528,4,2,0,2002-03,6,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,199,20200667,33.9673,-169,77,-118.4388,3,2,0,2002-03,17,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/31/03,LAL @ SAC,SAC
Running Jump Shot,Jump Shot,222,20200667,33.9733,-21,71,-118.2908,0,2,0,2002-03,37,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,252,20200667,33.9243,-145,120,-118.4148,10,3,0,2002-03,42,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,276,20200667,34.0273,66,17,-118.2038,7,3,0,2002-03,45,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,283,20200667,33.9323,143,112,-118.1268,7,3,0,2002-03,11,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,286,20200667,34.0363,80,8,-118.1898,6,3,0,2002-03,40,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,288,20200667,34.0083,-33,36,-118.3028,6,3,0,2002-03,10,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,308,20200667,33.8713,-189,173,-118.4588,3,3,0,2002-03,52,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,313,20200667,33.8383,-11,206,-118.2808,3,3,0,2002-03,27,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,342,20200667,33.8863,146,158,-118.1238,1,3,0,2002-03,18,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,363,20200667,33.9883,34,56,-118.2358,11,4,0,2002-03,35,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,369,20200667,33.8753,199,169,-118.0708,10,4,0,2002-03,56,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/31/03,LAL @ SAC,SAC
Layup Shot,Layup,454,20200667,34.0443,0,0,-118.2698,3,4,0,2002-03,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,478,20200667,33.9733,151,71,-118.1188,1,4,0,2002-03,16,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/31/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,6,20200676,33.8713,82,173,-118.1878,11,1,0,2002-03,23,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Layup Shot,Layup,31,20200676,34.0443,0,0,-118.2698,8,1,0,2002-03,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/03,LAL vs. UTA,UTA
Driving Layup Shot,Layup,66,20200676,34.0443,0,0,-118.2698,4,1,0,2002-03,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,77,20200676,33.9473,38,97,-118.2318,4,1,0,2002-03,4,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/1/03,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,135,20200676,33.9633,-26,81,-118.2958,11,2,0,2002-03,23,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,146,20200676,33.8863,-128,158,-118.3978,9,2,0,2002-03,31,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,220,20200676,33.9223,110,122,-118.1598,1,2,0,2002-03,38,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,238,20200676,33.9603,-29,84,-118.2988,0,2,0,2002-03,25,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,249,20200676,33.8733,-131,171,-118.4008,11,3,0,2002-03,19,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Layup Shot,Layup,260,20200676,34.0443,0,0,-118.2698,10,3,0,2002-03,13,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,276,20200676,33.8733,82,171,-118.1878,8,3,0,2002-03,34,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,285,20200676,33.9013,-102,143,-118.3718,7,3,0,2002-03,0,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,306,20200676,33.9673,-46,77,-118.3158,4,3,0,2002-03,30,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,2/1/03,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,337,20200676,33.9093,123,135,-118.1468,0,3,0,2002-03,37,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,341,20200676,33.8893,-100,155,-118.3698,0,3,0,2002-03,4,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,347,20200676,33.7043,166,340,-118.1038,0,3,0,2002-03,0,37,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,358,20200676,33.9043,-122,140,-118.3918,11,4,0,2002-03,17,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Driving Layup Shot,Layup,361,20200676,34.0443,0,0,-118.2698,11,4,0,2002-03,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,374,20200676,33.9033,118,141,-118.1518,9,4,0,2002-03,48,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,377,20200676,33.8603,-163,184,-118.4328,9,4,0,2002-03,7,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,400,20200676,33.8533,-181,191,-118.4508,6,4,0,2002-03,15,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,412,20200676,33.8813,-13,163,-118.2828,4,4,0,2002-03,36,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,449,20200676,33.9453,36,99,-118.2338,1,4,0,2002-03,36,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/1/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,4,20200691,33.9123,126,132,-118.1438,11,1,0,2002-03,29,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/4/03,LAL @ IND,IND
Layup Shot,Layup,6,20200691,34.0223,11,22,-118.2588,11,1,0,2002-03,5,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,9,20200691,33.8863,13,158,-118.2568,11,1,0,2002-03,0,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,12,20200691,33.8243,-126,220,-118.3958,10,1,0,2002-03,29,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/4/03,LAL @ IND,IND
Dunk Shot,Dunk,16,20200691,34.0413,8,3,-118.2618,10,1,0,2002-03,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,31,20200691,34.0213,-179,23,-118.4488,8,1,0,2002-03,51,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,48,20200691,33.8703,-118,174,-118.3878,6,1,0,2002-03,32,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,102,20200691,33.8153,-94,229,-118.3638,0,1,0,2002-03,39,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,132,20200691,33.8603,-172,184,-118.4418,10,2,0,2002-03,3,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,140,20200691,34.0033,140,41,-118.1298,8,2,0,2002-03,29,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,239,20200691,34.0673,-140,-23,-118.4098,11,3,0,2002-03,47,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,286,20200691,34.0453,-126,-1,-118.3958,6,3,0,2002-03,58,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/4/03,LAL @ IND,IND
Layup Shot,Layup,296,20200691,34.0263,33,18,-118.2368,5,3,0,2002-03,58,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,322,20200691,33.9353,158,109,-118.1118,3,3,0,2002-03,56,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/4/03,LAL @ IND,IND
Layup Shot,Layup,358,20200691,34.0443,-10,0,-118.2798,1,3,0,2002-03,9,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/03,LAL @ IND,IND
Driving Layup Shot,Layup,373,20200691,34.0293,18,15,-118.2518,0,3,0,2002-03,5,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,408,20200691,33.9213,-54,123,-118.3238,8,4,0,2002-03,28,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,452,20200691,33.9903,-233,54,-118.5028,5,4,0,2002-03,8,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,463,20200691,33.8803,123,164,-118.1468,3,4,0,2002-03,40,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/4/03,LAL @ IND,IND
Layup Shot,Layup,474,20200691,34.0443,-21,0,-118.2908,2,4,0,2002-03,49,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,484,20200691,33.8653,166,179,-118.1038,1,4,0,2002-03,37,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,493,20200691,33.9993,-194,45,-118.4638,0,4,0,2002-03,8,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/4/03,LAL @ IND,IND
Jump Shot,Jump Shot,7,20200705,33.9063,174,138,-118.0958,11,1,0,2002-03,8,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,32,20200705,33.8503,-100,194,-118.3698,7,1,0,2002-03,18,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,55,20200705,34.0553,182,-11,-118.0878,5,1,0,2002-03,0,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Alley Oop Dunk Shot,Dunk,105,20200705,34.0443,0,0,-118.2698,11,2,0,2002-03,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,110,20200705,33.9063,-158,138,-118.4278,11,2,0,2002-03,23,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Turnaround Jump Shot,Jump Shot,123,20200705,34.0833,135,-39,-118.1348,10,2,0,2002-03,23,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,131,20200705,33.9533,179,91,-118.0908,9,2,0,2002-03,0,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Running Jump Shot,Jump Shot,171,20200705,33.9983,-18,46,-118.2878,5,2,0,2002-03,34,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/6/03,LAL @ NYK,NYK
Reverse Dunk Shot,Dunk,218,20200705,34.0443,0,0,-118.2698,1,2,0,2002-03,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,232,20200705,33.9623,-191,82,-118.4608,11,3,0,2002-03,13,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Layup Shot,Layup,237,20200705,34.0443,0,0,-118.2698,10,3,0,2002-03,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/03,LAL @ NYK,NYK
Driving Finger Roll Shot,Layup,248,20200705,34.0443,0,0,-118.2698,9,3,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,258,20200705,34.0553,159,-11,-118.1108,8,3,0,2002-03,28,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,287,20200705,33.8893,-89,155,-118.3588,5,3,0,2002-03,26,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,294,20200705,33.8013,51,243,-118.2188,4,3,0,2002-03,51,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/6/03,LAL @ NYK,NYK
Running Jump Shot,Jump Shot,297,20200705,34.0213,-92,23,-118.3618,4,3,0,2002-03,17,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,322,20200705,33.8353,-158,209,-118.4278,1,3,0,2002-03,41,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/6/03,LAL @ NYK,NYK
Fadeaway Jump Shot,Jump Shot,327,20200705,34.0163,156,28,-118.1138,0,3,0,2002-03,15,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,342,20200705,33.9473,167,97,-118.1028,11,4,0,2002-03,1,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,353,20200705,34.0093,-189,35,-118.4588,9,4,0,2002-03,25,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,401,20200705,33.9213,-158,123,-118.4278,3,4,0,2002-03,43,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/6/03,LAL @ NYK,NYK
Turnaround Jump Shot,Jump Shot,7,20200719,34.0113,13,33,-118.2568,11,1,0,2002-03,1,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,11,20200719,33.8993,84,145,-118.1858,10,1,0,2002-03,44,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,18,20200719,33.8043,92,240,-118.1778,9,1,0,2002-03,44,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/11/03,LAL vs. DEN,DEN
Layup Shot,Layup,32,20200719,34.0443,0,0,-118.2698,8,1,0,2002-03,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/11/03,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,74,20200719,34.0623,138,-18,-118.1318,3,1,0,2002-03,55,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/11/03,LAL vs. DEN,DEN
Running Jump Shot,Jump Shot,118,20200719,34.0133,71,31,-118.1988,0,1,0,2002-03,3,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/11/03,LAL vs. DEN,DEN
Alley Oop Dunk Shot,Dunk,167,20200719,34.0443,0,0,-118.2698,6,2,0,2002-03,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,177,20200719,33.9993,-117,45,-118.3868,5,2,0,2002-03,40,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,194,20200719,33.9113,117,133,-118.1528,4,2,0,2002-03,18,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,202,20200719,34.0503,182,-6,-118.0878,2,2,0,2002-03,58,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,233,20200719,33.8503,36,194,-118.2338,0,2,0,2002-03,3,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,235,20200719,33.8913,130,153,-118.1398,0,2,0,2002-03,0,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/11/03,LAL vs. DEN,DEN
Slam Dunk Shot,Dunk,266,20200719,34.0443,0,0,-118.2698,9,3,0,2002-03,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,279,20200719,33.7923,26,252,-118.2438,7,3,0,2002-03,51,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/11/03,LAL vs. DEN,DEN
Fadeaway Jump Shot,Jump Shot,281,20200719,34.0413,-118,3,-118.3878,7,3,0,2002-03,38,11,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/11/03,LAL vs. DEN,DEN
Reverse Dunk Shot,Dunk,325,20200719,34.0443,0,0,-118.2698,3,3,0,2002-03,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/11/03,LAL vs. DEN,DEN
Fadeaway Jump Shot,Jump Shot,334,20200719,33.9403,-112,104,-118.3818,2,3,0,2002-03,24,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,336,20200719,33.8663,105,178,-118.1648,2,3,0,2002-03,6,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,350,20200719,33.7993,85,245,-118.1848,0,3,0,2002-03,50,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/11/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,8,20200727,33.9393,161,105,-118.1088,10,1,0,2002-03,59,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,35,20200727,34.0363,153,8,-118.1168,8,1,0,2002-03,6,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,38,20200727,33.9143,182,130,-118.0878,7,1,0,2002-03,43,22,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,47,20200727,33.8683,-117,176,-118.3868,6,1,0,2002-03,30,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,79,20200727,33.9913,47,53,-118.2228,3,1,0,2002-03,58,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,117,20200727,33.8713,5,173,-118.2648,1,1,0,2002-03,38,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,124,20200727,34.0293,167,15,-118.1028,1,1,0,2002-03,8,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,209,20200727,33.8223,164,222,-118.1058,6,2,0,2002-03,12,27,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,227,20200727,33.8703,171,174,-118.0988,4,2,0,2002-03,12,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/12/03,LAL @ DEN,DEN
Turnaround Jump Shot,Jump Shot,243,20200727,33.9703,-153,74,-118.4228,3,2,0,2002-03,18,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,257,20200727,34.0163,169,28,-118.1008,2,2,0,2002-03,23,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,261,20200727,33.7913,1,253,-118.2688,1,2,0,2002-03,56,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/12/03,LAL @ DEN,DEN
Driving Layup Shot,Layup,302,20200727,34.0443,0,0,-118.2698,10,3,0,2002-03,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,313,20200727,33.8573,125,187,-118.1448,9,3,0,2002-03,10,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,331,20200727,34.0043,179,40,-118.0908,7,3,0,2002-03,47,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,348,20200727,33.8373,-18,207,-118.2878,6,3,0,2002-03,31,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,350,20200727,33.9963,172,48,-118.0978,6,3,0,2002-03,15,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,359,20200727,34.0373,186,7,-118.0838,5,3,0,2002-03,35,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,363,20200727,33.8683,189,176,-118.0808,5,3,0,2002-03,10,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/12/03,LAL @ DEN,DEN
Driving Dunk Shot,Dunk,382,20200727,34.0443,0,0,-118.2698,3,3,0,2002-03,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,391,20200727,34.0413,232,3,-118.0378,2,3,0,2002-03,42,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,399,20200727,33.9273,-192,117,-118.4618,1,3,0,2002-03,33,22,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/12/03,LAL @ DEN,DEN
Jump Shot,Jump Shot,9,20200743,33.8863,108,158,-118.1618,10,1,0,2002-03,36,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,21,20200743,33.9603,18,84,-118.2518,9,1,0,2002-03,5,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,27,20200743,34.0263,59,18,-118.2108,8,1,0,2002-03,3,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Fadeaway Jump Shot,Jump Shot,31,20200743,33.9903,-11,54,-118.2808,7,1,0,2002-03,23,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,33,20200743,33.8203,113,224,-118.1568,6,1,0,2002-03,42,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,36,20200743,33.8933,125,151,-118.1448,6,1,0,2002-03,19,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,44,20200743,33.8733,-85,171,-118.3548,4,1,0,2002-03,57,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,78,20200743,33.9403,-179,104,-118.4488,0,1,0,2002-03,57,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Tip Shot,Tip Shot,85,20200743,34.0443,0,0,-118.2698,0,1,0,2002-03,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,95,20200743,33.9113,123,133,-118.1468,11,2,0,2002-03,42,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,102,20200743,34.0033,-102,41,-118.3718,10,2,0,2002-03,42,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,108,20200743,33.9043,141,140,-118.1288,10,2,0,2002-03,10,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,170,20200743,33.8533,102,191,-118.1678,4,2,0,2002-03,29,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,177,20200743,33.9783,-26,66,-118.2958,3,2,0,2002-03,45,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Reverse Layup Shot,Layup,182,20200743,34.0443,0,0,-118.2698,2,2,0,2002-03,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,218,20200743,34.0533,135,-9,-118.1348,0,2,0,2002-03,0,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,231,20200743,33.8933,98,151,-118.1718,10,3,0,2002-03,47,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,251,20200743,34.0603,140,-16,-118.1298,8,3,0,2002-03,18,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,290,20200743,33.9933,126,51,-118.1438,5,3,0,2002-03,25,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,302,20200743,34.0133,164,31,-118.1058,4,3,0,2002-03,2,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,328,20200743,33.8843,-191,160,-118.4608,2,3,0,2002-03,5,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,332,20200743,34.0803,110,-36,-118.1598,1,3,0,2002-03,40,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,353,20200743,33.9423,-10,102,-118.2798,0,3,0,2002-03,25,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/14/03,LAL vs. SAS,SAS
Layup Shot,Layup,369,20200743,34.0443,0,0,-118.2698,11,4,0,2002-03,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Running Jump Shot,Jump Shot,379,20200743,33.9863,-5,58,-118.2748,10,4,0,2002-03,37,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Dunk Shot,Dunk,389,20200743,34.0443,0,0,-118.2698,9,4,0,2002-03,19,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Layup Shot,Layup,403,20200743,34.0443,0,0,-118.2698,8,4,0,2002-03,27,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Layup Shot,Layup,419,20200743,34.0443,0,0,-118.2698,7,4,0,2002-03,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,440,20200743,33.9633,-23,81,-118.2928,4,4,0,2002-03,20,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/14/03,LAL vs. SAS,SAS
Layup Shot,Layup,459,20200743,34.0443,0,0,-118.2698,2,4,0,2002-03,13,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,464,20200743,33.8653,62,179,-118.2078,1,4,0,2002-03,55,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,499,20200743,33.9683,187,76,-118.0828,0,4,0,2002-03,24,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/14/03,LAL vs. SAS,SAS
Reverse Layup Shot,Layup,13,20200757,34.0443,0,0,-118.2698,10,1,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,17,20200757,34.0313,126,13,-118.1438,9,1,0,2002-03,44,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/16/03,LAL vs. NYK,NYK
Layup Shot,Layup,54,20200757,34.0443,0,0,-118.2698,4,1,0,2002-03,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/16/03,LAL vs. NYK,NYK
Running Jump Shot,Jump Shot,57,20200757,33.8883,131,156,-118.1388,4,1,0,2002-03,11,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,64,20200757,33.9243,-177,120,-118.4468,3,1,0,2002-03,31,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Layup Shot,Layup,82,20200757,34.0443,0,0,-118.2698,1,1,0,2002-03,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,112,20200757,34.0623,-176,-18,-118.4458,10,2,0,2002-03,17,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,117,20200757,34.0503,118,-6,-118.1518,9,2,0,2002-03,45,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/16/03,LAL vs. NYK,NYK
Running Jump Shot,Jump Shot,120,20200757,34.0133,108,31,-118.1618,9,2,0,2002-03,16,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,122,20200757,34.0143,-200,30,-118.4698,8,2,0,2002-03,44,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,183,20200757,33.8193,151,225,-118.1188,3,2,0,2002-03,3,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/16/03,LAL vs. NYK,NYK
Running Jump Shot,Jump Shot,206,20200757,33.8113,-130,233,-118.3998,0,2,0,2002-03,35,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/16/03,LAL vs. NYK,NYK
Turnaround Jump Shot,Jump Shot,227,20200757,34.0013,-125,43,-118.3948,9,3,0,2002-03,49,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,238,20200757,34.0063,144,38,-118.1258,8,3,0,2002-03,2,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/16/03,LAL vs. NYK,NYK
Slam Dunk Shot,Dunk,273,20200757,34.0443,0,0,-118.2698,5,3,0,2002-03,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,278,20200757,33.9583,125,86,-118.1448,4,3,0,2002-03,19,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,303,20200757,33.9073,-92,137,-118.3618,2,3,0,2002-03,49,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Turnaround Jump Shot,Jump Shot,318,20200757,33.8843,-125,160,-118.3948,1,3,0,2002-03,48,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,337,20200757,33.8373,-16,207,-118.2858,11,4,0,2002-03,43,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,340,20200757,33.9063,-8,138,-118.2778,11,4,0,2002-03,13,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,342,20200757,34.0503,159,-6,-118.1108,10,4,0,2002-03,40,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,347,20200757,33.8753,75,169,-118.1948,9,4,0,2002-03,46,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,383,20200757,33.9403,-135,104,-118.4048,6,4,0,2002-03,32,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,418,20200757,34.0343,-227,10,-118.4968,2,4,0,2002-03,57,22,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,429,20200757,33.9173,227,127,-118.0428,2,4,0,2002-03,22,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,438,20200757,33.9163,77,128,-118.1928,1,4,0,2002-03,6,14,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/16/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,474,20200757,33.7973,33,247,-118.2368,0,4,0,2002-03,11,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/16/03,LAL vs. NYK,NYK
Turnaround Jump Shot,Jump Shot,13,20200769,33.9853,118,59,-118.1518,10,1,0,2002-03,39,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,24,20200769,33.9213,-118,123,-118.3878,9,1,0,2002-03,23,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Fadeaway Jump Shot,Jump Shot,28,20200769,33.8713,-26,173,-118.2958,8,1,0,2002-03,48,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,42,20200769,33.9983,-159,46,-118.4288,6,1,0,2002-03,52,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,57,20200769,33.9013,164,143,-118.1058,4,1,0,2002-03,38,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,65,20200769,34.0363,-99,8,-118.3688,4,1,0,2002-03,1,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,134,20200769,33.8703,-172,174,-118.4418,9,2,0,2002-03,41,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,138,20200769,33.8783,-181,166,-118.4508,8,2,0,2002-03,46,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,235,20200769,33.9623,167,82,-118.1028,11,3,0,2002-03,42,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,239,20200769,33.9653,-82,79,-118.3518,11,3,0,2002-03,15,11,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,254,20200769,33.8703,-56,174,-118.3258,8,3,0,2002-03,40,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,281,20200769,33.9143,-154,130,-118.4238,5,3,0,2002-03,43,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,297,20200769,34.0373,95,7,-118.1748,4,3,0,2002-03,26,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/18/03,LAL vs. HOU,HOU
Driving Dunk Shot,Dunk,316,20200769,34.0443,0,0,-118.2698,2,3,0,2002-03,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,351,20200769,33.8573,-171,187,-118.4408,10,4,0,2002-03,11,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,418,20200769,33.8203,-120,224,-118.3898,3,4,0,2002-03,29,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,422,20200769,33.9753,143,69,-118.1268,2,4,0,2002-03,51,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,443,20200769,34.0523,210,-8,-118.0598,0,4,0,2002-03,52,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,461,20200769,33.8223,110,222,-118.1598,0,4,0,2002-03,0,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/18/03,LAL vs. HOU,HOU
Driving Layup Shot,Layup,488,20200769,34.0443,0,0,-118.2698,2,5,0,2002-03,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,493,20200769,34.0163,84,28,-118.1858,1,5,0,2002-03,31,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,511,20200769,33.9993,43,45,-118.2268,0,5,0,2002-03,19,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/18/03,LAL vs. HOU,HOU
Driving Dunk Shot,Dunk,542,20200769,34.0443,0,0,-118.2698,2,6,0,2002-03,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,578,20200769,33.7943,-18,250,-118.2878,0,6,0,2002-03,19,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/18/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,12,20200774,33.8403,-135,204,-118.4048,10,1,0,2002-03,43,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,22,20200774,34.0623,212,-18,-118.0578,8,1,0,2002-03,46,21,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,24,20200774,34.0623,-148,-18,-118.4178,8,1,0,2002-03,9,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,33,20200774,33.8403,-138,204,-118.4078,6,1,0,2002-03,54,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,61,20200774,33.8863,-117,158,-118.3868,4,1,0,2002-03,37,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,70,20200774,33.8933,-67,151,-118.3368,3,1,0,2002-03,31,16,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,81,20200774,34.0263,186,18,-118.0838,1,1,0,2002-03,28,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,86,20200774,34.0503,187,-6,-118.0828,0,1,0,2002-03,51,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,88,20200774,33.9443,75,100,-118.1948,0,1,0,2002-03,51,12,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,152,20200774,33.9763,176,68,-118.0938,5,2,0,2002-03,32,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Layup Shot,Layup,156,20200774,34.0443,0,0,-118.2698,4,2,0,2002-03,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,190,20200774,33.9043,113,140,-118.1568,2,2,0,2002-03,2,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,192,20200774,33.9933,56,51,-118.2138,1,2,0,2002-03,58,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,277,20200774,33.8153,8,229,-118.2618,5,3,0,2002-03,17,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,290,20200774,34.0623,-168,-18,-118.4378,3,3,0,2002-03,46,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,296,20200774,33.8433,146,201,-118.1238,3,3,0,2002-03,13,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,315,20200774,34.0393,121,5,-118.1488,1,3,0,2002-03,19,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,318,20200774,33.7893,-13,255,-118.2828,0,3,0,2002-03,46,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,376,20200774,33.7873,-26,257,-118.2958,6,4,0,2002-03,59,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,395,20200774,34.0443,133,0,-118.1368,5,4,0,2002-03,0,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,402,20200774,33.9423,-172,102,-118.4418,4,4,0,2002-03,11,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,414,20200774,33.8683,126,176,-118.1438,3,4,0,2002-03,14,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,420,20200774,33.9063,-166,138,-118.4358,1,4,0,2002-03,58,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,430,20200774,34.0083,-202,36,-118.4718,0,4,0,2002-03,51,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/19/03,LAL @ UTA,UTA
Jump Shot,Jump Shot,2,20200790,33.8843,-191,160,-118.4608,11,1,0,2002-03,44,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/21/03,LAL vs. POR,POR
Driving Dunk Shot,Dunk,11,20200790,34.0443,0,0,-118.2698,10,1,0,2002-03,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,16,20200790,33.9043,-100,140,-118.3698,9,1,0,2002-03,44,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Turnaround Jump Shot,Jump Shot,62,20200790,34.0013,136,43,-118.1338,4,1,0,2002-03,19,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/21/03,LAL vs. POR,POR
Driving Dunk Shot,Dunk,81,20200790,34.0443,0,0,-118.2698,2,1,0,2002-03,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/03,LAL vs. POR,POR
Running Jump Shot,Jump Shot,84,20200790,33.9263,118,118,-118.1518,2,1,0,2002-03,11,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,93,20200790,33.9373,144,107,-118.1258,1,1,0,2002-03,1,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,99,20200790,33.9243,107,120,-118.1628,0,1,0,2002-03,34,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,109,20200790,33.4183,143,626,-118.1268,0,1,0,2002-03,0,64,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,116,20200790,33.9303,146,114,-118.1238,11,2,0,2002-03,32,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Running Jump Shot,Jump Shot,132,20200790,34.0473,166,-3,-118.1038,9,2,0,2002-03,13,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,177,20200790,33.8093,-74,235,-118.3438,4,2,0,2002-03,48,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/21/03,LAL vs. POR,POR
Driving Layup Shot,Layup,188,20200790,34.0443,0,0,-118.2698,3,2,0,2002-03,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,203,20200790,34.0583,202,-14,-118.0678,2,2,0,2002-03,8,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,206,20200790,33.9273,190,117,-118.0798,1,2,0,2002-03,44,22,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,243,20200790,33.9143,-136,130,-118.4058,9,3,0,2002-03,21,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Driving Layup Shot,Layup,350,20200790,34.0443,0,0,-118.2698,11,4,0,2002-03,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,357,20200790,34.0093,-141,35,-118.4108,10,4,0,2002-03,49,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,370,20200790,33.8783,-48,166,-118.3178,9,4,0,2002-03,44,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,390,20200790,33.9473,67,97,-118.2028,8,4,0,2002-03,23,11,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,437,20200790,33.9623,232,82,-118.0378,4,4,0,2002-03,16,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,443,20200790,33.8503,159,194,-118.1108,3,4,0,2002-03,43,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,452,20200790,33.8143,80,230,-118.1898,2,4,0,2002-03,43,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,469,20200790,34.0723,-151,-28,-118.4208,1,4,0,2002-03,42,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/21/03,LAL vs. POR,POR
Running Jump Shot,Jump Shot,483,20200790,34.0183,-163,26,-118.4328,0,4,0,2002-03,9,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/21/03,LAL vs. POR,POR
Jump Shot,Jump Shot,8,20200806,33.8293,-140,215,-118.4098,11,1,0,2002-03,9,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/23/03,LAL vs. SEA,SEA
Running Jump Shot,Jump Shot,17,20200806,33.9603,75,84,-118.1948,9,1,0,2002-03,41,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,26,20200806,33.9323,153,112,-118.1168,8,1,0,2002-03,24,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,28,20200806,33.9353,227,109,-118.0428,8,1,0,2002-03,19,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/23/03,LAL vs. SEA,SEA
Driving Layup Shot,Layup,33,20200806,34.0443,0,0,-118.2698,7,1,0,2002-03,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Layup Shot,Layup,103,20200806,34.0443,0,0,-118.2698,0,1,0,2002-03,58,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,134,20200806,33.9373,-169,107,-118.4388,10,2,0,2002-03,11,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/23/03,LAL vs. SEA,SEA
Turnaround Jump Shot,Jump Shot,176,20200806,34.0313,131,13,-118.1388,6,2,0,2002-03,8,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,221,20200806,33.9493,-34,95,-118.3038,1,2,0,2002-03,0,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,232,20200806,34.0523,161,-8,-118.1088,0,2,0,2002-03,32,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,243,20200806,33.9393,105,105,-118.1648,0,2,0,2002-03,0,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,250,20200806,33.9173,-110,127,-118.3798,11,3,0,2002-03,30,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,254,20200806,33.8423,-10,202,-118.2798,10,3,0,2002-03,39,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/23/03,LAL vs. SEA,SEA
Driving Layup Shot,Layup,268,20200806,34.0443,0,0,-118.2698,9,3,0,2002-03,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,271,20200806,34.0413,125,3,-118.1448,8,3,0,2002-03,26,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,313,20200806,33.8013,90,243,-118.1798,5,3,0,2002-03,17,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/23/03,LAL vs. SEA,SEA
Slam Dunk Shot,Dunk,321,20200806,34.0443,0,0,-118.2698,4,3,0,2002-03,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,329,20200806,33.8993,44,145,-118.2258,4,3,0,2002-03,9,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/23/03,LAL vs. SEA,SEA
Slam Dunk Shot,Dunk,346,20200806,34.0443,0,0,-118.2698,2,3,0,2002-03,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,366,20200806,33.7863,67,258,-118.2028,1,3,0,2002-03,27,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,389,20200806,33.7873,-66,257,-118.3358,0,3,0,2002-03,1,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/23/03,LAL vs. SEA,SEA
Reverse Layup Shot,Layup,396,20200806,34.0443,0,0,-118.2698,11,4,0,2002-03,48,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Turnaround Jump Shot,Jump Shot,405,20200806,34.0373,121,7,-118.1488,10,4,0,2002-03,22,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,470,20200806,33.9933,113,51,-118.1568,3,4,0,2002-03,43,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,476,20200806,33.9703,-3,74,-118.2728,3,4,0,2002-03,12,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,488,20200806,33.9303,-15,114,-118.2848,2,4,0,2002-03,8,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/23/03,LAL vs. SEA,SEA
Layup Shot,Layup,492,20200806,34.0443,0,0,-118.2698,1,4,0,2002-03,49,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,500,20200806,33.8933,-105,151,-118.3748,1,4,0,2002-03,21,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,507,20200806,33.9393,102,105,-118.1678,0,4,0,2002-03,47,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/23/03,LAL vs. SEA,SEA
Jump Shot,Jump Shot,17,20200820,33.9703,1,74,-118.2688,10,1,0,2002-03,12,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,25,20200820,34.0473,105,-3,-118.1648,9,1,0,2002-03,45,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/25/03,LAL vs. LAC,LAC
Layup Shot,Layup,27,20200820,34.0443,0,0,-118.2698,9,1,0,2002-03,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/03,LAL vs. LAC,LAC
Tip Shot,Tip Shot,46,20200820,34.0443,0,0,-118.2698,7,1,0,2002-03,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,161,20200820,34.0723,159,-28,-118.1108,8,2,0,2002-03,29,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,164,20200820,33.8383,-3,206,-118.2728,7,2,0,2002-03,45,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,169,20200820,33.7913,1,253,-118.2688,6,2,0,2002-03,36,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/25/03,LAL vs. LAC,LAC
Driving Dunk Shot,Dunk,172,20200820,34.0443,0,0,-118.2698,6,2,0,2002-03,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,184,20200820,33.9273,-6,117,-118.2758,4,2,0,2002-03,12,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,197,20200820,33.9783,-151,66,-118.4208,3,2,0,2002-03,10,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,202,20200820,33.8533,-158,191,-118.4278,2,2,0,2002-03,0,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,237,20200820,33.9963,140,48,-118.1298,10,3,0,2002-03,43,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,241,20200820,33.8173,-97,227,-118.3668,10,3,0,2002-03,17,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,259,20200820,33.8753,-74,169,-118.3438,7,3,0,2002-03,36,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,287,20200820,33.9763,-200,68,-118.4698,5,3,0,2002-03,4,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,320,20200820,33.9603,156,84,-118.1138,2,3,0,2002-03,47,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,333,20200820,34.0653,197,-21,-118.0728,1,3,0,2002-03,6,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,374,20200820,33.7993,-64,245,-118.3338,9,4,0,2002-03,27,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,378,20200820,33.9683,0,76,-118.2698,8,4,0,2002-03,41,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,414,20200820,33.9803,-230,64,-118.4998,5,4,0,2002-03,30,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,2/25/03,LAL vs. LAC,LAC
Layup Shot,Layup,417,20200820,34.0443,0,0,-118.2698,5,4,0,2002-03,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,425,20200820,34.0343,158,10,-118.1118,4,4,0,2002-03,28,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/25/03,LAL vs. LAC,LAC
Jump Shot,Jump Shot,428,20200820,34.0733,163,-29,-118.1068,4,4,0,2002-03,3,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/25/03,LAL vs. LAC,LAC
Slam Dunk Shot,Dunk,440,20200820,34.0443,0,0,-118.2698,3,4,0,2002-03,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/03,LAL vs. LAC,LAC
Turnaround Jump Shot,Jump Shot,25,20200833,34.0083,126,36,-118.1438,8,1,0,2002-03,54,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,65,20200833,33.9443,-141,100,-118.4108,3,1,0,2002-03,50,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/27/03,LAL vs. DET,DET
Slam Dunk Shot,Dunk,77,20200833,34.0443,0,0,-118.2698,2,1,0,2002-03,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,84,20200833,34.0473,164,-3,-118.1058,2,1,0,2002-03,13,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,107,20200833,33.9033,-107,141,-118.3768,11,2,0,2002-03,29,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,116,20200833,34.0703,131,-26,-118.1388,10,2,0,2002-03,33,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,123,20200833,34.0323,161,12,-118.1088,9,2,0,2002-03,45,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,175,20200833,33.7743,5,270,-118.2648,4,2,0,2002-03,3,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,219,20200833,34.0553,140,-11,-118.1298,0,2,0,2002-03,8,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/27/03,LAL vs. DET,DET
Dunk Shot,Dunk,253,20200833,34.0443,0,0,-118.2698,7,3,0,2002-03,46,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/03,LAL vs. DET,DET
Running Jump Shot,Jump Shot,256,20200833,33.9633,-105,81,-118.3748,7,3,0,2002-03,6,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,272,20200833,33.8533,-52,191,-118.3218,5,3,0,2002-03,52,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/27/03,LAL vs. DET,DET
Driving Dunk Shot,Dunk,303,20200833,34.0443,0,0,-118.2698,1,3,0,2002-03,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,327,20200833,33.9273,-84,117,-118.3538,11,4,0,2002-03,47,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,335,20200833,33.8583,-87,186,-118.3568,10,4,0,2002-03,18,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,344,20200833,34.0653,-126,-21,-118.3958,8,4,0,2002-03,47,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/27/03,LAL vs. DET,DET
Slam Dunk Shot,Dunk,346,20200833,34.0443,0,0,-118.2698,8,4,0,2002-03,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,355,20200833,33.9393,-48,105,-118.3178,7,4,0,2002-03,20,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/27/03,LAL vs. DET,DET
Turnaround Jump Shot,Jump Shot,399,20200833,33.9343,125,110,-118.1448,1,4,0,2002-03,28,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/27/03,LAL vs. DET,DET
Jump Shot,Jump Shot,5,20200842,33.8963,-164,148,-118.4338,11,1,0,2002-03,0,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Hook Shot,Hook Shot,16,20200842,33.8523,79,192,-118.1908,9,1,0,2002-03,41,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,55,20200842,34.0343,66,10,-118.2038,6,1,0,2002-03,14,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,70,20200842,33.8683,54,176,-118.2158,4,1,0,2002-03,10,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,87,20200842,33.8043,105,240,-118.1648,1,1,0,2002-03,39,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,117,20200842,33.8843,210,160,-118.0598,10,2,0,2002-03,41,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,126,20200842,33.8803,-186,164,-118.4558,9,2,0,2002-03,2,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,133,20200842,33.8723,-192,172,-118.4618,11,2,0,2002-03,29,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,177,20200842,33.7963,67,248,-118.2028,4,2,0,2002-03,20,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,181,20200842,33.8813,94,163,-118.1758,3,2,0,2002-03,52,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,209,20200842,34.0113,92,33,-118.1778,1,2,0,2002-03,47,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,217,20200842,34.0263,172,18,-118.0978,1,2,0,2002-03,27,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,250,20200842,33.8943,28,150,-118.2418,11,3,0,2002-03,35,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,2/28/03,LAL @ SEA,SEA
Driving Layup Shot,Layup,255,20200842,34.0443,0,0,-118.2698,10,3,0,2002-03,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,261,20200842,33.9453,-141,99,-118.4108,9,3,0,2002-03,36,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,272,20200842,33.7863,-15,258,-118.2848,8,3,0,2002-03,32,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,280,20200842,34.0313,138,13,-118.1318,7,3,0,2002-03,23,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,318,20200842,33.8883,52,156,-118.2178,3,3,0,2002-03,23,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,324,20200842,34.0633,144,-19,-118.1258,2,3,0,2002-03,28,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,341,20200842,34.0063,189,38,-118.0808,1,3,0,2002-03,3,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,402,20200842,33.8993,212,145,-118.0578,7,4,0,2002-03,13,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,405,20200842,33.7993,5,245,-118.2648,6,4,0,2002-03,42,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,408,20200842,33.8253,176,219,-118.0938,6,4,0,2002-03,14,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,415,20200842,33.9063,218,138,-118.0518,5,4,0,2002-03,41,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,459,20200842,33.8113,-85,233,-118.3548,1,4,0,2002-03,56,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/28/03,LAL @ SEA,SEA
Layup Shot,Layup,50,20200880,34.0443,0,0,-118.2698,6,1,0,2002-03,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,62,20200880,34.0143,51,30,-118.2188,5,1,0,2002-03,34,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,76,20200880,33.9043,69,140,-118.2008,4,1,0,2002-03,31,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,85,20200880,33.8943,-146,150,-118.4158,2,1,0,2002-03,33,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,88,20200880,33.9293,-187,115,-118.4568,1,1,0,2002-03,51,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,103,20200880,33.9833,-159,61,-118.4288,0,1,0,2002-03,18,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,122,20200880,34.0443,-123,0,-118.3928,10,2,0,2002-03,32,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,178,20200880,33.9473,-163,97,-118.4328,5,2,0,2002-03,0,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,261,20200880,34.0093,-38,35,-118.3078,0,2,0,2002-03,26,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,291,20200880,33.8733,84,171,-118.1858,10,3,0,2002-03,5,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/5/03,LAL vs. IND,IND
Running Jump Shot,Jump Shot,341,20200880,33.9733,-39,71,-118.3088,5,3,0,2002-03,14,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/5/03,LAL vs. IND,IND
Running Jump Shot,Jump Shot,348,20200880,33.9653,0,79,-118.2698,3,3,0,2002-03,57,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,360,20200880,34.0113,-156,33,-118.4258,2,3,0,2002-03,54,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,396,20200880,33.8113,164,233,-118.1058,0,3,0,2002-03,0,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/5/03,LAL vs. IND,IND
Driving Layup Shot,Layup,425,20200880,34.0443,0,0,-118.2698,9,4,0,2002-03,12,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/5/03,LAL vs. IND,IND
Reverse Dunk Shot,Dunk,447,20200880,34.0443,0,0,-118.2698,6,4,0,2002-03,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,453,20200880,33.8713,36,173,-118.2338,5,4,0,2002-03,9,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,466,20200880,33.8473,77,197,-118.1928,3,4,0,2002-03,37,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,474,20200880,33.9813,0,63,-118.2698,3,4,0,2002-03,19,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,479,20200880,33.8063,-102,238,-118.3718,2,4,0,2002-03,30,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,486,20200880,34.0573,-117,-13,-118.3868,2,4,0,2002-03,18,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/5/03,LAL vs. IND,IND
Jump Shot,Jump Shot,19,20200890,33.9223,133,122,-118.1368,9,1,0,2002-03,11,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,24,20200890,33.8803,112,164,-118.1578,8,1,0,2002-03,20,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,69,20200890,33.9243,146,120,-118.1238,3,1,0,2002-03,20,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,80,20200890,33.8403,158,204,-118.1118,1,1,0,2002-03,58,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/7/03,LAL vs. MIN,MIN
Turnaround Jump Shot,Jump Shot,109,20200890,33.9983,107,46,-118.1628,11,2,0,2002-03,39,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,129,20200890,33.9243,-110,120,-118.3798,9,2,0,2002-03,36,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Hook Shot,Jump Shot,131,20200890,33.9763,10,68,-118.2598,9,2,0,2002-03,33,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/7/03,LAL vs. MIN,MIN
Fadeaway Jump Shot,Jump Shot,185,20200890,34.0553,176,-11,-118.0938,4,2,0,2002-03,50,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,187,20200890,33.9013,-77,143,-118.3468,4,2,0,2002-03,16,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,206,20200890,34.0523,-204,-8,-118.4738,2,2,0,2002-03,21,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,264,20200890,34.0533,-159,-9,-118.4288,8,3,0,2002-03,59,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,281,20200890,33.9983,128,46,-118.1418,7,3,0,2002-03,26,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,344,20200890,33.8143,-95,230,-118.3648,0,3,0,2002-03,5,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,356,20200890,33.8803,-97,164,-118.3668,11,4,0,2002-03,1,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,362,20200890,33.9633,-74,81,-118.3438,10,4,0,2002-03,30,10,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,374,20200890,33.7893,39,255,-118.2308,8,4,0,2002-03,59,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,390,20200890,33.8703,-87,174,-118.3568,8,4,0,2002-03,3,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,408,20200890,33.8863,-128,158,-118.3978,5,4,0,2002-03,41,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/7/03,LAL vs. MIN,MIN
Jump Shot,Jump Shot,17,20200901,33.8703,112,174,-118.1578,9,1,0,2002-03,21,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,48,20200901,33.9813,87,63,-118.1828,6,1,0,2002-03,6,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/03,LAL vs. PHI,PHI
Turnaround Jump Shot,Jump Shot,67,20200901,34.0323,149,12,-118.1208,4,1,0,2002-03,10,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,104,20200901,33.7663,10,278,-118.2598,1,1,0,2002-03,26,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,134,20200901,33.9073,-97,137,-118.3668,11,2,0,2002-03,23,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,146,20200901,34.0473,163,-3,-118.1068,9,2,0,2002-03,42,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,151,20200901,33.9863,-8,58,-118.2778,9,2,0,2002-03,16,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,153,20200901,33.8483,79,196,-118.1908,8,2,0,2002-03,38,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,235,20200901,33.8893,112,155,-118.1578,1,2,0,2002-03,36,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,248,20200901,33.9583,125,86,-118.1448,0,2,0,2002-03,29,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,294,20200901,34.0503,171,-6,-118.0988,9,3,0,2002-03,7,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,312,20200901,33.8863,-151,158,-118.4208,7,3,0,2002-03,14,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Driving Layup Shot,Layup,356,20200901,34.0443,0,0,-118.2698,3,3,0,2002-03,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,392,20200901,33.9033,-38,141,-118.3078,0,3,0,2002-03,43,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,396,20200901,33.9043,-122,140,-118.3918,0,3,0,2002-03,0,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,409,20200901,33.9063,-103,138,-118.3728,11,4,0,2002-03,9,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/9/03,LAL vs. PHI,PHI
Jump Shot,Jump Shot,4,20200917,33.9443,141,100,-118.1288,11,1,0,2002-03,27,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Fadeaway Jump Shot,Jump Shot,34,20200917,34.0133,-97,31,-118.3668,7,1,0,2002-03,35,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/11/03,LAL @ CHI,CHI
Layup Shot,Layup,38,20200917,34.0443,0,0,-118.2698,7,1,0,2002-03,12,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,41,20200917,34.0473,187,-3,-118.0828,6,1,0,2002-03,47,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Dunk Shot,Dunk,43,20200917,34.0443,0,0,-118.2698,6,1,0,2002-03,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,48,20200917,34.0033,172,41,-118.0978,6,1,0,2002-03,5,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,104,20200917,33.8533,-69,191,-118.3388,11,2,0,2002-03,42,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,121,20200917,33.8473,74,197,-118.1958,9,2,0,2002-03,45,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,189,20200917,33.9373,222,107,-118.0478,4,2,0,2002-03,21,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,196,20200917,34.0553,153,-11,-118.1168,3,2,0,2002-03,56,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,206,20200917,33.8473,172,197,-118.0978,2,2,0,2002-03,47,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,217,20200917,34.0343,-82,10,-118.3518,1,2,0,2002-03,54,8,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,282,20200917,34.0343,166,10,-118.1038,7,3,0,2002-03,24,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Layup Shot,Layup,298,20200917,34.0443,0,0,-118.2698,5,3,0,2002-03,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/11/03,LAL @ CHI,CHI
Layup Shot,Layup,310,20200917,34.0443,0,0,-118.2698,3,3,0,2002-03,35,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,323,20200917,33.9193,-191,125,-118.4608,2,3,0,2002-03,15,22,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,346,20200917,33.8633,-176,181,-118.4458,0,3,0,2002-03,0,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,352,20200917,33.8843,-146,160,-118.4158,11,4,0,2002-03,12,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Layup Shot,Layup,357,20200917,34.0443,0,0,-118.2698,10,4,0,2002-03,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/11/03,LAL @ CHI,CHI
Driving Layup Shot,Layup,365,20200917,34.0443,0,0,-118.2698,9,4,0,2002-03,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,393,20200917,33.9063,108,138,-118.1618,5,4,0,2002-03,28,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,414,20200917,33.9983,-71,46,-118.3408,3,4,0,2002-03,1,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,435,20200917,33.8613,171,183,-118.0988,1,4,0,2002-03,10,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,460,20200917,33.9803,133,64,-118.1368,0,4,0,2002-03,27,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/11/03,LAL @ CHI,CHI
Jump Shot,Jump Shot,20,20200925,33.8123,-110,232,-118.3798,9,1,0,2002-03,55,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/12/03,LAL @ DET,DET
Layup Shot,Layup,23,20200925,34.0443,0,0,-118.2698,9,1,0,2002-03,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/03,LAL @ DET,DET
Layup Shot,Layup,25,20200925,34.0443,0,0,-118.2698,9,1,0,2002-03,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,35,20200925,33.7943,98,250,-118.1718,8,1,0,2002-03,40,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,51,20200925,34.0063,-159,38,-118.4288,6,1,0,2002-03,32,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,93,20200925,34.0243,-164,20,-118.4338,1,1,0,2002-03,3,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,95,20200925,34.0423,-194,2,-118.4638,0,1,0,2002-03,37,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,103,20200925,33.9753,158,69,-118.1118,11,2,0,2002-03,40,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/12/03,LAL @ DET,DET
Layup Shot,Layup,166,20200925,34.0443,0,0,-118.2698,4,2,0,2002-03,57,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,179,20200925,34.0163,-202,28,-118.4718,3,2,0,2002-03,55,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,222,20200925,33.8603,-110,184,-118.3798,0,2,0,2002-03,3,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/12/03,LAL @ DET,DET
Layup Shot,Layup,244,20200925,34.0443,0,0,-118.2698,9,3,0,2002-03,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,282,20200925,33.8983,-16,146,-118.2858,3,3,0,2002-03,15,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,329,20200925,33.9933,156,51,-118.1138,10,4,0,2002-03,51,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,336,20200925,34.0323,156,12,-118.1138,10,4,0,2002-03,7,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,344,20200925,33.9953,131,49,-118.1388,9,4,0,2002-03,22,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/12/03,LAL @ DET,DET
Layup Shot,Layup,395,20200925,34.0443,0,0,-118.2698,4,4,0,2002-03,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,407,20200925,34.0243,103,20,-118.1668,2,4,0,2002-03,51,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/12/03,LAL @ DET,DET
Jump Shot,Jump Shot,2,20200938,33.9353,-177,109,-118.4468,11,1,0,2002-03,45,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,8,20200938,34.0573,125,-13,-118.1448,10,1,0,2002-03,38,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,21,20200938,33.9723,46,72,-118.2238,8,1,0,2002-03,32,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,25,20200938,34.0373,-171,7,-118.4408,8,1,0,2002-03,18,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,50,20200938,33.9763,-59,68,-118.3288,6,1,0,2002-03,16,9,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,69,20200938,33.9143,-156,130,-118.4258,4,1,0,2002-03,8,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Layup Shot,Layup,75,20200938,34.0443,0,0,-118.2698,3,1,0,2002-03,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,97,20200938,33.9323,-131,112,-118.4008,1,1,0,2002-03,34,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,106,20200938,33.8533,-192,191,-118.4618,0,1,0,2002-03,35,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/14/03,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,211,20200938,33.9323,-163,112,-118.4328,1,2,0,2002-03,19,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,221,20200938,34.0523,136,-8,-118.1338,0,2,0,2002-03,5,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,252,20200938,34.0343,181,10,-118.0888,8,3,0,2002-03,34,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,256,20200938,34.0243,115,20,-118.1548,8,3,0,2002-03,28,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,277,20200938,33.9273,-154,117,-118.4238,5,3,0,2002-03,39,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,280,20200938,33.7923,-16,252,-118.2858,5,3,0,2002-03,11,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,350,20200938,33.9113,136,133,-118.1338,10,4,0,2002-03,51,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,362,20200938,34.0683,184,-24,-118.0858,9,4,0,2002-03,10,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,375,20200938,33.9703,-182,74,-118.4518,7,4,0,2002-03,22,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/14/03,LAL @ MIN,MIN
Layup Shot,Layup,402,20200938,34.0443,0,0,-118.2698,5,4,0,2002-03,32,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/14/03,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,449,20200938,33.9623,-102,82,-118.3718,1,4,0,2002-03,49,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/14/03,LAL @ MIN,MIN
Jump Shot,Jump Shot,44,20200946,33.8683,-128,176,-118.3978,7,1,0,2002-03,36,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,88,20200946,33.9343,-136,110,-118.4058,3,1,0,2002-03,18,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,154,20200946,34.0583,112,-14,-118.1578,8,2,0,2002-03,38,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,226,20200946,34.0343,80,10,-118.1898,3,2,0,2002-03,0,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,245,20200946,33.8913,-205,153,-118.4748,0,2,0,2002-03,4,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/15/03,LAL @ MIL,MIL
Layup Shot,Layup,268,20200946,34.0443,0,0,-118.2698,9,3,0,2002-03,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,281,20200946,34.0133,-141,31,-118.4108,7,3,0,2002-03,6,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,304,20200946,34.0623,131,-18,-118.1388,4,3,0,2002-03,32,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,312,20200946,33.8683,-110,176,-118.3798,3,3,0,2002-03,50,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/15/03,LAL @ MIL,MIL
Layup Shot,Layup,340,20200946,34.0443,0,0,-118.2698,1,3,0,2002-03,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,363,20200946,34.0093,171,35,-118.0988,11,4,0,2002-03,47,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,367,20200946,33.9303,235,114,-118.0348,11,4,0,2002-03,1,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/15/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,17,20200960,33.8863,156,158,-118.1138,8,1,0,2002-03,11,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/17/03,LAL @ LAC,LAC
Jump Shot,Jump Shot,55,20200960,33.8473,-57,197,-118.3268,2,1,0,2002-03,50,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/17/03,LAL @ LAC,LAC
Reverse Layup Shot,Layup,171,20200960,34.0443,0,0,-118.2698,2,2,0,2002-03,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/03,LAL @ LAC,LAC
Jump Shot,Jump Shot,194,20200960,33.9813,38,63,-118.2318,1,2,0,2002-03,35,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/17/03,LAL @ LAC,LAC
Jump Shot,Jump Shot,220,20200960,33.7763,-23,268,-118.2928,11,3,0,2002-03,26,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/17/03,LAL @ LAC,LAC
Jump Shot,Jump Shot,325,20200960,33.8863,133,158,-118.1368,11,4,0,2002-03,45,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/17/03,LAL @ LAC,LAC
Jump Shot,Jump Shot,335,20200960,33.8933,85,151,-118.1848,10,4,0,2002-03,29,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/17/03,LAL @ LAC,LAC
Jump Shot,Jump Shot,412,20200960,34.0263,164,18,-118.1058,2,4,0,2002-03,56,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/17/03,LAL @ LAC,LAC
Jump Shot,Jump Shot,6,20200983,34.0503,158,-6,-118.1118,11,1,0,2002-03,1,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,29,20200983,34.0323,181,12,-118.0888,8,1,0,2002-03,13,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Tip Shot,Tip Shot,32,20200983,34.0443,0,0,-118.2698,8,1,0,2002-03,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,35,20200983,34.0273,-75,17,-118.3448,8,1,0,2002-03,6,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,68,20200983,34.0133,61,31,-118.2088,3,1,0,2002-03,55,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,76,20200983,33.8403,3,204,-118.2668,2,1,0,2002-03,46,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,97,20200983,33.8353,-158,209,-118.4278,1,1,0,2002-03,26,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,132,20200983,33.8573,-59,187,-118.3288,9,2,0,2002-03,32,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,196,20200983,33.9093,181,135,-118.0888,4,2,0,2002-03,51,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,232,20200983,34.0343,74,10,-118.1958,1,2,0,2002-03,32,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,238,20200983,33.8753,-145,169,-118.4148,0,2,0,2002-03,34,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,267,20200983,34.0343,235,10,-118.0348,10,3,0,2002-03,51,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/20/03,LAL @ SAC,SAC
Driving Layup Shot,Layup,284,20200983,34.0443,0,0,-118.2698,8,3,0,2002-03,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,286,20200983,33.8583,126,186,-118.1438,8,3,0,2002-03,13,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,294,20200983,34.0243,133,20,-118.1368,7,3,0,2002-03,8,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,296,20200983,33.9953,33,49,-118.2368,7,3,0,2002-03,3,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,317,20200983,33.9753,192,69,-118.0778,4,3,0,2002-03,38,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,338,20200983,33.9193,195,125,-118.0748,2,3,0,2002-03,49,23,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Alley Oop Dunk Shot,Dunk,362,20200983,34.0443,0,0,-118.2698,0,3,0,2002-03,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,368,20200983,34.0093,166,35,-118.1038,0,3,0,2002-03,22,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,383,20200983,33.9753,-168,69,-118.4378,11,4,0,2002-03,15,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,389,20200983,33.9813,72,63,-118.1978,10,4,0,2002-03,14,9,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/20/03,LAL @ SAC,SAC
Fadeaway Jump Shot,Jump Shot,396,20200983,34.0573,-197,-13,-118.4668,9,4,0,2002-03,35,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,402,20200983,33.8423,-141,202,-118.4108,8,4,0,2002-03,28,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,437,20200983,34.0323,187,12,-118.0828,4,4,0,2002-03,47,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/20/03,LAL @ SAC,SAC
Layup Shot,Layup,465,20200983,34.0443,0,0,-118.2698,2,4,0,2002-03,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,491,20200983,33.7913,100,253,-118.1698,0,4,0,2002-03,40,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,493,20200983,33.7973,-43,247,-118.3128,0,4,0,2002-03,34,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/20/03,LAL @ SAC,SAC
Jump Shot,Jump Shot,5,20200993,33.8203,131,224,-118.1388,11,1,0,2002-03,5,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/21/03,LAL vs. BOS,BOS
Running Jump Shot,Jump Shot,28,20200993,34.0183,72,26,-118.1978,7,1,0,2002-03,31,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/21/03,LAL vs. BOS,BOS
Reverse Layup Shot,Layup,103,20200993,34.0443,0,0,-118.2698,11,2,0,2002-03,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,107,20200993,33.7913,-61,253,-118.3308,10,2,0,2002-03,26,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/21/03,LAL vs. BOS,BOS
Turnaround Jump Shot,Jump Shot,114,20200993,33.9493,-115,95,-118.3848,9,2,0,2002-03,41,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/21/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,350,20200993,33.8483,103,196,-118.1668,11,4,0,2002-03,4,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/21/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,364,20200993,34.0093,105,35,-118.1648,9,4,0,2002-03,43,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/21/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,11,20201003,33.9293,144,115,-118.1258,9,1,0,2002-03,58,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/23/03,LAL @ SAS,SAS
Driving Layup Shot,Layup,77,20201003,34.0413,23,3,-118.2468,2,1,0,2002-03,40,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Layup Shot,Layup,79,20201003,34.0363,23,8,-118.2468,2,1,0,2002-03,33,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,106,20201003,33.9193,-156,125,-118.4258,0,1,0,2002-03,51,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,109,20201003,34.0293,-163,15,-118.4328,0,1,0,2002-03,30,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,124,20201003,33.7273,197,317,-118.0728,10,2,0,2002-03,32,37,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,144,20201003,33.8273,43,217,-118.2268,8,2,0,2002-03,50,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/23/03,LAL @ SAS,SAS
Turnaround Jump Shot,Jump Shot,220,20201003,34.0323,-82,12,-118.3518,2,2,0,2002-03,56,8,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,237,20201003,34.0293,146,15,-118.1238,1,2,0,2002-03,21,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/23/03,LAL @ SAS,SAS
Fadeaway Jump Shot,Jump Shot,262,20201003,34.0143,92,30,-118.1778,11,3,0,2002-03,19,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/23/03,LAL @ SAS,SAS
Driving Layup Shot,Layup,277,20201003,34.0093,-3,35,-118.2728,9,3,0,2002-03,0,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,281,20201003,33.9993,34,45,-118.2358,8,3,0,2002-03,35,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Driving Layup Shot,Layup,284,20201003,34.0133,-34,31,-118.3038,8,3,0,2002-03,5,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Driving Finger Roll Shot,Layup,331,20201003,34.0113,-23,33,-118.2928,4,3,0,2002-03,16,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Driving Layup Shot,Layup,336,20201003,34.0293,29,15,-118.2408,3,3,0,2002-03,23,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,344,20201003,34.0373,-146,7,-118.4158,2,3,0,2002-03,27,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,436,20201003,34.0363,232,8,-118.0378,6,4,0,2002-03,24,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/23/03,LAL @ SAS,SAS
Dunk Shot,Dunk,468,20201003,34.0193,3,25,-118.2668,2,4,0,2002-03,50,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,477,20201003,33.8173,102,227,-118.1678,1,4,0,2002-03,47,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,504,20201003,34.0013,-227,43,-118.4968,0,4,0,2002-03,28,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,3/23/03,LAL @ SAS,SAS
Driving Layup Shot,Layup,509,20201003,34.0163,-31,28,-118.3008,0,4,0,2002-03,20,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/23/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,9,20201017,33.9633,143,81,-118.1268,10,1,0,2002-03,54,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,29,20201017,33.7783,-5,266,-118.2748,8,1,0,2002-03,28,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,42,20201017,33.8483,8,196,-118.2618,6,1,0,2002-03,34,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/25/03,LAL @ ATL,ATL
Driving Dunk Shot,Dunk,68,20201017,34.0443,0,0,-118.2698,4,1,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/25/03,LAL @ ATL,ATL
Turnaround Jump Shot,Jump Shot,72,20201017,33.9523,49,92,-118.2208,3,1,0,2002-03,30,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,99,20201017,34.0223,144,22,-118.1258,0,1,0,2002-03,29,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,109,20201017,33.6333,-31,411,-118.3008,0,1,0,2002-03,0,41,0,3PT Field Goal,Back Court(BC),Above the Break 3,Back Court Shot,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,124,20201017,33.9113,72,133,-118.1978,10,2,0,2002-03,27,15,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,135,20201017,33.9603,-156,84,-118.4258,8,2,0,2002-03,17,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/25/03,LAL @ ATL,ATL
Layup Shot,Layup,232,20201017,34.0443,0,0,-118.2698,10,3,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,241,20201017,33.8473,1,197,-118.2688,9,3,0,2002-03,15,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/25/03,LAL @ ATL,ATL
Layup Shot,Layup,250,20201017,34.0443,0,0,-118.2698,8,3,0,2002-03,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,343,20201017,33.9523,158,92,-118.1118,11,4,0,2002-03,42,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/25/03,LAL @ ATL,ATL
Layup Shot,Layup,358,20201017,34.0443,0,0,-118.2698,10,4,0,2002-03,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,366,20201017,34.0413,166,3,-118.1038,9,4,0,2002-03,45,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/25/03,LAL @ ATL,ATL
Dunk Shot,Dunk,379,20201017,34.0443,0,0,-118.2698,8,4,0,2002-03,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,389,20201017,33.8293,-133,215,-118.4028,7,4,0,2002-03,16,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,411,20201017,33.8943,209,150,-118.0608,5,4,0,2002-03,0,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/25/03,LAL @ ATL,ATL
Jump Shot,Jump Shot,422,20201017,33.9043,202,140,-118.0678,4,4,0,2002-03,20,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/25/03,LAL @ ATL,ATL
Driving Layup Shot,Layup,106,20201028,34.0443,0,0,-118.2698,10,2,0,2002-03,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,127,20201028,33.8843,113,160,-118.1568,7,2,0,2002-03,51,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/26/03,LAL @ HOU,HOU
Driving Layup Shot,Layup,134,20201028,34.0443,0,0,-118.2698,7,2,0,2002-03,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Layup Shot,Layup,144,20201028,34.0443,0,0,-118.2698,6,2,0,2002-03,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,150,20201028,33.9393,-149,105,-118.4188,5,2,0,2002-03,52,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,160,20201028,33.8173,115,227,-118.1548,4,2,0,2002-03,41,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/26/03,LAL @ HOU,HOU
Running Layup Shot,Layup,168,20201028,34.0443,0,0,-118.2698,3,2,0,2002-03,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,198,20201028,34.0013,-48,43,-118.3178,0,2,0,2002-03,17,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,215,20201028,33.9673,97,77,-118.1728,10,3,0,2002-03,57,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/26/03,LAL @ HOU,HOU
Reverse Layup Shot,Layup,240,20201028,34.0443,0,0,-118.2698,8,3,0,2002-03,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,261,20201028,33.9573,107,87,-118.1628,6,3,0,2002-03,9,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,273,20201028,33.8533,-112,191,-118.3818,5,3,0,2002-03,0,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/26/03,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,308,20201028,34.0133,57,31,-118.2128,1,3,0,2002-03,55,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Slam Dunk Shot,Dunk,317,20201028,34.0443,0,0,-118.2698,0,3,0,2002-03,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,333,20201028,33.9913,72,53,-118.1978,11,4,0,2002-03,15,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,369,20201028,33.8943,143,150,-118.1268,8,4,0,2002-03,30,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/26/03,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,387,20201028,34.0243,113,20,-118.1568,6,4,0,2002-03,12,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/26/03,LAL @ HOU,HOU
Dunk Shot,Dunk,397,20201028,34.0443,0,0,-118.2698,5,4,0,2002-03,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,400,20201028,33.8483,0,196,-118.2698,5,4,0,2002-03,6,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/26/03,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,416,20201028,33.9093,72,135,-118.1978,3,4,0,2002-03,29,15,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/26/03,LAL @ HOU,HOU
Jump Shot,Jump Shot,9,20201046,33.9503,177,94,-118.0928,10,1,0,2002-03,40,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,29,20201046,33.8043,94,240,-118.1758,6,1,0,2002-03,59,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Driving Layup Shot,Layup,73,20201046,34.0443,0,0,-118.2698,2,1,0,2002-03,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,83,20201046,33.8453,163,199,-118.1068,2,1,0,2002-03,0,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,92,20201046,33.7923,-103,252,-118.3728,0,1,0,2002-03,51,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Driving Layup Shot,Layup,96,20201046,34.0443,0,0,-118.2698,0,1,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,105,20201046,33.8993,166,145,-118.1038,11,2,0,2002-03,47,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,108,20201046,33.8193,135,225,-118.1348,11,2,0,2002-03,24,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,119,20201046,34.0033,-235,41,-118.5048,10,2,0,2002-03,6,23,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Running Jump Shot,Jump Shot,125,20201046,33.8353,-158,209,-118.4278,9,2,0,2002-03,0,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,154,20201046,33.8293,-126,215,-118.3958,5,2,0,2002-03,53,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,163,20201046,33.8093,133,235,-118.1368,5,2,0,2002-03,4,27,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Running Jump Shot,Jump Shot,166,20201046,33.8603,44,184,-118.2258,4,2,0,2002-03,45,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,175,20201046,33.8473,177,197,-118.0928,4,2,0,2002-03,6,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,196,20201046,33.9753,46,69,-118.2238,1,2,0,2002-03,44,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,202,20201046,33.8143,140,230,-118.1298,1,2,0,2002-03,14,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,222,20201046,34.0323,-182,12,-118.4518,11,3,0,2002-03,4,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,269,20201046,33.7993,113,245,-118.1568,6,3,0,2002-03,51,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,288,20201046,33.8573,-194,187,-118.4638,4,3,0,2002-03,48,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,291,20201046,33.9653,-33,79,-118.3028,4,3,0,2002-03,12,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,310,20201046,33.9633,-15,81,-118.2848,2,3,0,2002-03,34,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,326,20201046,34.0293,148,15,-118.1218,0,3,0,2002-03,42,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,405,20201046,34.0493,148,-5,-118.1218,5,4,0,2002-03,0,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/28/03,LAL vs. WAS,WAS
Driving Layup Shot,Layup,430,20201046,34.0443,0,0,-118.2698,3,4,0,2002-03,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,440,20201046,33.8713,-3,173,-118.2728,2,4,0,2002-03,37,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/28/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,57,20201062,33.8933,126,151,-118.1438,4,1,0,2002-03,20,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,95,20201062,33.7943,57,250,-118.2128,0,1,0,2002-03,57,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,120,20201062,33.8843,66,160,-118.2038,10,2,0,2002-03,21,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,132,20201062,33.9093,220,135,-118.0498,9,2,0,2002-03,13,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,141,20201062,34.0503,112,-6,-118.1578,8,2,0,2002-03,17,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,272,20201062,34.0503,-141,-6,-118.4108,11,3,0,2002-03,17,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,281,20201062,33.9443,235,100,-118.0348,10,3,0,2002-03,18,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,288,20201062,33.8303,-145,214,-118.4148,9,3,0,2002-03,18,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,366,20201062,33.8613,210,183,-118.0598,0,3,0,2002-03,50,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/30/03,LAL @ SEA,SEA
Layup Shot,Layup,376,20201062,34.0443,0,0,-118.2698,0,3,0,2002-03,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,388,20201062,33.9803,233,64,-118.0368,9,4,0,2002-03,54,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/30/03,LAL @ SEA,SEA
Jump Shot,Jump Shot,44,20201066,33.8063,-89,238,-118.3588,6,1,0,2002-03,9,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,66,20201066,33.8423,161,202,-118.1088,3,1,0,2002-03,4,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,71,20201066,33.8323,136,212,-118.1338,2,1,0,2002-03,33,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/31/03,LAL vs. MEM,MEM
Layup Shot,Layup,80,20201066,34.0443,0,0,-118.2698,1,1,0,2002-03,59,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/03,LAL vs. MEM,MEM
Fadeaway Jump Shot,Jump Shot,109,20201066,33.9553,79,89,-118.1908,11,2,0,2002-03,30,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,111,20201066,33.9993,-105,45,-118.3748,11,2,0,2002-03,5,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,115,20201066,33.8663,-123,178,-118.3928,10,2,0,2002-03,19,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,174,20201066,33.8893,-75,155,-118.3448,4,2,0,2002-03,22,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,185,20201066,33.9983,123,46,-118.1468,3,2,0,2002-03,29,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,206,20201066,33.9113,130,133,-118.1398,0,2,0,2002-03,22,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,209,20201066,33.8613,-169,183,-118.4388,0,2,0,2002-03,0,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/31/03,LAL vs. MEM,MEM
Running Finger Roll Shot,Layup,215,20201066,33.9853,56,59,-118.2138,11,3,0,2002-03,14,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/31/03,LAL vs. MEM,MEM
Driving Layup Shot,Layup,225,20201066,34.0443,0,0,-118.2698,9,3,0,2002-03,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/03,LAL vs. MEM,MEM
Driving Layup Shot,Layup,280,20201066,34.0443,0,0,-118.2698,3,3,0,2002-03,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/03,LAL vs. MEM,MEM
Reverse Layup Shot,Layup,287,20201066,34.0443,0,0,-118.2698,2,3,0,2002-03,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/03,LAL vs. MEM,MEM
Reverse Layup Shot,Layup,291,20201066,34.0443,0,0,-118.2698,2,3,0,2002-03,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/03,LAL vs. MEM,MEM
Driving Layup Shot,Layup,303,20201066,34.0443,0,0,-118.2698,0,3,0,2002-03,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,311,20201066,33.9013,148,143,-118.1218,11,4,0,2002-03,46,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/31/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,400,20201066,33.9683,148,76,-118.1218,3,4,0,2002-03,46,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/31/03,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,406,20201066,34.0443,0,0,-118.2698,2,4,0,2002-03,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/31/03,LAL vs. MEM,MEM
Hook Shot,Hook Shot,6,20201086,34.0213,3,23,-118.2668,11,1,0,2002-03,22,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,23,20201086,33.9533,192,91,-118.0778,9,1,0,2002-03,43,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/3/03,LAL @ DAL,DAL
Layup Shot,Layup,106,20201086,34.0443,0,0,-118.2698,0,1,0,2002-03,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,108,20201086,33.4953,-94,549,-118.3638,0,1,0,2002-03,0,55,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,123,20201086,33.8813,115,163,-118.1548,11,2,0,2002-03,1,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,128,20201086,33.9533,202,91,-118.0678,10,2,0,2002-03,9,22,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,183,20201086,33.8683,143,176,-118.1268,4,2,0,2002-03,26,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,206,20201086,33.8943,-122,150,-118.3918,2,2,0,2002-03,16,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,211,20201086,33.9883,29,56,-118.2408,1,2,0,2002-03,32,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,276,20201086,33.9043,146,140,-118.1238,7,3,0,2002-03,8,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/3/03,LAL @ DAL,DAL
Running Finger Roll Shot,Layup,309,20201086,34.0013,-13,43,-118.2828,4,3,0,2002-03,46,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,373,20201086,33.8653,-186,179,-118.4558,0,3,0,2002-03,0,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/3/03,LAL @ DAL,DAL
Driving Layup Shot,Layup,378,20201086,34.0443,0,0,-118.2698,11,4,0,2002-03,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,381,20201086,34.0533,-156,-9,-118.4258,11,4,0,2002-03,19,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,389,20201086,33.9033,-26,141,-118.2958,10,4,0,2002-03,18,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,396,20201086,34.0093,154,35,-118.1158,9,4,0,2002-03,18,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/3/03,LAL @ DAL,DAL
Reverse Layup Shot,Layup,399,20201086,34.0443,0,0,-118.2698,8,4,0,2002-03,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,422,20201086,33.8993,-38,145,-118.3078,5,4,0,2002-03,56,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,4/3/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,10,20201093,33.8843,194,160,-118.0758,10,1,0,2002-03,0,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/4/03,LAL @ MEM,MEM
Driving Dunk Shot,Dunk,28,20201093,34.0443,0,0,-118.2698,6,1,0,2002-03,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,35,20201093,33.8803,189,164,-118.0808,5,1,0,2002-03,58,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/4/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,109,20201093,33.9223,171,122,-118.0988,11,2,0,2002-03,26,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/4/03,LAL @ MEM,MEM
Turnaround Jump Shot,Jump Shot,220,20201093,33.9883,-49,56,-118.3188,0,2,0,2002-03,31,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Reverse Dunk Shot,Dunk,247,20201093,34.0443,0,0,-118.2698,9,3,0,2002-03,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,258,20201093,33.9833,-36,61,-118.3058,8,3,0,2002-03,33,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,274,20201093,33.9953,54,49,-118.2158,6,3,0,2002-03,38,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Driving Layup Shot,Layup,330,20201093,34.0443,0,0,-118.2698,1,3,0,2002-03,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,419,20201093,33.8013,10,243,-118.2598,5,4,0,2002-03,48,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/4/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,452,20201093,33.9583,-222,86,-118.4918,2,4,0,2002-03,24,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,4/4/03,LAL @ MEM,MEM
Driving Layup Shot,Layup,465,20201093,34.0443,0,0,-118.2698,1,4,0,2002-03,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Layup Shot,Layup,474,20201093,34.0443,0,0,-118.2698,0,4,0,2002-03,26,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,486,20201093,33.8863,-136,158,-118.4058,0,4,0,2002-03,0,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/4/03,LAL @ MEM,MEM
Turnaround Jump Shot,Jump Shot,11,20201113,33.8803,71,164,-118.1988,10,1,0,2002-03,28,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/6/03,LAL vs. PHX,PHX
Running Dunk Shot,Dunk,17,20201113,34.0443,0,0,-118.2698,9,1,0,2002-03,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/03,LAL vs. PHX,PHX
Driving Layup Shot,Layup,40,20201113,34.0443,0,0,-118.2698,7,1,0,2002-03,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,46,20201113,33.7793,0,265,-118.2698,6,1,0,2002-03,52,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,63,20201113,34.0183,223,26,-118.0468,5,1,0,2002-03,2,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,67,20201113,33.9783,136,66,-118.1338,4,1,0,2002-03,43,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,109,20201113,33.8303,151,214,-118.1188,0,1,0,2002-03,29,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,127,20201113,33.9403,-113,104,-118.3828,11,2,0,2002-03,1,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/6/03,LAL vs. PHX,PHX
Layup Shot,Layup,252,20201113,34.0443,0,0,-118.2698,1,2,0,2002-03,46,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/03,LAL vs. PHX,PHX
Alley Oop Dunk Shot,Dunk,262,20201113,34.0443,0,0,-118.2698,1,2,0,2002-03,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,307,20201113,33.9753,-140,69,-118.4098,10,3,0,2002-03,7,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,400,20201113,33.9243,-135,120,-118.4048,0,3,0,2002-03,0,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,415,20201113,33.8553,-195,189,-118.4648,10,4,0,2002-03,13,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,431,20201113,33.9723,167,72,-118.1028,8,4,0,2002-03,18,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,484,20201113,33.8153,136,229,-118.1338,3,4,0,2002-03,22,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,505,20201113,33.9063,108,138,-118.1618,0,4,0,2002-03,49,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,532,20201113,33.9623,-126,82,-118.3958,4,5,0,2002-03,43,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,536,20201113,33.9293,79,115,-118.1908,4,5,0,2002-03,7,13,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/6/03,LAL vs. PHX,PHX
Driving Layup Shot,Layup,545,20201113,34.0443,0,0,-118.2698,3,5,0,2002-03,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,552,20201113,34.0323,-156,12,-118.4258,2,5,0,2002-03,49,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,567,20201113,33.8153,140,229,-118.1298,1,5,0,2002-03,12,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,582,20201113,33.8523,95,192,-118.1748,0,5,0,2002-03,28,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/6/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,209,20201123,33.9113,69,133,-118.2008,1,2,0,2002-03,55,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/8/03,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,227,20201123,33.9163,95,128,-118.1748,0,2,0,2002-03,58,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/8/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,236,20201123,33.7993,89,245,-118.1808,0,2,0,2002-03,5,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/8/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,259,20201123,33.7833,-2,261,-118.2718,9,3,0,2002-03,58,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/8/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,264,20201123,33.9953,-123,49,-118.3928,8,3,0,2002-03,39,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/8/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,290,20201123,33.8533,-172,191,-118.4418,5,3,0,2002-03,56,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/8/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,305,20201123,33.9883,54,56,-118.2158,4,3,0,2002-03,14,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/8/03,LAL vs. DAL,DAL
Layup Shot,Layup,313,20201123,34.0443,0,0,-118.2698,3,3,0,2002-03,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/8/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,344,20201123,33.9583,-26,86,-118.2958,1,3,0,2002-03,21,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/8/03,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,368,20201123,33.9403,-16,104,-118.2858,11,4,0,2002-03,45,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/8/03,LAL vs. DAL,DAL
Running Jump Shot,Jump Shot,394,20201123,33.8783,112,166,-118.1578,9,4,0,2002-03,31,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/8/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,399,20201123,34.0183,161,26,-118.1088,8,4,0,2002-03,48,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/8/03,LAL vs. DAL,DAL
Layup Shot,Layup,460,20201123,34.0443,0,0,-118.2698,2,4,0,2002-03,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/8/03,LAL vs. DAL,DAL
Slam Dunk Shot,Dunk,8,20201136,34.0443,0,0,-118.2698,10,1,0,2002-03,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,32,20201136,33.9573,-6,87,-118.2758,7,1,0,2002-03,27,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,41,20201136,33.8843,-107,160,-118.3768,6,1,0,2002-03,32,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,77,20201136,33.8533,174,191,-118.0958,2,1,0,2002-03,19,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,121,20201136,34.0653,144,-21,-118.1258,10,2,0,2002-03,59,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,128,20201136,33.9423,176,102,-118.0938,10,2,0,2002-03,19,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,199,20201136,33.8533,164,191,-118.1058,2,2,0,2002-03,38,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/10/03,LAL vs. SAC,SAC
Driving Layup Shot,Layup,234,20201136,34.0443,0,0,-118.2698,0,2,0,2002-03,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,243,20201136,33.8533,-161,191,-118.4308,11,3,0,2002-03,26,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,248,20201136,34.0523,133,-8,-118.1368,11,3,0,2002-03,1,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/10/03,LAL vs. SAC,SAC
Layup Shot,Layup,253,20201136,34.0443,0,0,-118.2698,10,3,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,265,20201136,33.9733,130,71,-118.1398,9,3,0,2002-03,21,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/10/03,LAL vs. SAC,SAC
Alley Oop Dunk Shot,Dunk,295,20201136,34.0443,0,0,-118.2698,5,3,0,2002-03,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,303,20201136,33.8123,117,232,-118.1528,5,3,0,2002-03,18,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/10/03,LAL vs. SAC,SAC
Tip Shot,Tip Shot,311,20201136,34.0443,0,0,-118.2698,4,3,0,2002-03,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,318,20201136,33.9523,161,92,-118.1088,4,3,0,2002-03,13,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,354,20201136,33.9783,23,66,-118.2468,1,3,0,2002-03,32,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Driving Layup Shot,Layup,356,20201136,34.0443,0,0,-118.2698,1,3,0,2002-03,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Turnaround Jump Shot,Jump Shot,384,20201136,33.9213,121,123,-118.1488,10,4,0,2002-03,41,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/10/03,LAL vs. SAC,SAC
Driving Dunk Shot,Dunk,389,20201136,34.0443,0,0,-118.2698,9,4,0,2002-03,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Layup Shot,Layup,400,20201136,34.0443,0,0,-118.2698,9,4,0,2002-03,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,414,20201136,33.9683,-184,76,-118.4538,8,4,0,2002-03,19,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,425,20201136,34.0783,167,-34,-118.1028,6,4,0,2002-03,26,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,432,20201136,33.8383,-41,206,-118.3108,5,4,0,2002-03,17,21,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,475,20201136,33.9533,33,91,-118.2368,1,4,0,2002-03,36,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/10/03,LAL vs. SAC,SAC
Driving Dunk Shot,Dunk,482,20201136,34.0443,0,0,-118.2698,0,4,0,2002-03,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/10/03,LAL vs. SAC,SAC
Jump Shot,Jump Shot,6,20201159,33.8893,159,155,-118.1108,11,1,0,2002-03,16,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,101,20201159,34.0213,71,23,-118.1988,0,1,0,2002-03,47,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,170,20201159,33.9633,171,81,-118.0988,4,2,0,2002-03,56,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Running Jump Shot,Jump Shot,183,20201159,33.9803,-75,64,-118.3448,3,2,0,2002-03,16,9,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,4/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,204,20201159,34.0443,0,0,-118.2698,0,2,0,2002-03,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,226,20201159,34.0393,-194,5,-118.4638,11,3,0,2002-03,46,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,236,20201159,33.8913,-149,153,-118.4188,9,3,0,2002-03,36,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,254,20201159,33.9953,-49,49,-118.3188,8,3,0,2002-03,4,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,279,20201159,34.0443,0,0,-118.2698,4,3,0,2002-03,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,349,20201159,33.9123,-113,132,-118.3828,10,4,0,2002-03,36,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,352,20201159,33.8733,87,171,-118.1828,9,4,0,2002-03,57,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,358,20201159,34.0443,0,0,-118.2698,9,4,0,2002-03,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,375,20201159,33.8843,100,160,-118.1698,7,4,0,2002-03,5,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,414,20201159,33.9263,-159,118,-118.4288,2,4,0,2002-03,57,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,417,20201159,34.0443,0,0,-118.2698,2,4,0,2002-03,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,427,20201159,33.8913,-200,153,-118.4698,1,4,0,2002-03,16,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,436,20201159,33.8323,-2,212,-118.2718,0,4,0,2002-03,34,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,442,20201159,33.9013,-210,143,-118.4798,0,4,0,2002-03,0,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,25,20201176,33.8883,-44,156,-118.3138,8,1,0,2002-03,53,16,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/15/03,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,30,20201176,33.9983,189,46,-118.0808,8,1,0,2002-03,31,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,81,20201176,33.8073,-112,237,-118.3818,4,1,0,2002-03,57,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/15/03,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,96,20201176,33.9723,24,72,-118.2458,3,1,0,2002-03,13,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,112,20201176,33.8373,161,207,-118.1088,2,1,0,2002-03,18,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,115,20201176,33.9423,218,102,-118.0518,1,1,0,2002-03,55,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,133,20201176,33.9633,1,81,-118.2688,0,1,0,2002-03,34,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,158,20201176,34.0443,67,0,-118.2028,10,2,0,2002-03,45,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/15/03,LAL vs. DEN,DEN
Reverse Layup Shot,Layup,282,20201176,34.0443,0,0,-118.2698,10,3,0,2002-03,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,311,20201176,33.8523,-163,192,-118.4328,8,3,0,2002-03,13,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,377,20201176,33.8533,163,191,-118.1068,2,3,0,2002-03,57,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/15/03,LAL vs. DEN,DEN
Layup Shot,Layup,398,20201176,34.0443,0,0,-118.2698,1,3,0,2002-03,33,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,413,20201176,33.8303,144,214,-118.1258,0,3,0,2002-03,34,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/15/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,39,20201189,34.0113,-138,33,-118.4078,8,1,0,2002-03,7,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,49,20201189,34.0373,159,7,-118.1108,7,1,0,2002-03,25,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/16/03,LAL @ GSW,GSW
Running Hook Shot,Hook Shot,62,20201189,34.0043,21,40,-118.2488,5,1,0,2002-03,49,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/16/03,LAL @ GSW,GSW
Fadeaway Jump Shot,Jump Shot,82,20201189,33.9573,-154,87,-118.4238,2,1,0,2002-03,53,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/16/03,LAL @ GSW,GSW
Running Dunk Shot,Dunk,116,20201189,34.0443,0,0,-118.2698,11,2,0,2002-03,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,135,20201189,34.0093,-21,35,-118.2908,9,2,0,2002-03,49,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,147,20201189,33.8603,176,184,-118.0938,8,2,0,2002-03,51,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/16/03,LAL @ GSW,GSW
Driving Layup Shot,Layup,222,20201189,34.0443,0,0,-118.2698,1,2,0,2002-03,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,263,20201189,34.0443,-156,0,-118.4258,9,3,0,2002-03,23,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/16/03,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,284,20201189,34.0443,0,0,-118.2698,7,3,0,2002-03,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/16/03,LAL @ GSW,GSW
Reverse Layup Shot,Layup,288,20201189,34.0443,0,0,-118.2698,6,3,0,2002-03,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,298,20201189,34.0453,-151,-1,-118.4208,5,3,0,2002-03,47,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,350,20201189,34.0533,-227,-9,-118.4968,0,3,0,2002-03,38,22,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,4/16/03,LAL @ GSW,GSW
Running Jump Shot,Jump Shot,353,20201189,33.9883,0,56,-118.2698,0,3,0,2002-03,26,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,367,20201189,33.8203,118,224,-118.1518,10,4,0,2002-03,46,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,381,20201189,34.0493,-166,-5,-118.4358,9,4,0,2002-03,32,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,391,20201189,34.0633,-235,-19,-118.5048,8,4,0,2002-03,23,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,393,20201189,34.0493,-100,-5,-118.3698,8,4,0,2002-03,19,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,395,20201189,33.8913,-195,153,-118.4648,8,4,0,2002-03,14,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,405,20201189,33.8993,-168,145,-118.4378,7,4,0,2002-03,0,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/16/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,407,20201189,33.8223,110,222,-118.1598,6,4,0,2002-03,25,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/16/03,LAL @ GSW,GSW
Running Jump Shot,Jump Shot,451,20201189,33.9603,69,84,-118.2008,2,4,0,2002-03,30,10,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/16/03,LAL @ GSW,GSW
Fadeaway Jump Shot,Jump Shot,34,20300037,34.0313,-140,13,-118.4098,8,1,0,2003-04,37,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,55,20300037,33.9063,-133,138,-118.4028,6,1,0,2003-04,33,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,68,20300037,33.9033,140,141,-118.1298,4,1,0,2003-04,31,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,119,20300037,33.9143,133,130,-118.1368,11,2,0,2003-04,23,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,147,20300037,33.9123,6,132,-118.2638,9,2,0,2003-04,5,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,230,20300037,34.0223,-191,22,-118.4608,11,3,0,2003-04,20,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,247,20300037,33.9303,-148,114,-118.4178,10,3,0,2003-04,16,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,254,20300037,33.9123,-214,132,-118.4838,9,3,0,2003-04,48,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,353,20300037,33.9553,97,89,-118.1728,11,4,0,2003-04,40,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,358,20300037,33.9753,141,69,-118.1288,11,4,0,2003-04,2,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,372,20300037,33.8533,-95,191,-118.3648,9,4,0,2003-04,27,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,385,20300037,34.0523,-52,-8,-118.3218,7,4,0,2003-04,46,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/1/03,LAL @ PHX,PHX
Jump Shot,Jump Shot,10,20300040,33.8913,-120,153,-118.3898,10,1,0,2003-04,22,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/2/03,LAL vs. GSW,GSW
Layup Shot,Layup,31,20300040,34.0443,0,0,-118.2698,7,1,0,2003-04,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,50,20300040,33.8323,-141,212,-118.4108,5,1,0,2003-04,29,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/2/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,140,20300040,33.9963,28,48,-118.2418,6,2,0,2003-04,12,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/2/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,197,20300040,33.8503,-164,194,-118.4338,0,2,0,2003-04,33,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/2/03,LAL vs. GSW,GSW
Driving Layup Shot,Layup,213,20300040,34.0443,0,0,-118.2698,10,3,0,2003-04,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/03,LAL vs. GSW,GSW
Layup Shot,Layup,227,20300040,34.0443,0,0,-118.2698,9,3,0,2003-04,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,275,20300040,33.8203,-158,224,-118.4278,5,3,0,2003-04,30,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/2/03,LAL vs. GSW,GSW
Driving Finger Roll Shot,Layup,283,20300040,34.0443,0,0,-118.2698,4,3,0,2003-04,51,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/03,LAL vs. GSW,GSW
Driving Layup Shot,Layup,291,20300040,34.0443,0,0,-118.2698,4,3,0,2003-04,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/03,LAL vs. GSW,GSW
Jump Shot,Jump Shot,7,20300050,34.0633,100,-19,-118.1698,10,1,0,2003-04,46,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,170,20300050,33.9803,166,64,-118.1038,8,2,0,2003-04,20,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,233,20300050,34.0493,90,-5,-118.1798,2,2,0,2003-04,12,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/4/03,LAL @ MIL,MIL
Layup Shot,Layup,239,20300050,34.0443,0,0,-118.2698,1,2,0,2003-04,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/03,LAL @ MIL,MIL
Tip Shot,Tip Shot,303,20300050,34.0443,0,0,-118.2698,8,3,0,2003-04,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/03,LAL @ MIL,MIL
Layup Shot,Layup,350,20300050,34.0443,0,0,-118.2698,2,3,0,2003-04,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/03,LAL @ MIL,MIL
Layup Shot,Layup,357,20300050,34.0443,0,0,-118.2698,2,3,0,2003-04,15,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/03,LAL @ MIL,MIL
Layup Shot,Layup,362,20300050,34.0443,0,0,-118.2698,1,3,0,2003-04,35,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,384,20300050,33.9093,-21,135,-118.2908,11,4,0,2003-04,48,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,386,20300050,34.0623,133,-18,-118.1368,11,4,0,2003-04,9,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,402,20300050,33.8843,-97,160,-118.3668,9,4,0,2003-04,5,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,406,20300050,34.0703,-164,-26,-118.4338,8,4,0,2003-04,33,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,451,20300050,34.0653,235,-21,-118.0348,4,4,0,2003-04,32,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,463,20300050,33.8473,184,197,-118.0858,3,4,0,2003-04,34,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,467,20300050,33.9193,13,125,-118.2568,3,4,0,2003-04,8,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,478,20300050,33.7993,-120,245,-118.3898,1,4,0,2003-04,30,27,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,491,20300050,33.8573,-97,187,-118.3668,0,4,0,2003-04,30,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/4/03,LAL @ MIL,MIL
Jump Shot,Jump Shot,13,20300064,33.9903,49,54,-118.2208,10,1,0,2003-04,35,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,64,20300064,33.8983,-200,146,-118.4698,3,1,0,2003-04,49,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/6/03,LAL @ SAS,SAS
Reverse Layup Shot,Layup,114,20300064,34.0313,-31,13,-118.3008,11,2,0,2003-04,4,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Fadeaway Jump Shot,Jump Shot,155,20300064,34.0473,-192,-3,-118.4618,6,2,0,2003-04,47,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,158,20300064,33.9533,144,91,-118.1258,6,2,0,2003-04,23,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/6/03,LAL @ SAS,SAS
Layup Shot,Layup,168,20300064,34.0363,16,8,-118.2538,5,2,0,2003-04,22,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,224,20300064,33.9013,41,143,-118.2288,11,3,0,2003-04,26,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/6/03,LAL @ SAS,SAS
Layup Shot,Layup,244,20300064,34.0313,-5,13,-118.2748,9,3,0,2003-04,28,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,367,20300064,33.9263,-217,118,-118.4868,11,4,0,2003-04,8,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/6/03,LAL @ SAS,SAS
Slam Dunk Shot,Dunk,381,20300064,34.0223,-5,22,-118.2748,9,4,0,2003-04,56,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,387,20300064,33.9853,-12,59,-118.2818,9,4,0,2003-04,10,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,454,20300064,34.0033,166,41,-118.1038,4,4,0,2003-04,36,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,459,20300064,33.9193,181,125,-118.0888,3,4,0,2003-04,57,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/6/03,LAL @ SAS,SAS
Layup Shot,Layup,471,20300064,34.0243,-10,20,-118.2798,2,4,0,2003-04,45,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,501,20300064,34.0213,-115,23,-118.3848,0,4,0,2003-04,23,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,526,20300064,33.8373,-176,207,-118.4458,3,5,0,2003-04,55,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/6/03,LAL @ SAS,SAS
Fadeaway Jump Shot,Jump Shot,546,20300064,33.8893,-52,155,-118.3218,1,5,0,2003-04,40,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/6/03,LAL @ SAS,SAS
Fadeaway Jump Shot,Jump Shot,553,20300064,34.0473,-105,-3,-118.3748,1,5,0,2003-04,24,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,567,20300064,34.0373,-158,7,-118.4278,0,5,0,2003-04,1,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/6/03,LAL @ SAS,SAS
Layup Shot,Layup,584,20300064,34.0223,6,22,-118.2638,4,6,0,2003-04,38,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Turnaround Jump Shot,Jump Shot,632,20300064,33.9603,140,84,-118.1298,0,6,0,2003-04,38,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/6/03,LAL @ SAS,SAS
Driving Layup Shot,Layup,634,20300064,34.0143,29,30,-118.2408,0,6,0,2003-04,25,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,639,20300064,33.9703,24,74,-118.2458,0,6,0,2003-04,18,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/6/03,LAL @ SAS,SAS
Reverse Layup Shot,Layup,10,20300070,34.0443,0,0,-118.2698,10,1,0,2003-04,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/03,LAL @ NOH,NOH
Layup Shot,Layup,63,20300070,34.0443,0,0,-118.2698,4,1,0,2003-04,57,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/03,LAL @ NOH,NOH
Dunk Shot,Dunk,66,20300070,34.0443,0,0,-118.2698,4,1,0,2003-04,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,74,20300070,33.9993,-52,45,-118.3218,3,1,0,2003-04,27,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,93,20300070,33.9673,153,77,-118.1168,1,1,0,2003-04,24,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/7/03,LAL @ NOH,NOH
Layup Shot,Layup,96,20300070,34.0443,0,0,-118.2698,1,1,0,2003-04,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,271,20300070,34.0273,232,17,-118.0378,8,3,0,2003-04,8,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,325,20300070,33.8633,174,181,-118.0958,2,3,0,2003-04,17,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,328,20300070,34.0363,113,8,-118.1568,1,3,0,2003-04,42,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,419,20300070,33.9033,-210,141,-118.4798,5,4,0,2003-04,27,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,441,20300070,33.8343,135,210,-118.1348,3,4,0,2003-04,39,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/7/03,LAL @ NOH,NOH
Jump Shot,Jump Shot,8,20300091,33.9813,-25,63,-118.2948,11,1,0,2003-04,5,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/10/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,17,20300091,33.8633,-21,181,-118.2908,9,1,0,2003-04,51,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/10/03,LAL @ MEM,MEM
Layup Shot,Layup,46,20300091,34.0443,0,0,-118.2698,5,1,0,2003-04,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/03,LAL @ MEM,MEM
Driving Dunk Shot,Dunk,160,20300091,34.0443,0,0,-118.2698,7,2,0,2003-04,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,162,20300091,33.9443,177,100,-118.0928,6,2,0,2003-04,32,20,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/10/03,LAL @ MEM,MEM
Turnaround Jump Shot,Jump Shot,206,20300091,34.0553,169,-11,-118.1008,3,2,0,2003-04,3,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/10/03,LAL @ MEM,MEM
Driving Layup Shot,Layup,406,20300091,34.0443,0,0,-118.2698,8,4,0,2003-04,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,410,20300091,33.9453,-200,99,-118.4698,8,4,0,2003-04,10,22,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/10/03,LAL @ MEM,MEM
Driving Layup Shot,Layup,426,20300091,34.0443,0,0,-118.2698,6,4,0,2003-04,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/03,LAL @ MEM,MEM
Layup Shot,Layup,440,20300091,34.0443,0,0,-118.2698,5,4,0,2003-04,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/03,LAL @ MEM,MEM
Fadeaway Jump Shot,Jump Shot,443,20300091,34.0323,-161,12,-118.4308,4,4,0,2003-04,59,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/10/03,LAL @ MEM,MEM
Turnaround Jump Shot,Jump Shot,459,20300091,34.0093,-18,35,-118.2878,3,4,0,2003-04,35,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,461,20300091,33.9323,-232,112,-118.5018,3,4,0,2003-04,0,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/10/03,LAL @ MEM,MEM
Jump Shot,Jump Shot,479,20300091,33.8293,-145,215,-118.4148,1,4,0,2003-04,44,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/10/03,LAL @ MEM,MEM
Layup Shot,Layup,11,20300111,34.0443,0,0,-118.2698,10,1,0,2003-04,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/03,LAL vs. TOR,TOR
Turnaround Jump Shot,Jump Shot,62,20300111,33.9813,38,63,-118.2318,6,1,0,2003-04,3,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/12/03,LAL vs. TOR,TOR
Fadeaway Jump Shot,Jump Shot,209,20300111,33.9703,56,74,-118.2138,4,2,0,2003-04,56,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/12/03,LAL vs. TOR,TOR
Layup Shot,Layup,308,20300111,34.0443,0,0,-118.2698,6,3,0,2003-04,46,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/03,LAL vs. TOR,TOR
Jump Shot,Jump Shot,324,20300111,33.8023,-122,242,-118.3918,5,3,0,2003-04,6,27,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/12/03,LAL vs. TOR,TOR
Running Jump Shot,Jump Shot,334,20300111,33.9783,44,66,-118.2258,4,3,0,2003-04,31,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/12/03,LAL vs. TOR,TOR
Jump Shot,Jump Shot,397,20300111,33.9403,28,104,-118.2418,10,4,0,2003-04,51,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/12/03,LAL vs. TOR,TOR
Layup Shot,Layup,421,20300111,34.0443,0,0,-118.2698,8,4,0,2003-04,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/03,LAL vs. TOR,TOR
Dunk Shot,Dunk,2,20300124,34.0443,0,0,-118.2698,11,1,0,2003-04,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/03,LAL vs. DET,DET
Slam Dunk Shot,Dunk,16,20300124,34.0443,0,0,-118.2698,9,1,0,2003-04,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/03,LAL vs. DET,DET
Driving Layup Shot,Layup,43,20300124,34.0443,0,0,-118.2698,6,1,0,2003-04,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/03,LAL vs. DET,DET
Reverse Layup Shot,Layup,225,20300124,34.0443,0,0,-118.2698,0,2,0,2003-04,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/14/03,LAL vs. DET,DET
Jump Shot,Jump Shot,249,20300124,33.8883,21,156,-118.2488,10,3,0,2003-04,45,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/14/03,LAL vs. DET,DET
Jump Shot,Jump Shot,265,20300124,33.8913,94,153,-118.1758,8,3,0,2003-04,5,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/14/03,LAL vs. DET,DET
Running Jump Shot,Jump Shot,396,20300124,33.9043,95,140,-118.1748,8,4,0,2003-04,39,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/14/03,LAL vs. DET,DET
Fadeaway Jump Shot,Jump Shot,426,20300124,33.9263,44,118,-118.2258,5,4,0,2003-04,29,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/14/03,LAL vs. DET,DET
Jump Shot,Jump Shot,428,20300124,33.8763,-62,168,-118.3318,4,4,0,2003-04,49,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/14/03,LAL vs. DET,DET
Jump Shot,Jump Shot,9,20300138,33.8583,-103,186,-118.3728,11,1,0,2003-04,11,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/16/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,129,20300138,33.8833,-125,161,-118.3948,11,2,0,2003-04,24,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/16/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,149,20300138,33.9953,8,49,-118.2618,9,2,0,2003-04,22,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/16/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,330,20300138,33.8113,143,233,-118.1268,9,3,0,2003-04,0,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/16/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,379,20300138,33.9013,-128,143,-118.3978,4,3,0,2003-04,5,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/16/03,LAL vs. MIA,MIA
Turnaround Jump Shot,Jump Shot,451,20300138,33.9573,-85,87,-118.3548,11,4,0,2003-04,15,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/16/03,LAL vs. MIA,MIA
Fadeaway Jump Shot,Jump Shot,468,20300138,33.9213,89,123,-118.1808,9,4,0,2003-04,12,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/16/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,506,20300138,33.9223,115,122,-118.1548,4,4,0,2003-04,55,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/16/03,LAL vs. MIA,MIA
Jump Shot,Jump Shot,518,20300138,34.0583,192,-14,-118.0778,3,4,0,2003-04,14,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/16/03,LAL vs. MIA,MIA
Layup Shot,Layup,51,20300146,34.0443,0,0,-118.2698,5,1,0,2003-04,37,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/03,LAL @ DET,DET
Jump Shot,Jump Shot,72,20300146,33.9293,148,115,-118.1218,3,1,0,2003-04,34,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/18/03,LAL @ DET,DET
Turnaround Jump Shot,Jump Shot,83,20300146,33.9443,146,100,-118.1238,2,1,0,2003-04,24,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/18/03,LAL @ DET,DET
Jump Shot,Jump Shot,142,20300146,33.9633,172,81,-118.0978,7,2,0,2003-04,49,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/18/03,LAL @ DET,DET
Jump Shot,Jump Shot,187,20300146,33.9783,-140,66,-118.4098,3,2,0,2003-04,12,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/18/03,LAL @ DET,DET
Jump Shot,Jump Shot,207,20300146,33.8553,-166,189,-118.4358,0,2,0,2003-04,47,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/18/03,LAL @ DET,DET
Layup Shot,Layup,226,20300146,34.0443,0,0,-118.2698,11,3,0,2003-04,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/03,LAL @ DET,DET
Driving Layup Shot,Layup,248,20300146,34.0443,0,0,-118.2698,7,3,0,2003-04,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/18/03,LAL @ DET,DET
Jump Shot,Jump Shot,277,20300146,33.9043,-128,140,-118.3978,3,3,0,2003-04,35,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/18/03,LAL @ DET,DET
Jump Shot,Jump Shot,343,20300146,33.8753,199,169,-118.0708,7,4,0,2003-04,46,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/18/03,LAL @ DET,DET
Running Jump Shot,Jump Shot,363,20300146,34.0343,82,10,-118.1878,6,4,0,2003-04,24,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/18/03,LAL @ DET,DET
Fadeaway Jump Shot,Jump Shot,6,20300156,34.0883,-148,-44,-118.4178,11,1,0,2003-04,3,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/19/03,LAL @ NYK,NYK
Driving Layup Shot,Layup,17,20300156,34.0443,0,0,-118.2698,9,1,0,2003-04,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,41,20300156,33.9303,-66,114,-118.3358,7,1,0,2003-04,29,13,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/19/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,44,20300156,34.0703,112,-26,-118.1578,7,1,0,2003-04,3,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/19/03,LAL @ NYK,NYK
Layup Shot,Layup,65,20300156,34.0443,0,0,-118.2698,5,1,0,2003-04,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/03,LAL @ NYK,NYK
Layup Shot,Layup,67,20300156,34.0443,0,0,-118.2698,5,1,0,2003-04,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/03,LAL @ NYK,NYK
Layup Shot,Layup,99,20300156,34.0443,0,0,-118.2698,2,1,0,2003-04,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/03,LAL @ NYK,NYK
Turnaround Jump Shot,Jump Shot,149,20300156,34.0683,-92,-24,-118.3618,10,2,0,2003-04,26,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/19/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,164,20300156,33.9783,138,66,-118.1318,8,2,0,2003-04,49,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/19/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,182,20300156,33.9673,-6,77,-118.2758,6,2,0,2003-04,38,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/19/03,LAL @ NYK,NYK
Layup Shot,Layup,196,20300156,34.0443,0,0,-118.2698,4,2,0,2003-04,48,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/03,LAL @ NYK,NYK
Layup Shot,Layup,322,20300156,34.0443,0,0,-118.2698,5,3,0,2003-04,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/03,LAL @ NYK,NYK
Jump Shot,Jump Shot,25,20300172,33.9393,-148,105,-118.4178,8,1,0,2003-04,43,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/21/03,LAL vs. CHI,CHI
Slam Dunk Shot,Dunk,27,20300172,34.0443,0,0,-118.2698,8,1,0,2003-04,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Layup Shot,Layup,37,20300172,34.0443,0,0,-118.2698,7,1,0,2003-04,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,55,20300172,34.0503,44,-6,-118.2258,5,1,0,2003-04,48,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,124,20300172,33.9853,144,59,-118.1258,11,2,0,2003-04,25,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/21/03,LAL vs. CHI,CHI
Alley Oop Layup shot,Layup,133,20300172,34.0443,0,0,-118.2698,10,2,0,2003-04,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Layup Shot,Layup,228,20300172,34.0443,0,0,-118.2698,2,2,0,2003-04,42,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,322,20300172,33.9473,151,97,-118.1188,5,3,0,2003-04,47,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,440,20300172,34.0573,-161,-13,-118.4308,6,4,0,2003-04,30,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,456,20300172,34.0033,-95,41,-118.3648,4,4,0,2003-04,7,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,462,20300172,34.0143,-25,30,-118.2948,3,4,0,2003-04,50,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Layup Shot,Layup,465,20300172,34.0443,0,0,-118.2698,3,4,0,2003-04,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,482,20300172,33.8633,-181,181,-118.4508,2,4,0,2003-04,2,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/21/03,LAL vs. CHI,CHI
Driving Finger Roll Shot,Layup,494,20300172,34.0443,0,0,-118.2698,1,4,0,2003-04,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/03,LAL vs. CHI,CHI
Fadeaway Jump Shot,Jump Shot,500,20300172,33.9673,-71,77,-118.3408,0,4,0,2003-04,41,10,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/21/03,LAL vs. CHI,CHI
Jump Shot,Jump Shot,13,20300187,33.9303,-2,114,-118.2718,10,1,0,2003-04,34,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/23/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,51,20300187,33.9853,192,59,-118.0778,6,1,0,2003-04,44,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/23/03,LAL vs. MEM,MEM
Driving Layup Shot,Layup,55,20300187,34.0443,0,0,-118.2698,5,1,0,2003-04,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,150,20300187,33.9983,-204,46,-118.4738,7,2,0,2003-04,16,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/23/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,186,20300187,33.8473,174,197,-118.0958,4,2,0,2003-04,38,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/23/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,195,20300187,33.9173,-66,127,-118.3358,3,2,0,2003-04,45,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/23/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,220,20300187,33.8983,118,146,-118.1518,0,2,0,2003-04,49,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/23/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,243,20300187,33.9063,61,138,-118.2088,11,3,0,2003-04,6,15,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/23/03,LAL vs. MEM,MEM
Turnaround Jump Shot,Jump Shot,283,20300187,33.8633,87,181,-118.1828,6,3,0,2003-04,1,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/23/03,LAL vs. MEM,MEM
Running Jump Shot,Jump Shot,292,20300187,34.0223,62,22,-118.2078,5,3,0,2003-04,15,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/23/03,LAL vs. MEM,MEM
Layup Shot,Layup,355,20300187,34.0273,-34,17,-118.3038,10,4,0,2003-04,49,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/03,LAL vs. MEM,MEM
Jump Shot,Jump Shot,8,20300208,34.0313,138,13,-118.1318,10,1,0,2003-04,24,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/26/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,18,20300208,33.8423,151,202,-118.1188,9,1,0,2003-04,15,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/26/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,33,20300208,33.8293,121,215,-118.1488,6,1,0,2003-04,57,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/26/03,LAL vs. WAS,WAS
Running Finger Roll Shot,Layup,38,20300208,34.0443,0,0,-118.2698,6,1,0,2003-04,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/26/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,77,20300208,33.9653,77,79,-118.1928,2,1,0,2003-04,48,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/26/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,197,20300208,34.0673,120,-23,-118.1498,1,2,0,2003-04,28,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/26/03,LAL vs. WAS,WAS
Layup Shot,Layup,211,20300208,34.0443,0,0,-118.2698,0,2,0,2003-04,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/26/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,223,20300208,33.9623,-85,82,-118.3548,11,3,0,2003-04,38,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/26/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,225,20300208,34.0413,-237,3,-118.5068,11,3,0,2003-04,35,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/26/03,LAL vs. WAS,WAS
Driving Finger Roll Shot,Layup,282,20300208,34.0443,0,0,-118.2698,5,3,0,2003-04,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/26/03,LAL vs. WAS,WAS
Jump Shot,Jump Shot,95,20300222,33.7833,-28,261,-118.2978,4,1,0,2003-04,22,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/28/03,LAL vs. SAS,SAS
Driving Layup Shot,Layup,166,20300222,34.0443,0,0,-118.2698,8,2,0,2003-04,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,174,20300222,33.9013,113,143,-118.1568,8,2,0,2003-04,29,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/28/03,LAL vs. SAS,SAS
Layup Shot,Layup,249,20300222,34.0443,0,0,-118.2698,1,2,0,2003-04,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,269,20300222,33.5433,31,501,-118.2388,0,2,0,2003-04,0,50,0,2PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,11/28/03,LAL vs. SAS,SAS
Jump Bank Shot,Jump Shot,295,20300222,34.0193,67,25,-118.2028,9,3,0,2003-04,13,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/28/03,LAL vs. SAS,SAS
Jump Shot,Jump Shot,320,20300222,33.8933,207,151,-118.0628,6,3,0,2003-04,37,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/28/03,LAL vs. SAS,SAS
Hook Shot,Hook Shot,339,20300222,34.0273,75,17,-118.1948,5,3,0,2003-04,35,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/28/03,LAL vs. SAS,SAS
Layup Shot,Layup,53,20300234,34.0443,0,0,-118.2698,7,1,0,2003-04,25,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/03,LAL vs. IND,IND
Driving Layup Shot,Layup,59,20300234,34.0443,0,0,-118.2698,6,1,0,2003-04,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/03,LAL vs. IND,IND
Reverse Layup Shot,Layup,77,20300234,34.0443,0,0,-118.2698,5,1,0,2003-04,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/03,LAL vs. IND,IND
Jump Shot,Jump Shot,84,20300234,33.9753,-23,69,-118.2928,4,1,0,2003-04,32,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/30/03,LAL vs. IND,IND
Jump Shot,Jump Shot,167,20300234,33.9783,-38,66,-118.3078,8,2,0,2003-04,17,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/30/03,LAL vs. IND,IND
Jump Shot,Jump Shot,178,20300234,33.9423,-29,102,-118.2988,7,2,0,2003-04,49,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/30/03,LAL vs. IND,IND
Jump Shot,Jump Shot,197,20300234,33.8663,121,178,-118.1488,6,2,0,2003-04,16,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/30/03,LAL vs. IND,IND
Driving Layup Shot,Layup,217,20300234,34.0443,0,0,-118.2698,3,2,0,2003-04,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/03,LAL vs. IND,IND
Jump Shot,Jump Shot,304,20300234,33.7943,66,250,-118.2038,6,3,0,2003-04,57,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/30/03,LAL vs. IND,IND
Jump Shot,Jump Shot,323,20300234,33.8343,-145,210,-118.4148,4,3,0,2003-04,39,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/30/03,LAL vs. IND,IND
Jump Shot,Jump Shot,4,20300251,33.8843,117,160,-118.1528,11,1,0,2003-04,24,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/3/03,LAL @ SAS,SAS
Tip Shot,Tip Shot,10,20300251,34.0313,24,13,-118.2458,10,1,0,2003-04,43,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,54,20300251,33.9953,232,49,-118.0378,4,1,0,2003-04,12,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/3/03,LAL @ SAS,SAS
Dunk Shot,Dunk,89,20300251,34.0323,13,12,-118.2568,11,2,0,2003-04,47,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,92,20300251,34.0393,-82,5,-118.3518,11,2,0,2003-04,18,8,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/3/03,LAL @ SAS,SAS
Fadeaway Jump Shot,Jump Shot,106,20300251,34.0443,-135,0,-118.4048,9,2,0,2003-04,16,13,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,199,20300251,33.8573,-49,187,-118.3188,1,2,0,2003-04,31,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/3/03,LAL @ SAS,SAS
Driving Finger Roll Shot,Layup,248,20300251,34.0313,-61,13,-118.3308,8,3,0,2003-04,0,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,309,20300251,34.0363,41,8,-118.2288,1,3,0,2003-04,31,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,320,20300251,33.9293,217,115,-118.0528,0,3,0,2003-04,28,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,326,20300251,33.9733,-148,71,-118.4178,0,3,0,2003-04,0,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/3/03,LAL @ SAS,SAS
Driving Layup Shot,Layup,354,20300251,34.0263,15,18,-118.2548,9,4,0,2003-04,26,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,359,20300251,33.8863,59,158,-118.2108,9,4,0,2003-04,16,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/3/03,LAL @ SAS,SAS
Running Layup Shot,Layup,372,20300251,34.0133,0,31,-118.2698,8,4,0,2003-04,13,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,386,20300251,33.8703,10,174,-118.2598,6,4,0,2003-04,55,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/3/03,LAL @ SAS,SAS
Layup Shot,Layup,399,20300251,34.0343,20,10,-118.2498,5,4,0,2003-04,58,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/03,LAL @ SAS,SAS
Turnaround Jump Shot,Jump Shot,446,20300251,33.9393,41,105,-118.2288,0,4,0,2003-04,49,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/3/03,LAL @ SAS,SAS
Jump Shot,Jump Shot,66,20300258,33.9073,15,137,-118.2548,6,1,0,2003-04,9,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,71,20300258,33.9243,10,120,-118.2598,5,1,0,2003-04,26,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,154,20300258,34.0183,89,26,-118.1808,9,2,0,2003-04,42,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,203,20300258,33.9493,200,95,-118.0698,5,2,0,2003-04,45,22,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/4/03,LAL @ DAL,DAL
Fadeaway Jump Shot,Jump Shot,209,20300258,33.9553,194,89,-118.0758,5,2,0,2003-04,11,21,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,214,20300258,33.8633,21,181,-118.2488,4,2,0,2003-04,13,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,285,20300258,33.3803,-186,664,-118.4558,0,2,0,2003-04,0,68,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,291,20300258,33.8503,154,194,-118.1158,11,3,0,2003-04,29,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/4/03,LAL @ DAL,DAL
Reverse Layup Shot,Layup,296,20300258,34.0443,0,0,-118.2698,11,3,0,2003-04,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,354,20300258,33.9803,-233,64,-118.5028,6,3,0,2003-04,56,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,364,20300258,34.0033,36,41,-118.2338,5,3,0,2003-04,34,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/4/03,LAL @ DAL,DAL
Layup Shot,Layup,365,20300258,34.0443,0,0,-118.2698,5,3,0,2003-04,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,367,20300258,33.9883,-227,56,-118.4968,5,3,0,2003-04,5,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,396,20300258,34.0533,-230,-9,-118.4998,3,3,0,2003-04,27,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/4/03,LAL @ DAL,DAL
Reverse Layup Shot,Layup,399,20300258,34.0443,0,0,-118.2698,3,3,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,406,20300258,33.9993,89,45,-118.1808,2,3,0,2003-04,21,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,432,20300258,33.9013,159,143,-118.1108,0,3,0,2003-04,31,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/4/03,LAL @ DAL,DAL
Layup Shot,Layup,506,20300258,34.0443,0,0,-118.2698,4,4,0,2003-04,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/03,LAL @ DAL,DAL
Layup Shot,Layup,516,20300258,34.0443,0,0,-118.2698,3,4,0,2003-04,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/03,LAL @ DAL,DAL
Driving Layup Shot,Layup,523,20300258,34.0443,0,0,-118.2698,3,4,0,2003-04,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/4/03,LAL @ DAL,DAL
Jump Shot,Jump Shot,64,20300284,33.7873,16,257,-118.2538,3,1,0,2003-04,35,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/7/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,76,20300284,33.8713,123,173,-118.1468,1,1,0,2003-04,41,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/7/03,LAL vs. UTA,UTA
Layup Shot,Layup,84,20300284,34.0443,0,0,-118.2698,0,1,0,2003-04,55,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,106,20300284,33.8983,-131,146,-118.4008,11,2,0,2003-04,38,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/7/03,LAL vs. UTA,UTA
Layup Shot,Layup,109,20300284,34.0443,0,0,-118.2698,10,2,0,2003-04,55,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/03,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,228,20300284,33.9493,-117,95,-118.3868,0,2,0,2003-04,26,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/7/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,256,20300284,33.9043,108,140,-118.1618,9,3,0,2003-04,28,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/7/03,LAL vs. UTA,UTA
Hook Shot,Hook Shot,300,20300284,34.0273,14,17,-118.2558,5,3,0,2003-04,11,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,369,20300284,34.0273,143,17,-118.1268,10,4,0,2003-04,22,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/7/03,LAL vs. UTA,UTA
Jump Shot,Jump Shot,448,20300284,33.9833,130,61,-118.1398,3,4,0,2003-04,3,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/7/03,LAL vs. UTA,UTA
Layup Shot,Layup,461,20300284,34.0443,0,0,-118.2698,2,4,0,2003-04,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/7/03,LAL vs. UTA,UTA
Driving Dunk Shot,Dunk,66,20300298,34.0443,0,0,-118.2698,9,1,0,2003-04,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,75,20300298,33.9523,3,92,-118.2668,7,1,0,2003-04,39,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,82,20300298,33.9033,-112,141,-118.3818,6,1,0,2003-04,44,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/9/03,LAL vs. NYK,NYK
Layup Shot,Layup,106,20300298,34.0393,-26,5,-118.2958,4,1,0,2003-04,21,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/9/03,LAL vs. NYK,NYK
Driving Layup Shot,Layup,160,20300298,34.0443,0,0,-118.2698,11,2,0,2003-04,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,189,20300298,33.8703,103,174,-118.1668,7,2,0,2003-04,41,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/9/03,LAL vs. NYK,NYK
Turnaround Jump Shot,Jump Shot,193,20300298,33.9913,5,53,-118.2648,7,2,0,2003-04,14,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/9/03,LAL vs. NYK,NYK
Alley Oop Layup shot,Layup,205,20300298,34.0443,0,0,-118.2698,6,2,0,2003-04,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/9/03,LAL vs. NYK,NYK
Tip Shot,Tip Shot,240,20300298,34.0443,0,0,-118.2698,4,2,0,2003-04,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,302,20300298,33.9883,199,56,-118.0708,9,3,0,2003-04,49,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/9/03,LAL vs. NYK,NYK
Reverse Layup Shot,Layup,304,20300298,34.0443,0,0,-118.2698,9,3,0,2003-04,12,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,421,20300298,33.9063,138,138,-118.1318,9,4,0,2003-04,44,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,494,20300298,33.9403,-100,104,-118.3698,3,4,0,2003-04,2,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,517,20300298,33.8733,67,171,-118.2028,1,4,0,2003-04,8,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/9/03,LAL vs. NYK,NYK
Jump Shot,Jump Shot,5,20300318,34.0723,171,-28,-118.0988,11,1,0,2003-04,7,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/12/03,LAL vs. DAL,DAL
Layup Shot,Layup,47,20300318,34.0443,0,0,-118.2698,6,1,0,2003-04,27,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,144,20300318,33.9933,-10,51,-118.2798,0,1,0,2003-04,57,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,147,20300318,33.8533,-164,191,-118.4338,0,1,0,2003-04,34,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,150,20300318,33.9673,82,77,-118.1878,0,1,0,2003-04,7,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,197,20300318,33.8403,148,204,-118.1218,7,2,0,2003-04,44,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/12/03,LAL vs. DAL,DAL
Fadeaway Jump Shot,Jump Shot,201,20300318,33.8713,-72,173,-118.3418,7,2,0,2003-04,25,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/12/03,LAL vs. DAL,DAL
Slam Dunk Shot,Dunk,216,20300318,34.0443,0,0,-118.2698,5,2,0,2003-04,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/03,LAL vs. DAL,DAL
Turnaround Jump Shot,Jump Shot,225,20300318,33.9063,90,138,-118.1798,4,2,0,2003-04,52,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,238,20300318,33.8613,97,183,-118.1728,3,2,0,2003-04,7,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,400,20300318,33.8763,-82,168,-118.3518,1,3,0,2003-04,44,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/12/03,LAL vs. DAL,DAL
Layup Shot,Layup,415,20300318,34.0443,0,0,-118.2698,0,3,0,2003-04,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/03,LAL vs. DAL,DAL
Reverse Layup Shot,Layup,433,20300318,34.0443,0,0,-118.2698,10,4,0,2003-04,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,561,20300318,33.9723,0,72,-118.2698,2,4,0,2003-04,0,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/12/03,LAL vs. DAL,DAL
Jump Shot,Jump Shot,102,20300326,34.0533,205,-9,-118.0648,11,2,0,2003-04,4,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/13/03,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,143,20300326,34.0183,159,26,-118.1108,6,2,0,2003-04,53,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,162,20300326,33.8703,-64,174,-118.3338,4,2,0,2003-04,51,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/13/03,LAL @ POR,POR
Driving Finger Roll Shot,Layup,167,20300326,34.0443,0,0,-118.2698,4,2,0,2003-04,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,211,20300326,34.0393,210,5,-118.0598,0,2,0,2003-04,22,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,273,20300326,34.0393,-82,5,-118.3518,6,3,0,2003-04,5,8,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,284,20300326,34.0443,0,0,-118.2698,4,3,0,2003-04,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,295,20300326,34.0443,0,0,-118.2698,3,3,0,2003-04,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/03,LAL @ POR,POR
Layup Shot,Layup,380,20300326,34.0443,0,0,-118.2698,6,4,0,2003-04,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,387,20300326,34.0443,0,0,-118.2698,6,4,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/03,LAL @ POR,POR
Reverse Layup Shot,Layup,395,20300326,34.0443,0,0,-118.2698,5,4,0,2003-04,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/03,LAL @ POR,POR
Driving Layup Shot,Layup,400,20300326,34.0443,0,0,-118.2698,4,4,0,2003-04,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,409,20300326,33.8913,-212,153,-118.4818,3,4,0,2003-04,32,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/13/03,LAL @ POR,POR
Jump Shot,Jump Shot,465,20300326,33.8403,-138,204,-118.4078,0,4,0,2003-04,9,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/13/03,LAL @ POR,POR
Turnaround Jump Shot,Jump Shot,219,20300369,33.9303,120,114,-118.1498,5,2,0,2003-04,47,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,262,20300369,33.8573,120,187,-118.1498,1,2,0,2003-04,32,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/19/03,LAL vs. DEN,DEN
Driving Layup Shot,Layup,280,20300369,34.0443,0,0,-118.2698,11,3,0,2003-04,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/03,LAL vs. DEN,DEN
Reverse Layup Shot,Layup,294,20300369,34.0443,0,0,-118.2698,9,3,0,2003-04,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,301,20300369,33.9243,-222,120,-118.4918,8,3,0,2003-04,54,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,416,20300369,34.0673,103,-23,-118.1668,8,4,0,2003-04,48,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,424,20300369,34.0473,-202,-3,-118.4718,8,4,0,2003-04,8,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,479,20300369,33.9373,-138,107,-118.4078,2,4,0,2003-04,39,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,491,20300369,33.8863,131,158,-118.1388,1,4,0,2003-04,31,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,512,20300369,33.8733,125,171,-118.1448,0,4,0,2003-04,14,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/19/03,LAL vs. DEN,DEN
Jump Shot,Jump Shot,522,20300369,33.8383,10,206,-118.2598,0,4,0,2003-04,0,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/19/03,LAL vs. DEN,DEN
Layup Shot,Layup,66,20300385,34.0443,0,0,-118.2698,6,1,0,2003-04,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/03,LAL vs. PHX,PHX
Layup Shot,Layup,234,20300385,34.0443,0,0,-118.2698,0,2,0,2003-04,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/03,LAL vs. PHX,PHX
Tip Shot,Tip Shot,253,20300385,34.0443,0,0,-118.2698,10,3,0,2003-04,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,277,20300385,33.8703,172,174,-118.0978,8,3,0,2003-04,27,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/21/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,382,20300385,33.8813,-107,163,-118.3768,10,4,0,2003-04,18,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/21/03,LAL vs. PHX,PHX
Tip Shot,Tip Shot,387,20300385,34.0443,0,0,-118.2698,9,4,0,2003-04,45,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/03,LAL vs. PHX,PHX
Tip Shot,Tip Shot,389,20300385,34.0443,0,0,-118.2698,9,4,0,2003-04,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/21/03,LAL vs. PHX,PHX
Jump Shot,Jump Shot,401,20300385,33.9193,-149,125,-118.4188,8,4,0,2003-04,16,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/21/03,LAL vs. PHX,PHX
Slam Dunk Shot,Dunk,69,20300400,34.0443,0,0,-118.2698,4,1,0,2003-04,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,156,20300400,34.0443,0,0,-118.2698,6,2,0,2003-04,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Reverse Layup Shot,Layup,184,20300400,34.0273,21,17,-118.2488,4,2,0,2003-04,21,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,260,20300400,34.0243,61,20,-118.2088,9,3,0,2003-04,39,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Alley Oop Dunk Shot,Dunk,278,20300400,34.0443,0,0,-118.2698,8,3,0,2003-04,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Layup Shot,Layup,281,20300400,34.0243,21,20,-118.2488,7,3,0,2003-04,35,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Driving Layup Shot,Layup,302,20300400,34.0443,0,0,-118.2698,5,3,0,2003-04,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Reverse Layup Shot,Layup,312,20300400,34.0443,0,0,-118.2698,4,3,0,2003-04,50,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,338,20300400,34.0423,-118,2,-118.3878,2,3,0,2003-04,8,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/23/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,405,20300400,33.7913,-133,253,-118.4028,6,4,0,2003-04,54,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/23/03,LAL @ GSW,GSW
Follow Up Dunk Shot,Dunk,410,20300400,34.0443,0,0,-118.2698,6,4,0,2003-04,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/23/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,427,20300400,33.8863,189,158,-118.0808,4,4,0,2003-04,8,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/23/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,443,20300400,33.8043,80,240,-118.1898,2,4,0,2003-04,25,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/23/03,LAL @ GSW,GSW
Jump Shot,Jump Shot,449,20300400,33.8433,167,201,-118.1028,1,4,0,2003-04,49,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/23/03,LAL @ GSW,GSW
Layup Shot,Layup,74,20300403,34.0443,0,0,-118.2698,2,1,0,2003-04,9,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Layup Shot,Layup,76,20300403,34.0443,0,0,-118.2698,2,1,0,2003-04,6,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,105,20300403,34.0703,181,-26,-118.0888,11,2,0,2003-04,4,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,111,20300403,34.0093,120,35,-118.1498,10,2,0,2003-04,24,12,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/25/03,LAL vs. HOU,HOU
Layup Shot,Layup,135,20300403,34.0443,0,0,-118.2698,8,2,0,2003-04,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Driving Layup Shot,Layup,142,20300403,34.0443,0,0,-118.2698,7,2,0,2003-04,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,175,20300403,33.9373,90,107,-118.1798,5,2,0,2003-04,4,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,265,20300403,34.0553,-166,-11,-118.4358,9,3,0,2003-04,7,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,286,20300403,34.0143,169,30,-118.1008,6,3,0,2003-04,59,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Driving Layup Shot,Layup,292,20300403,34.0443,0,0,-118.2698,6,3,0,2003-04,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,315,20300403,33.8323,-146,212,-118.4158,4,3,0,2003-04,27,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/03,LAL vs. HOU,HOU
Fadeaway Jump Shot,Jump Shot,317,20300403,33.9043,-48,140,-118.3178,3,3,0,2003-04,40,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,326,20300403,33.9403,138,104,-118.1318,3,3,0,2003-04,3,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,364,20300403,33.9473,-138,97,-118.4078,0,3,0,2003-04,39,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,367,20300403,33.9733,-25,71,-118.2948,0,3,0,2003-04,9,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Layup Shot,Layup,370,20300403,34.0443,0,0,-118.2698,0,3,0,2003-04,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,379,20300403,33.8913,61,153,-118.2088,11,4,0,2003-04,16,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,387,20300403,34.0473,192,-3,-118.0778,10,4,0,2003-04,10,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Layup Shot,Layup,393,20300403,34.0443,0,0,-118.2698,9,4,0,2003-04,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,451,20300403,33.8113,-128,233,-118.3978,4,4,0,2003-04,21,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,458,20300403,34.0473,90,-3,-118.1798,2,4,0,2003-04,59,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/25/03,LAL vs. HOU,HOU
Jump Shot,Jump Shot,481,20300403,33.9073,-108,137,-118.3778,1,4,0,2003-04,35,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/03,LAL vs. HOU,HOU
Tip Shot,Tip Shot,16,20300429,34.0443,0,0,-118.2698,10,1,0,2003-04,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,78,20300429,33.7633,-48,281,-118.3178,4,1,0,2003-04,10,28,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,83,20300429,34.0553,-153,-11,-118.4228,3,1,0,2003-04,32,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,114,20300429,33.8093,120,235,-118.1498,0,1,0,2003-04,28,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,119,20300429,33.6583,189,386,-118.0808,0,1,0,2003-04,0,42,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,175,20300429,33.9393,-108,105,-118.3778,7,2,0,2003-04,28,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,192,20300429,33.8503,158,194,-118.1118,5,2,0,2003-04,34,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/03,LAL vs. BOS,BOS
Dunk Shot,Dunk,194,20300429,34.0313,-31,13,-118.3008,5,2,0,2003-04,28,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,200,20300429,33.9853,-168,59,-118.4378,4,2,0,2003-04,44,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/28/03,LAL vs. BOS,BOS
Layup Shot,Layup,244,20300429,34.0443,0,0,-118.2698,1,2,0,2003-04,8,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,253,20300429,33.8253,143,219,-118.1268,0,2,0,2003-04,41,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,266,20300429,33.8683,108,176,-118.1618,0,2,0,2003-04,1,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,271,20300429,33.7743,23,270,-118.2468,11,3,0,2003-04,41,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/28/03,LAL vs. BOS,BOS
Driving Layup Shot,Layup,295,20300429,34.0443,0,0,-118.2698,9,3,0,2003-04,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,357,20300429,34.0133,194,31,-118.0758,4,3,0,2003-04,28,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,431,20300429,33.8993,108,145,-118.1618,9,4,0,2003-04,49,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,443,20300429,33.8753,-102,169,-118.3718,8,4,0,2003-04,31,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/28/03,LAL vs. BOS,BOS
Jump Shot,Jump Shot,2,20300462,33.8123,107,232,-118.1628,11,1,0,2003-04,36,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,143,20300462,34.0623,54,-18,-118.2158,10,2,0,2003-04,49,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,149,20300462,34.0473,43,-3,-118.2268,10,2,0,2003-04,23,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Running Jump Shot,Jump Shot,165,20300462,34.0133,-29,31,-118.2988,9,2,0,2003-04,8,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Layup Shot,Layup,213,20300462,34.0443,0,0,-118.2698,4,2,0,2003-04,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,242,20300462,33.9353,-153,109,-118.4228,1,2,0,2003-04,2,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/2/04,LAL @ SEA,SEA
Reverse Dunk Shot,Dunk,280,20300462,34.0443,0,0,-118.2698,10,3,0,2003-04,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Fadeaway Jump Shot,Jump Shot,310,20300462,34.0493,-125,-5,-118.3948,6,3,0,2003-04,34,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,316,20300462,33.9953,-123,49,-118.3928,5,3,0,2003-04,25,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,325,20300462,34.0453,125,-1,-118.1448,3,3,0,2003-04,21,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/2/04,LAL @ SEA,SEA
Layup Shot,Layup,327,20300462,34.0443,0,0,-118.2698,3,3,0,2003-04,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,377,20300462,33.8733,126,171,-118.1438,0,3,0,2003-04,0,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/2/04,LAL @ SEA,SEA
Fadeaway Jump Shot,Jump Shot,409,20300462,33.9993,0,45,-118.2698,8,4,0,2003-04,35,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Driving Dunk Shot,Dunk,426,20300462,34.0443,0,0,-118.2698,7,4,0,2003-04,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,440,20300462,34.0443,-28,0,-118.2978,6,4,0,2003-04,21,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,443,20300462,34.0033,-2,41,-118.2718,5,4,0,2003-04,58,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,449,20300462,34.0453,85,-1,-118.1848,5,4,0,2003-04,8,8,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,466,20300462,33.8583,-41,186,-118.3108,2,4,0,2003-04,57,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/2/04,LAL @ SEA,SEA
Layup Shot,Layup,480,20300462,34.0223,15,22,-118.2548,2,4,0,2003-04,7,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Layup Shot,Layup,482,20300462,34.0453,15,-1,-118.2548,2,4,0,2003-04,5,1,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/04,LAL @ SEA,SEA
Turnaround Jump Shot,Jump Shot,496,20300462,34.0523,102,-8,-118.1678,1,4,0,2003-04,1,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,500,20300462,33.9063,-223,138,-118.4928,0,4,0,2003-04,22,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,505,20300462,33.8943,207,150,-118.0628,0,4,0,2003-04,0,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,6,20300476,33.9033,-5,141,-118.2748,11,1,0,2003-04,26,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/4/04,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,11,20300476,33.8893,64,155,-118.2058,10,1,0,2003-04,40,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,14,20300476,33.9813,131,63,-118.1388,10,1,0,2003-04,10,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,50,20300476,33.9503,107,94,-118.1628,6,1,0,2003-04,33,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,86,20300476,33.9503,-105,94,-118.3748,4,1,0,2003-04,4,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,94,20300476,33.8763,192,168,-118.0778,3,1,0,2003-04,22,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/4/04,LAL @ LAC,LAC
Turnaround Jump Shot,Jump Shot,107,20300476,33.8943,79,150,-118.1908,2,1,0,2003-04,31,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,113,20300476,33.8753,-133,169,-118.4028,1,1,0,2003-04,0,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,124,20300476,33.8613,59,183,-118.2108,0,1,0,2003-04,1,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/4/04,LAL @ LAC,LAC
Layup Shot,Layup,156,20300476,34.0443,0,0,-118.2698,8,2,0,2003-04,19,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Layup Shot,Layup,163,20300476,34.0443,0,0,-118.2698,7,2,0,2003-04,48,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,199,20300476,33.8753,-195,169,-118.4648,4,2,0,2003-04,43,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,234,20300476,33.7923,43,252,-118.2268,1,2,0,2003-04,18,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,289,20300476,33.9503,-169,94,-118.4388,7,3,0,2003-04,57,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/4/04,LAL @ LAC,LAC
Driving Layup Shot,Layup,299,20300476,34.0443,0,0,-118.2698,6,3,0,2003-04,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Turnaround Jump Shot,Jump Shot,313,20300476,33.9963,16,48,-118.2538,5,3,0,2003-04,5,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,334,20300476,34.0453,248,-1,-118.0218,2,3,0,2003-04,39,24,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,1/4/04,LAL @ LAC,LAC
Driving Layup Shot,Layup,342,20300476,34.0443,0,0,-118.2698,2,3,0,2003-04,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,354,20300476,33.8153,-125,229,-118.3948,0,3,0,2003-04,32,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/4/04,LAL @ LAC,LAC
Layup Shot,Layup,436,20300476,34.0443,0,0,-118.2698,4,4,0,2003-04,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Layup Shot,Layup,440,20300476,34.0443,0,0,-118.2698,4,4,0,2003-04,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,464,20300476,33.9783,-25,66,-118.2948,2,4,0,2003-04,52,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,473,20300476,33.7763,-39,268,-118.3088,1,4,0,2003-04,38,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/4/04,LAL @ LAC,LAC
Driving Dunk Shot,Dunk,476,20300476,34.0443,0,0,-118.2698,1,4,0,2003-04,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/4/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,77,20300488,34.0413,176,3,-118.0938,2,1,0,2003-04,36,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/6/04,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,121,20300488,33.9813,-41,63,-118.3108,10,2,0,2003-04,27,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/6/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,123,20300488,34.0573,-166,-13,-118.4358,9,2,0,2003-04,55,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/6/04,LAL @ MIN,MIN
Reverse Layup Shot,Layup,126,20300488,34.0443,0,0,-118.2698,9,2,0,2003-04,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/04,LAL @ MIN,MIN
Running Dunk Shot,Dunk,144,20300488,34.0443,0,0,-118.2698,7,2,0,2003-04,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,181,20300488,33.8863,-8,158,-118.2778,4,2,0,2003-04,41,15,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/6/04,LAL @ MIN,MIN
Driving Layup Shot,Layup,200,20300488,34.0443,0,0,-118.2698,2,2,0,2003-04,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/04,LAL @ MIN,MIN
Driving Dunk Shot,Dunk,215,20300488,34.0443,0,0,-118.2698,1,2,0,2003-04,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/04,LAL @ MIN,MIN
Driving Layup Shot,Layup,239,20300488,34.0443,0,0,-118.2698,10,3,0,2003-04,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/6/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,305,20300488,33.9493,151,95,-118.1188,3,3,0,2003-04,57,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/6/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,325,20300488,33.8843,217,160,-118.0528,2,3,0,2003-04,26,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/6/04,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,430,20300488,34.0093,84,35,-118.1858,3,4,0,2003-04,47,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/6/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,446,20300488,33.8663,-141,178,-118.4108,2,4,0,2003-04,22,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/6/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,2,20300500,33.9723,200,72,-118.0698,11,1,0,2003-04,53,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,45,20300500,33.9043,-110,140,-118.3798,6,1,0,2003-04,44,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,61,20300500,33.9733,0,71,-118.2698,5,1,0,2003-04,15,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/7/04,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,142,20300500,33.8893,103,155,-118.1668,10,2,0,2003-04,32,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,150,20300500,34.0583,135,-14,-118.1348,9,2,0,2003-04,26,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,176,20300500,33.9813,1,63,-118.2688,7,2,0,2003-04,1,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,184,20300500,33.8703,90,174,-118.1798,6,2,0,2003-04,11,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Turnaround Jump Shot,Jump Shot,191,20300500,34.0503,-174,-6,-118.4438,5,2,0,2003-04,33,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Turnaround Jump Shot,Jump Shot,210,20300500,34.0183,-89,26,-118.3588,4,2,0,2003-04,3,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,217,20300500,33.8603,59,184,-118.2108,2,2,0,2003-04,23,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Fadeaway Jump Shot,Jump Shot,285,20300500,34.0343,210,10,-118.0598,8,3,0,2003-04,32,21,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Layup Shot,Layup,314,20300500,34.0443,0,0,-118.2698,6,3,0,2003-04,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,337,20300500,33.9863,189,58,-118.0808,4,3,0,2003-04,42,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,394,20300500,33.9373,222,107,-118.0478,11,4,0,2003-04,42,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/04,LAL @ DEN,DEN
Dunk Shot,Dunk,407,20300500,34.0443,0,0,-118.2698,10,4,0,2003-04,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,415,20300500,33.9123,210,132,-118.0598,9,4,0,2003-04,50,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,418,20300500,33.8473,140,197,-118.1298,9,4,0,2003-04,28,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/04,LAL @ DEN,DEN
Running Jump Shot,Jump Shot,432,20300500,33.9503,69,94,-118.2008,8,4,0,2003-04,15,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/7/04,LAL @ DEN,DEN
Driving Layup Shot,Layup,452,20300500,34.0443,0,0,-118.2698,6,4,0,2003-04,25,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,459,20300500,33.9303,215,114,-118.0548,5,4,0,2003-04,18,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/7/04,LAL @ DEN,DEN
Reverse Layup Shot,Layup,463,20300500,34.0443,0,0,-118.2698,4,4,0,2003-04,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/7/04,LAL @ DEN,DEN
Layup Shot,Layup,10,20300515,34.0443,0,0,-118.2698,10,1,0,2003-04,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/04,LAL vs. ATL,ATL
Turnaround Jump Shot,Jump Shot,19,20300515,34.0493,-154,-5,-118.4238,9,1,0,2003-04,4,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/9/04,LAL vs. ATL,ATL
Fadeaway Jump Shot,Jump Shot,52,20300515,33.9013,16,143,-118.2538,4,1,0,2003-04,8,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,71,20300515,33.8093,82,235,-118.1878,2,1,0,2003-04,16,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,74,20300515,33.8123,186,232,-118.0838,1,1,0,2003-04,51,29,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,76,20300515,33.8303,140,214,-118.1298,1,1,0,2003-04,28,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/9/04,LAL vs. ATL,ATL
Driving Layup Shot,Layup,83,20300515,34.0443,0,0,-118.2698,0,1,0,2003-04,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,92,20300515,33.8143,-99,230,-118.3688,0,1,0,2003-04,2,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,112,20300515,33.8603,-117,184,-118.3868,10,2,0,2003-04,8,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/9/04,LAL vs. ATL,ATL
Turnaround Jump Shot,Jump Shot,114,20300515,33.9403,-95,104,-118.3648,9,2,0,2003-04,25,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,1/9/04,LAL vs. ATL,ATL
Reverse Layup Shot,Layup,165,20300515,34.0443,0,0,-118.2698,4,2,0,2003-04,32,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/04,LAL vs. ATL,ATL
Layup Shot,Layup,171,20300515,34.0443,0,0,-118.2698,3,2,0,2003-04,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,185,20300515,33.9453,-179,99,-118.4488,2,2,0,2003-04,25,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,1/9/04,LAL vs. ATL,ATL
Layup Shot,Layup,190,20300515,34.0443,0,0,-118.2698,1,2,0,2003-04,53,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/04,LAL vs. ATL,ATL
Slam Dunk Shot,Dunk,222,20300515,34.0443,0,0,-118.2698,11,3,0,2003-04,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,239,20300515,33.8343,131,210,-118.1388,9,3,0,2003-04,43,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/9/04,LAL vs. ATL,ATL
Dunk Shot,Dunk,242,20300515,34.0443,0,0,-118.2698,9,3,0,2003-04,12,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,283,20300515,33.9443,107,100,-118.1628,4,3,0,2003-04,17,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/9/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,289,20300515,33.9833,-74,61,-118.3438,3,3,0,2003-04,37,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,1/9/04,LAL vs. ATL,ATL
Fadeaway Jump Shot,Jump Shot,60,20300531,33.9653,138,79,-118.1318,6,1,0,2003-04,18,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/12/04,LAL vs. CLE,CLE
Layup Shot,Layup,87,20300531,34.0443,0,0,-118.2698,3,1,0,2003-04,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/04,LAL vs. CLE,CLE
Hook Shot,Hook Shot,102,20300531,34.0343,-18,10,-118.2878,2,1,0,2003-04,27,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/04,LAL vs. CLE,CLE
Layup Shot,Layup,110,20300531,34.0443,0,0,-118.2698,1,1,0,2003-04,55,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/04,LAL vs. CLE,CLE
Driving Finger Roll Shot,Layup,124,20300531,34.0443,0,0,-118.2698,0,1,0,2003-04,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/12/04,LAL vs. CLE,CLE
Jump Shot,Jump Shot,267,20300531,33.8243,-46,220,-118.3158,2,2,0,2003-04,51,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/12/04,LAL vs. CLE,CLE
Running Jump Shot,Jump Shot,3,20300625,33.9193,151,125,-118.1188,11,1,0,2003-04,33,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/24/04,LAL @ UTA,UTA
Layup Shot,Layup,10,20300625,34.0443,0,0,-118.2698,10,1,0,2003-04,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,16,20300625,33.8383,71,206,-118.1988,9,1,0,2003-04,33,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,33,20300625,33.9293,148,115,-118.1218,6,1,0,2003-04,57,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,44,20300625,33.8653,5,179,-118.2648,5,1,0,2003-04,11,17,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,48,20300625,33.8763,-39,168,-118.3088,4,1,0,2003-04,16,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,50,20300625,33.8073,29,237,-118.2408,4,1,0,2003-04,9,23,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,54,20300625,33.9933,5,51,-118.2648,3,1,0,2003-04,32,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/24/04,LAL @ UTA,UTA
Turnaround Jump Shot,Jump Shot,92,20300625,33.8913,-80,153,-118.3498,11,2,0,2003-04,38,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/24/04,LAL @ UTA,UTA
Fadeaway Jump Shot,Jump Shot,190,20300625,33.9043,158,140,-118.1118,0,2,0,2003-04,1,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,393,20300625,33.8323,128,212,-118.1418,1,4,0,2003-04,11,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,1/24/04,LAL @ UTA,UTA
Jump Shot,Jump Shot,2,20300655,33.8143,-84,230,-118.3538,11,1,0,2003-04,45,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,1/28/04,LAL vs. SEA,SEA
Turnaround Jump Shot,Jump Shot,54,20300655,34.0133,94,31,-118.1758,5,1,0,2003-04,43,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/28/04,LAL vs. SEA,SEA
Driving Layup Shot,Layup,81,20300655,34.0443,0,0,-118.2698,2,1,0,2003-04,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/04,LAL vs. SEA,SEA
Driving Layup Shot,Layup,112,20300655,34.0443,0,0,-118.2698,11,2,0,2003-04,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/04,LAL vs. SEA,SEA
Jump Shot,Jump Shot,125,20300655,33.9633,6,81,-118.2638,10,2,0,2003-04,8,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,1/28/04,LAL vs. SEA,SEA
Reverse Layup Shot,Layup,127,20300655,34.0443,0,0,-118.2698,9,2,0,2003-04,59,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/04,LAL vs. SEA,SEA
Jump Shot,Jump Shot,131,20300655,33.9243,87,120,-118.1828,9,2,0,2003-04,49,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,1/28/04,LAL vs. SEA,SEA
Jump Shot,Jump Shot,177,20300655,33.7813,-23,263,-118.2928,4,2,0,2003-04,37,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,1/28/04,LAL vs. SEA,SEA
Layup Shot,Layup,220,20300655,34.0443,0,0,-118.2698,10,3,0,2003-04,57,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/04,LAL vs. SEA,SEA
Jump Shot,Jump Shot,234,20300655,33.9733,-29,71,-118.2988,9,3,0,2003-04,9,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,1/28/04,LAL vs. SEA,SEA
Jump Shot,Jump Shot,251,20300655,33.9403,77,104,-118.1928,7,3,0,2003-04,30,12,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,1/28/04,LAL vs. SEA,SEA
Layup Shot,Layup,255,20300655,34.0443,0,0,-118.2698,7,3,0,2003-04,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/28/04,LAL vs. SEA,SEA
Jump Shot,Jump Shot,272,20300655,34.0633,-227,-19,-118.4968,4,3,0,2003-04,51,22,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,1/28/04,LAL vs. SEA,SEA
Running Jump Shot,Jump Shot,56,20300756,34.0133,51,31,-118.2188,4,1,0,2003-04,0,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/11/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,180,20300756,33.8353,158,209,-118.1118,2,2,0,2003-04,12,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/11/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,279,20300756,33.7893,-39,255,-118.3088,2,3,0,2003-04,45,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/11/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,360,20300756,33.8223,143,222,-118.1268,6,4,0,2003-04,37,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/11/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,390,20300756,33.7893,141,255,-118.1288,3,4,0,2003-04,2,29,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/11/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,397,20300756,34.0443,144,0,-118.1258,2,4,0,2003-04,32,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/11/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,25,20300772,34.0033,51,41,-118.2188,9,1,0,2003-04,4,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,46,20300772,34.0443,0,0,-118.2698,5,1,0,2003-04,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,47,20300772,34.0443,0,0,-118.2698,5,1,0,2003-04,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Driving Layup Shot,Layup,117,20300772,34.0443,0,0,-118.2698,11,2,0,2003-04,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Jump Shot,Jump Shot,134,20300772,33.8653,-85,179,-118.3548,9,2,0,2003-04,24,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,184,20300772,34.0443,0,0,-118.2698,3,2,0,2003-04,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Jump Shot,Jump Shot,197,20300772,34.0263,-64,18,-118.3338,1,2,0,2003-04,49,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,218,20300772,34.0443,0,0,-118.2698,0,2,0,2003-04,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,220,20300772,34.0443,0,0,-118.2698,0,2,0,2003-04,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,230,20300772,34.0443,0,0,-118.2698,11,3,0,2003-04,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Running Dunk Shot,Dunk,249,20300772,34.0443,0,0,-118.2698,8,3,0,2003-04,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Jump Bank Shot,Jump Shot,255,20300772,33.9753,-67,69,-118.3368,7,3,0,2003-04,27,9,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,277,20300772,34.0293,16,15,-118.2538,4,3,0,2003-04,45,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Jump Shot,Jump Shot,296,20300772,33.9243,-135,120,-118.4048,3,3,0,2003-04,2,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/17/04,LAL vs. POR,POR
Driving Layup Shot,Layup,376,20300772,34.0443,0,0,-118.2698,6,4,0,2003-04,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Jump Shot,Jump Shot,385,20300772,34.0363,-126,8,-118.3958,5,4,0,2003-04,35,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/17/04,LAL vs. POR,POR
Slam Dunk Shot,Dunk,397,20300772,34.0443,0,0,-118.2698,4,4,0,2003-04,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Layup Shot,Layup,417,20300772,34.0443,0,0,-118.2698,2,4,0,2003-04,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/17/04,LAL vs. POR,POR
Jump Shot,Jump Shot,421,20300772,33.8293,138,215,-118.1318,1,4,0,2003-04,18,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/17/04,LAL vs. POR,POR
Jump Shot,Jump Shot,17,20300780,34.0273,-41,17,-118.3108,10,1,0,2003-04,5,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Running Jump Shot,Jump Shot,53,20300780,34.0243,64,20,-118.2058,6,1,0,2003-04,34,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Layup Shot,Layup,152,20300780,34.0443,0,0,-118.2698,9,2,0,2003-04,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Jump Shot,Jump Shot,167,20300780,34.0623,233,-18,-118.0368,8,2,0,2003-04,24,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/18/04,LAL @ GSW,GSW
Reverse Layup Shot,Layup,181,20300780,34.0393,-13,5,-118.2828,6,2,0,2003-04,49,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Running Jump Shot,Jump Shot,245,20300780,33.9523,115,92,-118.1548,0,2,0,2003-04,22,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/18/04,LAL @ GSW,GSW
Dunk Shot,Dunk,256,20300780,34.0443,0,0,-118.2698,11,3,0,2003-04,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Jump Bank Shot,Jump Shot,264,20300780,34.0323,-184,12,-118.4538,10,3,0,2003-04,44,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/18/04,LAL @ GSW,GSW
Layup Shot,Layup,270,20300780,34.0443,0,0,-118.2698,9,3,0,2003-04,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Jump Shot,Jump Shot,276,20300780,33.9473,0,97,-118.2698,9,3,0,2003-04,2,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/18/04,LAL @ GSW,GSW
Jump Shot,Jump Shot,280,20300780,33.9883,-52,56,-118.3218,8,3,0,2003-04,21,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Slam Dunk Shot,Dunk,290,20300780,34.0443,0,0,-118.2698,7,3,0,2003-04,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Driving Layup Shot,Layup,314,20300780,34.0443,0,0,-118.2698,5,3,0,2003-04,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/18/04,LAL @ GSW,GSW
Turnaround Jump Shot,Jump Shot,346,20300780,33.9353,-119,109,-118.3888,2,3,0,2003-04,53,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/18/04,LAL @ GSW,GSW
Jump Shot,Jump Shot,376,20300780,33.9683,-31,76,-118.3008,0,3,0,2003-04,1,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/18/04,LAL @ GSW,GSW
Jump Bank Shot,Jump Shot,475,20300780,33.9883,-156,56,-118.4258,1,4,0,2003-04,27,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/18/04,LAL @ GSW,GSW
Jump Shot,Jump Shot,7,20300793,33.9723,-130,72,-118.3998,10,1,0,2003-04,51,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/20/04,LAL vs. PHI,PHI
Driving Layup Shot,Layup,12,20300793,34.0443,0,0,-118.2698,10,1,0,2003-04,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/20/04,LAL vs. PHI,PHI
Jump Bank Shot,Jump Shot,72,20300793,33.9993,-107,45,-118.3768,3,1,0,2003-04,45,11,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/20/04,LAL vs. PHI,PHI
Jump Bank Shot,Jump Shot,90,20300793,33.9933,-118,51,-118.3878,1,1,0,2003-04,34,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/20/04,LAL vs. PHI,PHI
Jump Shot,Jump Shot,142,20300793,33.9063,-122,138,-118.3918,10,2,0,2003-04,20,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,2/20/04,LAL vs. PHI,PHI
Reverse Layup Shot,Layup,170,20300793,34.0443,0,0,-118.2698,8,2,0,2003-04,36,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/20/04,LAL vs. PHI,PHI
Jump Shot,Jump Shot,204,20300793,33.9933,154,51,-118.1158,6,2,0,2003-04,11,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/20/04,LAL vs. PHI,PHI
Layup Shot,Layup,241,20300793,34.0443,0,0,-118.2698,3,2,0,2003-04,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/20/04,LAL vs. PHI,PHI
Jump Bank Shot,Jump Shot,303,20300793,34.0143,-90,30,-118.3598,10,3,0,2003-04,25,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/20/04,LAL vs. PHI,PHI
Layup Shot,Layup,450,20300793,34.0443,0,0,-118.2698,8,4,0,2003-04,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/20/04,LAL vs. PHI,PHI
Jump Shot,Jump Shot,459,20300793,34.0503,-90,-6,-118.3598,8,4,0,2003-04,8,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/20/04,LAL vs. PHI,PHI
Jump Shot,Jump Shot,493,20300793,33.9983,225,46,-118.0448,5,4,0,2003-04,13,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/20/04,LAL vs. PHI,PHI
Jump Shot,Jump Shot,496,20300793,34.0083,79,36,-118.1908,4,4,0,2003-04,48,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/20/04,LAL vs. PHI,PHI
Reverse Layup Shot,Layup,11,20300808,34.0443,0,0,-118.2698,10,1,0,2003-04,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Jump Shot,Jump Shot,36,20300808,34.0083,-238,36,-118.5078,7,1,0,2003-04,15,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,2/22/04,LAL @ PHX,PHX
Layup Shot,Layup,64,20300808,34.0443,0,0,-118.2698,5,1,0,2003-04,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Jump Shot,Jump Shot,101,20300808,33.8373,148,207,-118.1218,0,1,0,2003-04,42,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/22/04,LAL @ PHX,PHX
Jump Bank Shot,Jump Shot,115,20300808,33.9533,-140,91,-118.4098,11,2,0,2003-04,35,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/22/04,LAL @ PHX,PHX
Reverse Layup Shot,Layup,132,20300808,34.0443,0,0,-118.2698,9,2,0,2003-04,9,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Running Jump Shot,Jump Shot,134,20300808,33.9633,-2,81,-118.2718,8,2,0,2003-04,41,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/22/04,LAL @ PHX,PHX
Jump Shot,Jump Shot,175,20300808,34.0133,232,31,-118.0378,4,2,0,2003-04,18,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/22/04,LAL @ PHX,PHX
Layup Shot,Layup,183,20300808,34.0443,0,0,-118.2698,3,2,0,2003-04,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Turnaround Jump Shot,Jump Shot,205,20300808,33.9623,130,82,-118.1398,1,2,0,2003-04,26,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/22/04,LAL @ PHX,PHX
Jump Shot,Jump Shot,220,20300808,33.9213,128,123,-118.1418,11,3,0,2003-04,16,17,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/22/04,LAL @ PHX,PHX
Reverse Layup Shot,Layup,242,20300808,34.0443,0,0,-118.2698,9,3,0,2003-04,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Jump Shot,Jump Shot,248,20300808,33.8153,1,229,-118.2688,7,3,0,2003-04,43,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/22/04,LAL @ PHX,PHX
Layup Shot,Layup,264,20300808,34.0443,0,0,-118.2698,6,3,0,2003-04,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Driving Layup Shot,Layup,309,20300808,34.0443,0,0,-118.2698,0,3,0,2003-04,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Driving Layup Shot,Layup,336,20300808,34.0443,0,0,-118.2698,10,4,0,2003-04,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Layup Shot,Layup,339,20300808,34.0443,0,0,-118.2698,10,4,0,2003-04,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Layup Shot,Layup,347,20300808,34.0443,0,0,-118.2698,9,4,0,2003-04,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Jump Shot,Jump Shot,349,20300808,33.9063,31,138,-118.2388,9,4,0,2003-04,3,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/22/04,LAL @ PHX,PHX
Layup Shot,Layup,357,20300808,34.0443,0,0,-118.2698,7,4,0,2003-04,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Alley Oop Layup shot,Layup,431,20300808,34.0443,0,0,-118.2698,0,4,0,2003-04,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/22/04,LAL @ PHX,PHX
Reverse Layup Shot,Layup,6,20300831,34.0443,0,0,-118.2698,11,1,0,2003-04,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,12,20300831,34.0533,161,-9,-118.1088,10,1,0,2003-04,10,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/25/04,LAL @ DEN,DEN
Jump Bank Shot,Jump Shot,81,20300831,33.9653,-171,79,-118.4408,3,1,0,2003-04,11,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/25/04,LAL @ DEN,DEN
Layup Shot,Layup,84,20300831,34.0443,0,0,-118.2698,3,1,0,2003-04,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Bank Shot,Jump Shot,97,20300831,33.9883,128,56,-118.1418,1,1,0,2003-04,51,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/25/04,LAL @ DEN,DEN
Running Jump Shot,Jump Shot,106,20300831,33.9763,13,68,-118.2568,0,1,0,2003-04,41,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Bank Shot,Jump Shot,107,20300831,34.0113,38,33,-118.2318,0,1,0,2003-04,39,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Running Jump Shot,Jump Shot,152,20300831,33.9953,-16,49,-118.2858,8,2,0,2003-04,40,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Layup Shot,Layup,162,20300831,34.0443,0,0,-118.2698,7,2,0,2003-04,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,164,20300831,33.9783,112,66,-118.1578,7,2,0,2003-04,18,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/25/04,LAL @ DEN,DEN
Driving Layup Shot,Layup,168,20300831,34.0443,0,0,-118.2698,7,2,0,2003-04,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,180,20300831,33.9813,-3,63,-118.2728,6,2,0,2003-04,1,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Layup Shot,Layup,262,20300831,34.0443,0,0,-118.2698,10,3,0,2003-04,27,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,346,20300831,34.0143,57,30,-118.2128,2,3,0,2003-04,27,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,363,20300831,34.0163,72,28,-118.1978,0,3,0,2003-04,49,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,367,20300831,33.8653,-205,179,-118.4748,0,3,0,2003-04,26,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,414,20300831,34.0373,-225,7,-118.4948,7,4,0,2003-04,20,22,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,2/25/04,LAL @ DEN,DEN
Layup Shot,Layup,417,20300831,34.0443,0,0,-118.2698,6,4,0,2003-04,54,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Layup Shot,Layup,421,20300831,34.0443,0,0,-118.2698,6,4,0,2003-04,25,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Reverse Layup Shot,Layup,457,20300831,34.0443,0,0,-118.2698,3,4,0,2003-04,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/25/04,LAL @ DEN,DEN
Running Jump Shot,Jump Shot,462,20300831,33.9403,-39,104,-118.3088,2,4,0,2003-04,34,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/25/04,LAL @ DEN,DEN
Jump Shot,Jump Shot,484,20300831,33.8553,-180,189,-118.4498,1,4,0,2003-04,13,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/25/04,LAL @ DEN,DEN
Driving Layup Shot,Layup,12,20300836,34.0443,0,0,-118.2698,10,1,0,2003-04,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Turnaround Finger Roll Shot,Layup,14,20300836,34.0443,0,0,-118.2698,9,1,0,2003-04,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Bank Shot,Jump Shot,32,20300836,33.9993,-36,45,-118.3058,7,1,0,2003-04,50,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,84,20300836,34.0013,-26,43,-118.2958,1,1,0,2003-04,50,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,89,20300836,33.9573,-95,87,-118.3648,1,1,0,2003-04,36,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,95,20300836,33.8583,-56,186,-118.3258,0,1,0,2003-04,38,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,99,20300836,33.9863,-105,58,-118.3748,0,1,0,2003-04,0,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/26/04,LAL vs. SAC,SAC
Layup Shot,Layup,151,20300836,34.0443,0,0,-118.2698,6,2,0,2003-04,48,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,158,20300836,33.9393,-89,105,-118.3588,5,2,0,2003-04,54,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/26/04,LAL vs. SAC,SAC
Running Jump Shot,Jump Shot,179,20300836,34.0133,-92,31,-118.3618,4,2,0,2003-04,52,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/26/04,LAL vs. SAC,SAC
Layup Shot,Layup,241,20300836,34.0443,0,0,-118.2698,10,3,0,2003-04,15,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Fadeaway Jump Shot,Jump Shot,243,20300836,33.9933,158,51,-118.1118,9,3,0,2003-04,53,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,2/26/04,LAL vs. SAC,SAC
Layup Shot,Layup,259,20300836,34.0443,0,0,-118.2698,7,3,0,2003-04,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,296,20300836,33.8683,167,176,-118.1028,3,3,0,2003-04,51,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/26/04,LAL vs. SAC,SAC
Jump Hook Shot,Jump Shot,316,20300836,34.0033,-34,41,-118.3038,2,3,0,2003-04,32,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,333,20300836,33.8533,-194,191,-118.4638,0,3,0,2003-04,0,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,337,20300836,34.0093,79,35,-118.1908,11,4,0,2003-04,42,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/26/04,LAL vs. SAC,SAC
Layup Shot,Layup,342,20300836,34.0443,0,0,-118.2698,11,4,0,2003-04,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,357,20300836,34.0363,-126,8,-118.3958,9,4,0,2003-04,36,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,2/26/04,LAL vs. SAC,SAC
Layup Shot,Layup,410,20300836,34.0443,0,0,-118.2698,4,4,0,2003-04,46,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,418,20300836,33.9853,228,59,-118.0418,4,4,0,2003-04,11,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,431,20300836,33.9523,47,92,-118.2228,3,4,0,2003-04,5,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,466,20300836,33.9763,223,68,-118.0468,0,4,0,2003-04,37,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,469,20300836,33.8423,164,202,-118.1058,0,4,0,2003-04,2,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/26/04,LAL vs. SAC,SAC
Driving Layup Shot,Layup,4,20300848,34.0453,3,-1,-118.2668,11,1,0,2003-04,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/04,LAL @ WAS,WAS
Driving Layup Shot,Layup,9,20300848,34.0323,0,12,-118.2698,10,1,0,2003-04,33,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/04,LAL @ WAS,WAS
Fadeaway Jump Shot,Jump Shot,70,20300848,34.0833,-166,-39,-118.4358,3,1,0,2003-04,54,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,84,20300848,33.9473,-138,97,-118.4078,2,1,0,2003-04,13,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,98,20300848,33.9303,54,114,-118.2158,1,1,0,2003-04,26,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,244,20300848,33.8783,144,166,-118.1258,0,2,0,2003-04,0,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,2/28/04,LAL @ WAS,WAS
Layup Shot,Layup,253,20300848,34.0393,-8,5,-118.2778,11,3,0,2003-04,17,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,255,20300848,34.0723,-237,-28,-118.5068,11,3,0,2003-04,12,23,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,260,20300848,33.8633,-174,181,-118.4438,10,3,0,2003-04,4,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,274,20300848,33.8983,-222,146,-118.4918,8,3,0,2003-04,9,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,350,20300848,33.7993,56,245,-118.2138,0,3,0,2003-04,0,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,372,20300848,34.0323,61,12,-118.2088,10,4,0,2003-04,8,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/28/04,LAL @ WAS,WAS
Fadeaway Jump Shot,Jump Shot,384,20300848,34.0813,138,-37,-118.1318,9,4,0,2003-04,12,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,396,20300848,34.0133,15,31,-118.2548,7,4,0,2003-04,45,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,407,20300848,34.0373,33,7,-118.2368,6,4,0,2003-04,46,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/28/04,LAL @ WAS,WAS
Jump Shot,Jump Shot,18,20300858,33.9833,-51,61,-118.3208,9,1,0,2003-04,42,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/29/04,LAL @ NJN,NJN
Turnaround Jump Shot,Jump Shot,56,20300858,34.0523,-176,-8,-118.4458,5,1,0,2003-04,11,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,104,20300858,34.0423,233,2,-118.0368,0,1,0,2003-04,40,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,2/29/04,LAL @ NJN,NJN
Layup Shot,Layup,115,20300858,34.0443,0,0,-118.2698,11,2,0,2003-04,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,209,20300858,34.0293,79,15,-118.1908,3,2,0,2003-04,20,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,223,20300858,33.8733,-176,171,-118.4458,1,2,0,2003-04,58,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,240,20300858,33.7913,121,253,-118.1488,0,2,0,2003-04,7,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,262,20300858,33.9783,23,66,-118.2468,9,3,0,2003-04,25,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,265,20300858,34.0553,-235,-11,-118.5048,9,3,0,2003-04,10,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,2/29/04,LAL @ NJN,NJN
Reverse Dunk Shot,Dunk,312,20300858,34.0443,0,0,-118.2698,3,3,0,2003-04,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,340,20300858,33.8433,135,201,-118.1348,0,3,0,2003-04,33,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,342,20300858,33.7923,-159,252,-118.4288,0,3,0,2003-04,2,29,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,2/29/04,LAL @ NJN,NJN
Jump Shot,Jump Shot,24,20300881,33.8323,-136,212,-118.4058,8,1,0,2003-04,29,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/3/04,LAL @ HOU,HOU
Reverse Layup Shot,Layup,33,20300881,34.0443,0,0,-118.2698,7,1,0,2003-04,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/3/04,LAL @ HOU,HOU
Driving Layup Shot,Layup,62,20300881,34.0443,0,0,-118.2698,3,1,0,2003-04,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/3/04,LAL @ HOU,HOU
Hook Shot,Hook Shot,65,20300881,33.9993,46,45,-118.2238,2,1,0,2003-04,47,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/3/04,LAL @ HOU,HOU
Jump Bank Shot,Jump Shot,92,20300881,33.9783,-103,66,-118.3728,0,1,0,2003-04,35,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/3/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,168,20300881,34.0183,-182,26,-118.4518,3,2,0,2003-04,47,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/3/04,LAL @ HOU,HOU
Jump Bank Shot,Jump Shot,174,20300881,33.9653,-115,79,-118.3848,3,2,0,2003-04,30,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/3/04,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,179,20300881,33.9783,74,66,-118.1958,3,2,0,2003-04,7,9,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/3/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,211,20300881,33.6683,8,376,-118.2618,0,2,0,2003-04,0,37,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/3/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,224,20300881,33.8403,161,204,-118.1088,10,3,0,2003-04,21,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/3/04,LAL @ HOU,HOU
Turnaround Jump Shot,Jump Shot,227,20300881,34.0293,94,15,-118.1758,9,3,0,2003-04,56,9,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/3/04,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,242,20300881,33.9983,28,46,-118.2418,8,3,0,2003-04,38,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/3/04,LAL @ HOU,HOU
Driving Layup Shot,Layup,332,20300881,34.0443,0,0,-118.2698,11,4,0,2003-04,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/3/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,337,20300881,33.9603,-54,84,-118.3238,11,4,0,2003-04,19,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/3/04,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,383,20300881,34.0043,-39,40,-118.3088,5,4,0,2003-04,23,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/3/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,414,20300881,33.9913,238,53,-118.0318,2,4,0,2003-04,25,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/3/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,440,20300881,33.8703,133,174,-118.1368,0,4,0,2003-04,31,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/3/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,81,20300926,33.8933,-112,151,-118.3818,4,1,0,2003-04,13,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/10/04,LAL @ BOS,BOS
Fadeaway Jump Shot,Jump Shot,178,20300926,34.0013,64,43,-118.2058,8,2,0,2003-04,59,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/10/04,LAL @ BOS,BOS
Layup Shot,Layup,271,20300926,34.0453,23,-1,-118.2468,0,2,0,2003-04,17,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/10/04,LAL @ BOS,BOS
Layup Shot,Layup,273,20300926,34.0293,-20,15,-118.2898,0,2,0,2003-04,14,2,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/10/04,LAL @ BOS,BOS
Jump Shot,Jump Shot,307,20300926,33.8323,-141,212,-118.4108,9,3,0,2003-04,0,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/10/04,LAL @ BOS,BOS
Jump Shot,Jump Shot,316,20300926,34.0443,-112,0,-118.3818,8,3,0,2003-04,17,11,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/10/04,LAL @ BOS,BOS
Jump Shot,Jump Shot,329,20300926,33.8153,167,229,-118.1028,7,3,0,2003-04,3,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/10/04,LAL @ BOS,BOS
Jump Shot,Jump Shot,368,20300926,33.9963,-59,48,-118.3288,3,3,0,2003-04,41,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/10/04,LAL @ BOS,BOS
Jump Shot,Jump Shot,456,20300926,33.9323,-146,112,-118.4158,8,4,0,2003-04,17,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/10/04,LAL @ BOS,BOS
Jump Shot,Jump Shot,470,20300926,33.9683,5,76,-118.2648,7,4,0,2003-04,19,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/10/04,LAL @ BOS,BOS
Tip Shot,Tip Shot,472,20300926,34.0363,10,8,-118.2598,7,4,0,2003-04,15,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/10/04,LAL @ BOS,BOS
Jump Shot,Jump Shot,7,20300943,34.0523,172,-8,-118.0978,10,1,0,2003-04,50,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,32,20300943,34.0263,-214,18,-118.4838,8,1,0,2003-04,45,21,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Layup Shot,Layup,57,20300943,34.0443,0,0,-118.2698,5,1,0,2003-04,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/04,LAL @ MIN,MIN
Running Jump Shot,Jump Shot,82,20300943,33.9783,-8,66,-118.2778,3,1,0,2003-04,14,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/12/04,LAL @ MIN,MIN
Tip Shot,Tip Shot,149,20300943,34.0443,0,0,-118.2698,8,2,0,2003-04,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,176,20300943,34.0573,177,-13,-118.0928,6,2,0,2003-04,17,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,179,20300943,34.0083,-64,36,-118.3338,5,2,0,2003-04,43,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/12/04,LAL @ MIN,MIN
Layup Shot,Layup,181,20300943,34.0443,0,0,-118.2698,5,2,0,2003-04,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,184,20300943,33.8503,71,194,-118.1988,5,2,0,2003-04,13,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,245,20300943,33.9933,-182,51,-118.4518,11,3,0,2003-04,22,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Reverse Layup Shot,Layup,248,20300943,34.0443,0,0,-118.2698,10,3,0,2003-04,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,256,20300943,33.8883,-117,156,-118.3868,10,3,0,2003-04,13,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,259,20300943,33.8453,102,199,-118.1678,9,3,0,2003-04,45,22,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,276,20300943,34.0143,187,30,-118.0828,8,3,0,2003-04,15,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/12/04,LAL @ MIN,MIN
Layup Shot,Layup,313,20300943,34.0443,0,0,-118.2698,4,3,0,2003-04,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,394,20300943,33.7943,-13,250,-118.2828,8,4,0,2003-04,20,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,459,20300943,33.8153,-94,229,-118.3638,2,4,0,2003-04,44,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,462,20300943,33.8253,154,219,-118.1158,2,4,0,2003-04,8,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/12/04,LAL @ MIN,MIN
Jump Shot,Jump Shot,6,20300952,33.9353,141,109,-118.1288,11,1,0,2003-04,2,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/13/04,LAL @ CHI,CHI
Jump Bank Shot,Jump Shot,21,20300952,34.0143,84,30,-118.1858,8,1,0,2003-04,52,8,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,80,20300952,34.0633,225,-19,-118.0448,3,1,0,2003-04,46,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,204,20300952,33.8293,102,215,-118.1678,5,2,0,2003-04,21,23,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,208,20300952,34.0193,130,25,-118.1398,5,2,0,2003-04,8,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,214,20300952,33.9753,-56,69,-118.3258,4,2,0,2003-04,44,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/13/04,LAL @ CHI,CHI
Dunk Shot,Dunk,224,20300952,34.0443,0,0,-118.2698,4,2,0,2003-04,3,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,270,20300952,33.9953,59,49,-118.2108,10,3,0,2003-04,37,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Layup Shot,Layup,277,20300952,34.0443,0,0,-118.2698,9,3,0,2003-04,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,315,20300952,33.8113,-92,233,-118.3618,5,3,0,2003-04,41,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/13/04,LAL @ CHI,CHI
Layup Shot,Layup,318,20300952,34.0443,0,0,-118.2698,4,3,0,2003-04,57,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,323,20300952,33.9883,36,56,-118.2338,4,3,0,2003-04,27,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,350,20300952,34.0063,-164,38,-118.4338,2,3,0,2003-04,20,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,391,20300952,33.6533,177,391,-118.0928,0,3,0,2003-04,0,42,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,446,20300952,34.0013,-128,43,-118.3978,6,4,0,2003-04,1,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/13/04,LAL @ CHI,CHI
Running Layup Shot,Layup,463,20300952,34.0443,0,0,-118.2698,5,4,0,2003-04,5,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,468,20300952,33.9393,-71,105,-118.3408,3,4,0,2003-04,40,12,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/13/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,474,20300952,33.9323,-164,112,-118.4338,2,4,0,2003-04,59,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/13/04,LAL @ CHI,CHI
Layup Shot,Layup,479,20300952,34.0443,0,0,-118.2698,1,4,0,2003-04,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Layup Shot,Layup,486,20300952,34.0443,0,0,-118.2698,1,4,0,2003-04,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/13/04,LAL @ CHI,CHI
Jump Bank Shot,Jump Shot,21,20300966,33.9633,-112,81,-118.3818,10,1,0,2003-04,11,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/15/04,LAL vs. ORL,ORL
Turnaround Jump Shot,Jump Shot,91,20300966,33.9903,-44,54,-118.3138,3,1,0,2003-04,16,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Layup Shot,Layup,205,20300966,34.0443,0,0,-118.2698,4,2,0,2003-04,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,267,20300966,33.9863,-228,58,-118.4978,0,2,0,2003-04,4,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,3/15/04,LAL vs. ORL,ORL
Jump Bank Shot,Jump Shot,278,20300966,34.0453,-87,-1,-118.3568,11,3,0,2003-04,21,8,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,315,20300966,33.8293,135,215,-118.1348,7,3,0,2003-04,42,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/15/04,LAL vs. ORL,ORL
Layup Shot,Layup,317,20300966,34.0443,0,0,-118.2698,7,3,0,2003-04,32,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Layup Shot,Layup,318,20300966,34.0443,0,0,-118.2698,7,3,0,2003-04,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Fadeaway Jump Shot,Jump Shot,345,20300966,34.0673,-103,-23,-118.3728,5,3,0,2003-04,12,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/15/04,LAL vs. ORL,ORL
Jump Bank Shot,Jump Shot,400,20300966,33.9583,33,86,-118.2368,0,3,0,2003-04,48,9,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/15/04,LAL vs. ORL,ORL
Driving Dunk Shot,Dunk,439,20300966,34.0443,0,0,-118.2698,9,4,0,2003-04,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,447,20300966,33.8423,-16,202,-118.2858,9,4,0,2003-04,25,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,465,20300966,34.0473,-191,-3,-118.4608,7,4,0,2003-04,24,19,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,490,20300966,33.8253,154,219,-118.1158,5,4,0,2003-04,33,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,507,20300966,33.8753,-195,169,-118.4648,3,4,0,2003-04,47,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,514,20300966,34.0393,205,5,-118.0648,2,4,0,2003-04,57,20,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,516,20300966,33.9993,163,45,-118.1068,2,4,0,2003-04,23,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,521,20300966,34.0503,172,-6,-118.0978,1,4,0,2003-04,45,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/15/04,LAL vs. ORL,ORL
Driving Layup Shot,Layup,529,20300966,34.0443,0,0,-118.2698,0,4,0,2003-04,41,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,540,20300966,34.0183,-228,26,-118.4978,0,4,0,2003-04,2,22,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,3/15/04,LAL vs. ORL,ORL
Driving Layup Shot,Layup,550,20300966,34.0443,0,0,-118.2698,4,5,0,2003-04,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,579,20300966,33.9993,-51,45,-118.3208,0,5,0,2003-04,46,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/15/04,LAL vs. ORL,ORL
Driving Dunk Shot,Dunk,7,20300981,34.0443,0,0,-118.2698,11,1,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/04,LAL @ LAC,LAC
Jump Bank Shot,Jump Shot,19,20300981,33.9983,51,46,-118.2188,9,1,0,2003-04,12,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/17/04,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,97,20300981,33.9013,-133,143,-118.4028,0,1,0,2003-04,52,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/17/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,114,20300981,34.0363,156,8,-118.1138,11,2,0,2003-04,27,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/17/04,LAL @ LAC,LAC
Driving Dunk Shot,Dunk,123,20300981,34.0443,0,0,-118.2698,10,2,0,2003-04,26,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/04,LAL @ LAC,LAC
Layup Shot,Layup,201,20300981,34.0443,0,0,-118.2698,3,2,0,2003-04,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/04,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,251,20300981,33.7913,-67,253,-118.3368,10,3,0,2003-04,26,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/17/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,269,20300981,34.0293,117,15,-118.1528,8,3,0,2003-04,8,11,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/17/04,LAL @ LAC,LAC
Reverse Layup Shot,Layup,282,20300981,34.0443,0,0,-118.2698,6,3,0,2003-04,7,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,285,20300981,33.9953,236,49,-118.0338,5,3,0,2003-04,43,24,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/17/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,308,20300981,33.9193,10,125,-118.2598,3,3,0,2003-04,49,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/17/04,LAL @ LAC,LAC
Running Jump Shot,Jump Shot,343,20300981,34.0343,-123,10,-118.3928,11,4,0,2003-04,46,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/17/04,LAL @ LAC,LAC
Driving Layup Shot,Layup,362,20300981,34.0443,0,0,-118.2698,10,4,0,2003-04,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/04,LAL @ LAC,LAC
Driving Dunk Shot,Dunk,373,20300981,34.0443,0,0,-118.2698,9,4,0,2003-04,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/17/04,LAL @ LAC,LAC
Jump Bank Shot,Jump Shot,426,20300981,33.9633,-166,81,-118.4358,4,4,0,2003-04,6,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/17/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,461,20300981,33.7533,33,291,-118.2368,1,4,0,2003-04,10,29,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/17/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,5,20300995,34.0603,236,-16,-118.0338,11,1,0,2003-04,5,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/19/04,LAL vs. LAC,LAC
Running Jump Shot,Jump Shot,54,20300995,33.9243,105,120,-118.1648,6,1,0,2003-04,15,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,64,20300995,33.8733,-125,171,-118.3948,5,1,0,2003-04,4,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/19/04,LAL vs. LAC,LAC
Tip Shot,Tip Shot,114,20300995,34.0443,0,0,-118.2698,1,1,0,2003-04,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Turnaround Jump Shot,Jump Shot,224,20300995,33.9373,56,107,-118.2138,3,2,0,2003-04,41,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/19/04,LAL vs. LAC,LAC
Driving Layup Shot,Layup,238,20300995,34.0443,0,0,-118.2698,2,2,0,2003-04,12,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Running Jump Shot,Jump Shot,256,20300995,34.0473,146,-3,-118.1238,0,2,0,2003-04,54,14,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/19/04,LAL vs. LAC,LAC
Driving Layup Shot,Layup,286,20300995,34.0443,0,0,-118.2698,10,3,0,2003-04,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,296,20300995,33.9603,-5,84,-118.2748,8,3,0,2003-04,55,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/19/04,LAL vs. LAC,LAC
Driving Layup Shot,Layup,306,20300995,34.0443,0,0,-118.2698,7,3,0,2003-04,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,313,20300995,33.8523,-3,192,-118.2728,6,3,0,2003-04,44,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/19/04,LAL vs. LAC,LAC
Layup Shot,Layup,323,20300995,34.0443,0,0,-118.2698,4,3,0,2003-04,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Layup Shot,Layup,368,20300995,34.0443,0,0,-118.2698,1,3,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,384,20300995,33.9403,-18,104,-118.2878,0,3,0,2003-04,5,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,436,20300995,33.8553,82,189,-118.1878,7,4,0,2003-04,50,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,461,20300995,33.9113,-126,133,-118.3958,5,4,0,2003-04,32,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/19/04,LAL vs. LAC,LAC
Dunk Shot,Dunk,486,20300995,34.0443,0,0,-118.2698,3,4,0,2003-04,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,497,20300995,33.8153,-145,229,-118.4148,1,4,0,2003-04,38,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/19/04,LAL vs. LAC,LAC
Driving Layup Shot,Layup,502,20300995,34.0443,0,0,-118.2698,1,4,0,2003-04,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/19/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,10,20301012,33.8653,112,179,-118.1578,10,1,0,2003-04,43,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/21/04,LAL vs. MIL,MIL
Layup Shot,Layup,29,20301012,34.0443,0,0,-118.2698,8,1,0,2003-04,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,99,20301012,34.0263,-169,18,-118.4388,2,1,0,2003-04,8,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,108,20301012,34.0413,75,3,-118.1948,0,1,0,2003-04,58,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/21/04,LAL vs. MIL,MIL
Driving Layup Shot,Layup,194,20301012,34.0443,0,0,-118.2698,3,2,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/04,LAL vs. MIL,MIL
Reverse Layup Shot,Layup,267,20301012,34.0443,0,0,-118.2698,7,3,0,2003-04,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/04,LAL vs. MIL,MIL
Layup Shot,Layup,277,20301012,34.0443,0,0,-118.2698,6,3,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/04,LAL vs. MIL,MIL
Layup Shot,Layup,280,20301012,34.0443,0,0,-118.2698,5,3,0,2003-04,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,391,20301012,33.8583,-11,186,-118.2808,5,4,0,2003-04,41,18,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,406,20301012,33.7813,-34,263,-118.3038,3,4,0,2003-04,44,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,3/21/04,LAL vs. MIL,MIL
Layup Shot,Layup,416,20301012,34.0443,0,0,-118.2698,2,4,0,2003-04,30,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,440,20301012,33.8523,72,192,-118.1978,0,4,0,2003-04,3,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,462,20301012,33.8433,-90,201,-118.3598,3,5,0,2003-04,48,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,497,20301012,33.8883,-8,156,-118.2778,0,5,0,2003-04,25,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/21/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,2,20301033,33.8553,-107,189,-118.3768,11,1,0,2003-04,41,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,4,20301033,33.8783,90,166,-118.1798,11,1,0,2003-04,10,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/24/04,LAL vs. SAC,SAC
Driving Finger Roll Shot,Layup,21,20301033,34.0443,0,0,-118.2698,8,1,0,2003-04,19,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Driving Layup Shot,Layup,27,20301033,34.0443,0,0,-118.2698,7,1,0,2003-04,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,58,20301033,33.8153,94,229,-118.1758,5,1,0,2003-04,40,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/24/04,LAL vs. SAC,SAC
Layup Shot,Layup,90,20301033,34.0443,0,0,-118.2698,2,1,0,2003-04,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,113,20301033,33.8713,118,173,-118.1518,0,1,0,2003-04,38,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/24/04,LAL vs. SAC,SAC
Fadeaway Jump Shot,Jump Shot,168,20301033,33.9803,23,64,-118.2468,6,2,0,2003-04,29,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Slam Dunk Shot,Dunk,199,20301033,34.0443,0,0,-118.2698,3,2,0,2003-04,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,253,20301033,33.9323,-54,112,-118.3238,10,3,0,2003-04,25,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/24/04,LAL vs. SAC,SAC
Jump Bank Shot,Jump Shot,265,20301033,34.0193,-102,25,-118.3718,9,3,0,2003-04,1,10,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/24/04,LAL vs. SAC,SAC
Running Jump Shot,Jump Shot,284,20301033,34.0113,-67,33,-118.3368,7,3,0,2003-04,45,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Layup Shot,Layup,292,20301033,34.0443,0,0,-118.2698,6,3,0,2003-04,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,318,20301033,34.0623,176,-18,-118.0938,4,3,0,2003-04,31,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/24/04,LAL vs. SAC,SAC
Layup Shot,Layup,369,20301033,34.0443,0,0,-118.2698,0,3,0,2003-04,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,372,20301033,33.8323,-169,212,-118.4388,0,3,0,2003-04,18,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,448,20301033,34.0183,233,26,-118.0368,4,4,0,2003-04,35,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/24/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,457,20301033,33.9753,182,69,-118.0878,3,4,0,2003-04,31,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/24/04,LAL vs. SAC,SAC
Slam Dunk Shot,Dunk,7,20301046,34.0443,0,0,-118.2698,11,1,0,2003-04,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/04,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,9,20301046,33.9163,120,128,-118.1498,10,1,0,2003-04,24,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/26/04,LAL vs. MIN,MIN
Dunk Shot,Dunk,14,20301046,34.0443,0,0,-118.2698,9,1,0,2003-04,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,30,20301046,34.0083,-136,36,-118.4058,8,1,0,2003-04,22,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,67,20301046,33.8883,115,156,-118.1548,4,1,0,2003-04,52,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,119,20301046,33.8073,-125,237,-118.3948,0,1,0,2003-04,5,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,163,20301046,33.8373,16,207,-118.2538,8,2,0,2003-04,13,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/26/04,LAL vs. MIN,MIN
Reverse Layup Shot,Layup,236,20301046,34.0443,0,0,-118.2698,2,2,0,2003-04,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/04,LAL vs. MIN,MIN
Driving Layup Shot,Layup,244,20301046,34.0343,10,10,-118.2598,1,2,0,2003-04,8,1,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,248,20301046,33.8123,118,232,-118.1518,0,2,0,2003-04,35,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,269,20301046,33.9063,-131,138,-118.4008,11,3,0,2003-04,22,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/26/04,LAL vs. MIN,MIN
Layup Shot,Layup,293,20301046,34.0443,0,0,-118.2698,10,3,0,2003-04,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/04,LAL vs. MIN,MIN
Layup Shot,Layup,296,20301046,34.0443,0,0,-118.2698,9,3,0,2003-04,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/04,LAL vs. MIN,MIN
Layup Shot,Layup,311,20301046,34.0443,0,0,-118.2698,7,3,0,2003-04,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,317,20301046,33.8683,177,176,-118.0928,6,3,0,2003-04,29,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,360,20301046,33.9013,44,143,-118.2258,2,3,0,2003-04,11,14,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,363,20301046,33.8453,163,199,-118.1068,1,3,0,2003-04,50,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,449,20301046,34.0673,-159,-23,-118.4288,6,4,0,2003-04,45,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,3/26/04,LAL vs. MIN,MIN
Jump Shot,Jump Shot,471,20301046,33.8713,43,173,-118.2268,4,4,0,2003-04,43,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,3/26/04,LAL vs. MIN,MIN
Running Jump Shot,Jump Shot,7,20301063,33.9753,-2,69,-118.2718,11,1,0,2003-04,4,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/28/04,LAL vs. UTA,UTA
Running Jump Shot,Jump Shot,15,20301063,33.9583,-56,86,-118.3258,10,1,0,2003-04,22,10,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,29,20301063,33.8663,-140,178,-118.4098,8,1,0,2003-04,11,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/28/04,LAL vs. UTA,UTA
Driving Finger Roll Shot,Layup,48,20301063,34.0443,0,0,-118.2698,5,1,0,2003-04,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,56,20301063,34.0553,151,-11,-118.1188,3,1,0,2003-04,56,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,68,20301063,33.8913,-149,153,-118.4188,2,1,0,2003-04,58,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,172,20301063,33.8203,113,224,-118.1568,5,2,0,2003-04,36,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,223,20301063,33.9783,-115,66,-118.3848,0,2,0,2003-04,16,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,236,20301063,34.0013,-66,43,-118.3358,11,3,0,2003-04,45,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,274,20301063,33.9863,46,58,-118.2238,8,3,0,2003-04,7,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,277,20301063,33.9723,-69,72,-118.3388,7,3,0,2003-04,31,9,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,285,20301063,34.0133,74,31,-118.1958,7,3,0,2003-04,18,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,3/28/04,LAL vs. UTA,UTA
Fadeaway Jump Shot,Jump Shot,287,20301063,34.0093,57,35,-118.2128,7,3,0,2003-04,14,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,333,20301063,33.8093,140,235,-118.1298,2,3,0,2003-04,8,27,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,345,20301063,33.9723,39,72,-118.2308,0,3,0,2003-04,40,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,365,20301063,33.8303,-161,214,-118.4308,11,4,0,2003-04,36,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/28/04,LAL vs. UTA,UTA
Jump Shot,Jump Shot,378,20301063,33.9193,-26,125,-118.2958,9,4,0,2003-04,49,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/28/04,LAL vs. UTA,UTA
Driving Layup Shot,Layup,380,20301063,34.0443,0,0,-118.2698,8,4,0,2003-04,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/28/04,LAL vs. UTA,UTA
Driving Layup Shot,Layup,435,20301063,34.0443,0,0,-118.2698,4,4,0,2003-04,15,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/28/04,LAL vs. UTA,UTA
Layup Shot,Layup,8,20301075,34.0443,0,0,-118.2698,10,1,0,2003-04,44,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Layup Shot,Layup,21,20301075,34.0443,0,0,-118.2698,9,1,0,2003-04,25,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Hook Shot,Hook Shot,47,20301075,34.0113,36,33,-118.2338,6,1,0,2003-04,31,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Driving Layup Shot,Layup,75,20301075,34.0443,0,0,-118.2698,3,1,0,2003-04,28,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Layup Shot,Layup,102,20301075,34.0443,0,0,-118.2698,0,1,0,2003-04,40,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,106,20301075,33.5443,44,500,-118.2258,0,1,0,2003-04,0,50,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,164,20301075,34.0703,238,-26,-118.0318,4,2,0,2003-04,49,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,182,20301075,33.8343,154,210,-118.1158,3,2,0,2003-04,10,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,208,20301075,33.7963,95,248,-118.1748,0,2,0,2003-04,30,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,3/30/04,LAL vs. NOH,NOH
Running Jump Shot,Jump Shot,211,20301075,33.9983,-43,46,-118.3128,0,2,0,2003-04,0,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Layup Shot,Layup,218,20301075,34.0443,0,0,-118.2698,11,3,0,2003-04,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,266,20301075,33.8753,-187,169,-118.4568,7,3,0,2003-04,17,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,317,20301075,34.0523,186,-8,-118.0838,2,3,0,2003-04,5,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,341,20301075,33.8323,-169,212,-118.4388,0,3,0,2003-04,28,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,3/30/04,LAL vs. NOH,NOH
Layup Shot,Layup,359,20301075,34.0443,0,0,-118.2698,10,4,0,2003-04,44,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,3/30/04,LAL vs. NOH,NOH
Jump Shot,Jump Shot,372,20301075,33.9603,33,84,-118.2368,9,4,0,2003-04,30,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,3/30/04,LAL vs. NOH,NOH
Turnaround Jump Shot,Jump Shot,8,20301088,33.9263,-8,118,-118.2778,10,1,0,2003-04,41,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/1/04,LAL vs. HOU,HOU
Running Layup Shot,Layup,22,20301088,33.9813,0,63,-118.2698,9,1,0,2003-04,1,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,70,20301088,34.0063,72,38,-118.1978,3,1,0,2003-04,17,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,72,20301088,33.9983,-5,46,-118.2748,3,1,0,2003-04,14,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,117,20301088,33.9273,131,117,-118.1388,10,2,0,2003-04,51,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/1/04,LAL vs. HOU,HOU
Driving Layup Shot,Layup,119,20301088,34.0443,0,0,-118.2698,10,2,0,2003-04,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Driving Layup Shot,Layup,143,20301088,34.0443,0,0,-118.2698,8,2,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Driving Layup Shot,Layup,156,20301088,34.0443,0,0,-118.2698,5,2,0,2003-04,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Turnaround Jump Shot,Jump Shot,187,20301088,34.0193,-149,25,-118.4188,3,2,0,2003-04,8,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,230,20301088,33.9193,49,125,-118.2208,0,2,0,2003-04,14,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,282,20301088,34.0293,-66,15,-118.3358,6,3,0,2003-04,32,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,309,20301088,33.9033,195,141,-118.0748,4,3,0,2003-04,27,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,319,20301088,33.9523,222,92,-118.0478,3,3,0,2003-04,25,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/1/04,LAL vs. HOU,HOU
Slam Dunk Shot,Dunk,332,20301088,34.0443,0,0,-118.2698,2,3,0,2003-04,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Layup Shot,Layup,334,20301088,34.0443,0,0,-118.2698,1,3,0,2003-04,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Layup Shot,Layup,438,20301088,34.0443,0,0,-118.2698,4,4,0,2003-04,51,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,439,20301088,33.9603,-23,84,-118.2928,4,4,0,2003-04,49,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,443,20301088,34.0013,-43,43,-118.3128,4,4,0,2003-04,25,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/1/04,LAL vs. HOU,HOU
Jump Shot,Jump Shot,49,20301100,34.0573,174,-13,-118.0958,6,1,0,2003-04,44,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/2/04,LAL @ SEA,SEA
Reverse Layup Shot,Layup,62,20301100,34.0423,-29,2,-118.2988,5,1,0,2003-04,1,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,78,20301100,34.0473,44,-3,-118.2258,3,1,0,2003-04,10,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,172,20301100,33.9653,0,79,-118.2698,5,2,0,2003-04,17,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,174,20301100,34.0243,29,20,-118.2408,4,2,0,2003-04,45,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/04,LAL @ SEA,SEA
Reverse Dunk Shot,Dunk,183,20301100,34.0443,0,0,-118.2698,3,2,0,2003-04,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,242,20301100,33.8883,209,156,-118.0608,9,3,0,2003-04,12,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,274,20301100,34.0493,-245,-5,-118.5148,3,3,0,2003-04,52,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,281,20301100,33.9143,-172,130,-118.4418,2,3,0,2003-04,55,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,313,20301100,33.8993,-102,145,-118.3718,10,4,0,2003-04,45,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/2/04,LAL @ SEA,SEA
Driving Finger Roll Shot,Layup,352,20301100,34.0133,-11,31,-118.2808,6,4,0,2003-04,34,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,378,20301100,33.8323,140,212,-118.1298,3,4,0,2003-04,20,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/2/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,401,20301100,33.8663,190,178,-118.0798,1,4,0,2003-04,11,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/2/04,LAL @ SEA,SEA
Driving Layup Shot,Layup,12,20301110,34.0443,0,0,-118.2698,9,1,0,2003-04,47,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,32,20301110,33.9373,52,107,-118.2178,7,1,0,2003-04,58,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,56,20301110,33.9393,-122,105,-118.3918,4,1,0,2003-04,47,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/4/04,LAL vs. SAS,SAS
Reverse Dunk Shot,Dunk,74,20301110,34.0443,0,0,-118.2698,2,1,0,2003-04,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Layup Shot,Layup,93,20301110,34.0443,0,0,-118.2698,0,1,0,2003-04,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,107,20301110,33.9013,-131,143,-118.4008,11,2,0,2003-04,35,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,179,20301110,33.7843,3,260,-118.2668,5,2,0,2003-04,12,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,182,20301110,33.7973,64,247,-118.2058,4,2,0,2003-04,45,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,204,20301110,34.0343,41,10,-118.2288,3,2,0,2003-04,6,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,223,20301110,33.8023,102,242,-118.1678,1,2,0,2003-04,7,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,228,20301110,33.8273,-158,217,-118.4278,0,2,0,2003-04,10,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,241,20301110,33.8203,-179,224,-118.4488,0,2,0,2003-04,0,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/4/04,LAL vs. SAS,SAS
Driving Layup Shot,Layup,258,20301110,34.0443,0,0,-118.2698,10,3,0,2003-04,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Driving Layup Shot,Layup,268,20301110,34.0443,0,0,-118.2698,9,3,0,2003-04,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,275,20301110,34.0473,-126,-3,-118.3958,9,3,0,2003-04,16,12,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/4/04,LAL vs. SAS,SAS
Driving Layup Shot,Layup,288,20301110,34.0443,0,0,-118.2698,7,3,0,2003-04,9,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,308,20301110,33.9393,161,105,-118.1088,4,3,0,2003-04,32,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,313,20301110,33.8173,-172,227,-118.4418,3,3,0,2003-04,55,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,390,20301110,34.0163,167,28,-118.1028,9,4,0,2003-04,14,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,392,20301110,34.0223,-61,22,-118.3308,9,4,0,2003-04,1,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Driving Layup Shot,Layup,414,20301110,34.0443,0,0,-118.2698,6,4,0,2003-04,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,461,20301110,33.8503,-186,194,-118.4558,1,4,0,2003-04,53,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/4/04,LAL vs. SAS,SAS
Jump Shot,Jump Shot,36,20301121,34.0623,130,-18,-118.1398,8,1,0,2003-04,38,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,65,20301121,33.8523,-172,192,-118.4418,5,1,0,2003-04,31,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,68,20301121,34.0223,-148,22,-118.4178,4,1,0,2003-04,57,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/6/04,LAL vs. POR,POR
Turnaround Jump Shot,Jump Shot,71,20301121,34.0093,-29,35,-118.2988,4,1,0,2003-04,30,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,110,20301121,33.8753,94,169,-118.1758,11,2,0,2003-04,22,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/6/04,LAL vs. POR,POR
Layup Shot,Layup,146,20301121,34.0443,0,0,-118.2698,7,2,0,2003-04,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/04,LAL vs. POR,POR
Layup Shot,Layup,149,20301121,34.0443,0,0,-118.2698,7,2,0,2003-04,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,185,20301121,33.9723,49,72,-118.2208,3,2,0,2003-04,2,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,4/6/04,LAL vs. POR,POR
Slam Dunk Shot,Dunk,191,20301121,34.0443,0,0,-118.2698,2,2,0,2003-04,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/04,LAL vs. POR,POR
Layup Shot,Layup,200,20301121,34.0443,0,0,-118.2698,2,2,0,2003-04,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,257,20301121,33.8073,-115,237,-118.3848,9,3,0,2003-04,11,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/6/04,LAL vs. POR,POR
Dunk Shot,Dunk,259,20301121,34.0443,0,0,-118.2698,9,3,0,2003-04,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,261,20301121,34.0673,-243,-23,-118.5128,8,3,0,2003-04,56,24,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,337,20301121,33.9623,-202,82,-118.4718,0,3,0,2003-04,22,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,374,20301121,34.0523,222,-8,-118.0478,8,4,0,2003-04,30,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,389,20301121,33.9913,-241,53,-118.5108,6,4,0,2003-04,50,24,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,4/6/04,LAL vs. POR,POR
Jump Shot,Jump Shot,399,20301121,33.9093,-215,135,-118.4848,5,4,0,2003-04,28,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/6/04,LAL vs. POR,POR
Reverse Layup Shot,Layup,25,20301145,34.0443,0,0,-118.2698,9,1,0,2003-04,22,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Running Jump Shot,Jump Shot,30,20301145,33.9753,29,69,-118.2408,8,1,0,2003-04,30,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Layup Shot,Layup,38,20301145,34.0443,0,0,-118.2698,7,1,0,2003-04,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Layup Shot,Layup,72,20301145,34.0443,0,0,-118.2698,5,1,0,2003-04,5,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Layup Shot,Layup,89,20301145,34.0443,0,0,-118.2698,2,1,0,2003-04,32,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,93,20301145,34.0113,56,33,-118.2138,2,1,0,2003-04,13,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Layup Shot,Layup,98,20301145,34.0443,0,0,-118.2698,1,1,0,2003-04,42,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,108,20301145,34.0503,172,-6,-118.0978,1,1,0,2003-04,20,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,115,20301145,33.8813,-197,163,-118.4668,0,1,0,2003-04,5,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/9/04,LAL vs. MEM,MEM
Driving Layup Shot,Layup,180,20301145,34.0443,0,0,-118.2698,6,2,0,2003-04,0,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Driving Layup Shot,Layup,198,20301145,34.0443,0,0,-118.2698,4,2,0,2003-04,43,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,203,20301145,34.0443,0,0,-118.2698,4,2,0,2003-04,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,238,20301145,33.8223,-118,222,-118.3878,0,2,0,2003-04,38,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,264,20301145,33.8553,164,189,-118.1058,10,3,0,2003-04,24,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/9/04,LAL vs. MEM,MEM
Dunk Shot,Dunk,283,20301145,34.0443,0,0,-118.2698,8,3,0,2003-04,10,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Dunk Shot,Dunk,347,20301145,34.0443,0,0,-118.2698,1,3,0,2003-04,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,357,20301145,33.9523,2,92,-118.2678,5,2,0,2003-04,4,9,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,384,20301145,33.9833,38,61,-118.2318,11,4,0,2003-04,45,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,398,20301145,34.0703,-123,-26,-118.3928,10,4,0,2003-04,9,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/9/04,LAL vs. MEM,MEM
Slam Dunk Shot,Dunk,418,20301145,34.0443,0,0,-118.2698,8,4,0,2003-04,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,450,20301145,34.0573,143,-13,-118.1268,4,4,0,2003-04,51,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,499,20301145,33.8353,136,209,-118.1338,1,4,0,2003-04,19,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/9/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,164,20301157,33.8583,158,186,-118.1118,6,2,0,2003-04,41,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/11/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,250,20301157,33.9013,135,143,-118.1348,10,3,0,2003-04,15,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/11/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,296,20301157,33.8583,-92,186,-118.3618,4,3,0,2003-04,4,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/11/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,301,20301157,33.9763,166,68,-118.1038,3,3,0,2003-04,52,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/11/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,318,20301157,33.9863,184,58,-118.0858,1,3,0,2003-04,39,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/11/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,329,20301157,33.8093,-108,235,-118.3778,0,3,0,2003-04,1,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/11/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,370,20301157,33.9343,-115,110,-118.3848,8,4,0,2003-04,37,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,4/11/04,LAL @ SAC,SAC
Layup Shot,Layup,375,20301157,34.0443,0,0,-118.2698,8,4,0,2003-04,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/11/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,411,20301157,33.8573,-77,187,-118.3468,5,4,0,2003-04,35,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/11/04,LAL @ SAC,SAC
Reverse Layup Shot,Layup,426,20301157,34.0443,0,0,-118.2698,4,4,0,2003-04,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/11/04,LAL @ SAC,SAC
Driving Layup Shot,Layup,429,20301157,34.0443,0,0,-118.2698,3,4,0,2003-04,27,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/11/04,LAL @ SAC,SAC
Driving Layup Shot,Layup,8,20301175,34.0443,0,0,-118.2698,11,1,0,2003-04,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,10,20301175,34.0633,194,-19,-118.0758,10,1,0,2003-04,57,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/13/04,LAL vs. GSW,GSW
Slam Dunk Shot,Dunk,21,20301175,34.0443,0,0,-118.2698,8,1,0,2003-04,59,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,88,20301175,34.0443,0,0,-118.2698,2,1,0,2003-04,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,101,20301175,33.9213,0,123,-118.2698,0,1,0,2003-04,27,12,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/13/04,LAL vs. GSW,GSW
Driving Layup Shot,Layup,163,20301175,34.0443,0,0,-118.2698,6,2,0,2003-04,16,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,169,20301175,34.0113,164,33,-118.1058,5,2,0,2003-04,41,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,183,20301175,33.8803,-195,164,-118.4648,4,2,0,2003-04,51,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,223,20301175,33.9523,-49,92,-118.3188,0,2,0,2003-04,39,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/13/04,LAL vs. GSW,GSW
Driving Layup Shot,Layup,228,20301175,34.0443,0,0,-118.2698,0,2,0,2003-04,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,238,20301175,34.0293,140,15,-118.1298,11,3,0,2003-04,0,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,4/13/04,LAL vs. GSW,GSW
Slam Dunk Shot,Dunk,261,20301175,34.0443,0,0,-118.2698,6,3,0,2003-04,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,286,20301175,33.9073,56,137,-118.2138,3,3,0,2003-04,20,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,323,20301175,33.9043,72,140,-118.1978,11,4,0,2003-04,27,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,4/13/04,LAL vs. GSW,GSW
Fadeaway Jump Shot,Jump Shot,373,20301175,33.9263,61,118,-118.2088,6,4,0,2003-04,32,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/13/04,LAL vs. GSW,GSW
Driving Layup Shot,Layup,376,20301175,34.0443,0,0,-118.2698,6,4,0,2003-04,1,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,380,20301175,33.7833,-120,261,-118.3898,5,4,0,2003-04,24,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/13/04,LAL vs. GSW,GSW
Layup Shot,Layup,406,20301175,34.0443,0,0,-118.2698,3,4,0,2003-04,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,411,20301175,33.8993,29,145,-118.2408,2,4,0,2003-04,28,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,429,20301175,33.8293,-171,215,-118.4408,0,4,0,2003-04,20,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/13/04,LAL vs. GSW,GSW
Running Dunk Shot,Dunk,456,20301175,34.0443,0,0,-118.2698,0,4,0,2003-04,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/13/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,8,20301187,33.8893,121,155,-118.1488,10,1,0,2003-04,29,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,15,20301187,33.9623,5,82,-118.2648,9,1,0,2003-04,36,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,25,20301187,33.8073,31,237,-118.2388,8,1,0,2003-04,28,23,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,56,20301187,33.9533,159,91,-118.1108,5,1,0,2003-04,20,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,171,20301187,33.9473,225,97,-118.0448,5,2,0,2003-04,9,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Dunk Shot,Dunk,192,20301187,34.0443,0,0,-118.2698,3,2,0,2003-04,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/14/04,LAL @ POR,POR
Running Hook Shot,Hook Shot,199,20301187,34.0093,21,35,-118.2488,1,2,0,2003-04,30,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,219,20301187,33.8473,-154,197,-118.4238,11,3,0,2003-04,12,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Driving Layup Shot,Layup,232,20301187,34.0443,0,0,-118.2698,9,3,0,2003-04,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,298,20301187,33.8883,34,156,-118.2358,4,3,0,2003-04,17,15,1,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,301,20301187,33.9273,148,117,-118.1218,3,3,0,2003-04,49,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,307,20301187,33.9453,-46,99,-118.3158,3,3,0,2003-04,10,10,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,325,20301187,33.8323,-41,212,-118.3108,2,3,0,2003-04,3,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,327,20301187,33.8603,82,184,-118.1878,1,3,0,2003-04,28,20,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,332,20301187,33.9163,-207,128,-118.4768,0,3,0,2003-04,31,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,347,20301187,33.8653,-113,179,-118.3828,11,4,0,2003-04,25,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Fadeaway Jump Shot,Jump Shot,349,20301187,34.0363,-187,8,-118.4568,10,4,0,2003-04,38,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,361,20301187,33.8813,158,163,-118.1118,8,4,0,2003-04,53,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,430,20301187,33.8043,13,240,-118.2568,3,4,0,2003-04,21,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Fadeaway Jump Shot,Jump Shot,440,20301187,34.0473,187,-3,-118.0828,1,4,0,2003-04,41,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,456,20301187,33.9013,-220,143,-118.4898,0,4,0,2003-04,14,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,465,20301187,33.7893,-6,255,-118.2758,0,4,0,2003-04,1,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Driving Finger Roll Shot,Layup,525,20301187,34.0443,0,0,-118.2698,3,6,0,2003-04,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,4/14/04,LAL @ POR,POR
Fadeaway Jump Shot,Jump Shot,532,20301187,33.9293,146,115,-118.1238,2,6,0,2003-04,27,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,538,20301187,33.7973,15,247,-118.2548,1,6,0,2003-04,42,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,546,20301187,33.8523,-133,192,-118.4028,0,6,0,2003-04,9,23,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,558,20301187,33.8833,-200,161,-118.4698,0,6,0,2003-04,0,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,4/14/04,LAL @ POR,POR
Jump Shot,Jump Shot,14,20400003,34.0473,-105,-3,-118.3748,10,1,0,2004-05,20,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,103,20400003,34.0423,92,2,-118.1778,2,1,0,2004-05,20,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,192,20400003,33.7973,87,247,-118.1828,6,2,0,2004-05,42,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,243,20400003,33.8353,144,209,-118.1258,1,2,0,2004-05,51,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,269,20400003,34.0533,-156,-9,-118.4258,11,3,0,2004-05,43,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/2/04,LAL vs. DEN,DEN
Layup Shot,Layup,284,20400003,34.0443,0,0,-118.2698,9,3,0,2004-05,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,313,20400003,33.9423,-128,102,-118.3978,5,3,0,2004-05,37,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/2/04,LAL vs. DEN,DEN
Slam Dunk Shot,Dunk,329,20400003,34.0443,0,0,-118.2698,4,3,0,2004-05,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,375,20400003,34.0293,149,15,-118.1208,0,3,0,2004-05,38,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/2/04,LAL vs. DEN,DEN
Fadeaway Jump Shot,Jump Shot,390,20400003,33.8383,-28,206,-118.2978,11,4,0,2004-05,8,20,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,471,20400003,33.8353,-87,209,-118.3568,3,4,0,2004-05,15,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/2/04,LAL vs. DEN,DEN
Layup Shot,Layup,484,20400003,34.0443,0,0,-118.2698,1,4,0,2004-05,35,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/2/04,LAL vs. DEN,DEN
Jump Shot,Jump Shot,492,20400003,33.8913,-128,153,-118.3978,1,4,0,2004-05,3,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/2/04,LAL vs. DEN,DEN
Turnaround Jump Shot,Jump Shot,507,20400003,33.9273,-66,117,-118.3358,0,4,0,2004-05,11,13,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/2/04,LAL vs. DEN,DEN
Running Jump Shot,Jump Shot,2,20400014,34.0033,94,41,-118.1758,11,1,0,2004-05,46,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,65,20400014,33.8863,-145,158,-118.4148,4,1,0,2004-05,40,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,96,20400014,33.9063,-169,138,-118.4388,1,1,0,2004-05,43,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/3/04,LAL @ UTH,UTA
Layup Shot,Layup,104,20400014,34.0443,0,0,-118.2698,1,1,0,2004-05,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,112,20400014,33.8273,95,217,-118.1748,0,1,0,2004-05,2,23,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/3/04,LAL @ UTH,UTA
Layup Shot,Layup,130,20400014,34.0443,0,0,-118.2698,10,2,0,2004-05,50,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,290,20400014,33.8863,174,158,-118.0958,6,3,0,2004-05,46,23,1,3PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,299,20400014,33.8113,-62,233,-118.3318,5,3,0,2004-05,57,24,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,326,20400014,33.8143,-89,230,-118.3588,3,3,0,2004-05,26,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,361,20400014,33.8713,164,173,-118.1058,0,3,0,2004-05,3,23,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,381,20400014,33.8583,187,186,-118.0828,10,4,0,2004-05,1,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,405,20400014,33.9493,64,95,-118.2058,8,4,0,2004-05,4,11,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,409,20400014,33.8173,-94,227,-118.3638,7,4,0,2004-05,28,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,417,20400014,33.8143,-89,230,-118.3588,6,4,0,2004-05,41,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,421,20400014,33.9453,169,99,-118.1008,6,4,0,2004-05,5,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/3/04,LAL @ UTH,UTA
Jump Shot,Jump Shot,44,20400027,33.9833,-136,61,-118.4058,6,1,0,2004-05,0,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,57,20400027,34.0443,-133,0,-118.4028,4,1,0,2004-05,31,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/5/04,LAL vs. SAN,SAS
Running Jump Shot,Jump Shot,86,20400027,33.9853,5,59,-118.2648,1,1,0,2004-05,14,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,91,20400027,33.9653,-237,79,-118.5068,0,1,0,2004-05,29,24,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,99,20400027,33.8373,126,207,-118.1438,0,1,0,2004-05,1,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,112,20400027,33.8733,62,171,-118.2078,10,2,0,2004-05,50,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/5/04,LAL vs. SAN,SAS
Jump Bank Shot,Jump Shot,126,20400027,34.0133,-159,31,-118.4288,9,2,0,2004-05,26,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,149,20400027,33.8913,-125,153,-118.3948,6,2,0,2004-05,59,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,166,20400027,33.9123,-135,132,-118.4048,4,2,0,2004-05,12,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/5/04,LAL vs. SAN,SAS
Reverse Layup Shot,Layup,169,20400027,34.0443,0,0,-118.2698,3,2,0,2004-05,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,218,20400027,34.0343,-128,10,-118.3978,0,2,0,2004-05,1,12,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/5/04,LAL vs. SAN,SAS
Layup Shot,Layup,223,20400027,34.0443,0,0,-118.2698,11,3,0,2004-05,44,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,296,20400027,33.8603,159,184,-118.1108,5,3,0,2004-05,9,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/5/04,LAL vs. SAN,SAS
Layup Shot,Layup,368,20400027,34.0443,0,0,-118.2698,10,4,0,2004-05,31,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,376,20400027,34.0293,61,15,-118.2088,9,4,0,2004-05,59,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,381,20400027,33.9633,24,81,-118.2458,9,4,0,2004-05,38,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/5/04,LAL vs. SAN,SAS
Jump Bank Shot,Jump Shot,406,20400027,34.0143,-71,30,-118.3408,7,4,0,2004-05,40,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,424,20400027,33.9683,-233,76,-118.5028,6,4,0,2004-05,5,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,447,20400027,33.9883,-202,56,-118.4718,4,4,0,2004-05,37,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/5/04,LAL vs. SAN,SAS
Layup Shot,Layup,499,20400027,34.0443,0,0,-118.2698,0,4,0,2004-05,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/5/04,LAL vs. SAN,SAS
Jump Shot,Jump Shot,61,20400044,33.9113,-182,133,-118.4518,4,1,0,2004-05,11,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/7/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,83,20400044,33.9013,-130,143,-118.3998,2,1,0,2004-05,35,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/7/04,LAL vs. ATL,ATL
Hook Shot,Hook Shot,96,20400044,33.9983,-3,46,-118.2728,1,1,0,2004-05,27,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,126,20400044,33.9393,-97,105,-118.3668,10,2,0,2004-05,10,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/7/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,215,20400044,33.9953,-16,49,-118.2858,0,2,0,2004-05,8,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/7/04,LAL vs. ATL,ATL
Driving Finger Roll Shot,Layup,263,20400044,34.0443,0,0,-118.2698,7,3,0,2004-05,2,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/04,LAL vs. ATL,ATL
Reverse Layup Shot,Layup,281,20400044,34.0443,0,0,-118.2698,4,3,0,2004-05,9,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/7/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,304,20400044,33.8063,89,238,-118.1808,2,3,0,2004-05,13,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/7/04,LAL vs. ATL,ATL
Jump Shot,Jump Shot,322,20400044,33.8113,-130,233,-118.3998,0,3,0,2004-05,27,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/7/04,LAL vs. ATL,ATL
Hook Shot,Hook Shot,48,20400053,33.9883,-3,56,-118.2728,7,1,0,2004-05,1,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/9/04,LAL @ NOK,NOP
Layup Shot,Layup,84,20400053,34.0443,0,0,-118.2698,3,1,0,2004-05,49,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/9/04,LAL @ NOK,NOP
Follow Up Dunk Shot,Dunk,144,20400053,34.0443,0,0,-118.2698,11,2,0,2004-05,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,148,20400053,34.0243,-94,20,-118.3638,10,2,0,2004-05,32,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,228,20400053,34.0363,-154,8,-118.4238,2,2,0,2004-05,42,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/9/04,LAL @ NOK,NOP
Fadeaway Jump Shot,Jump Shot,247,20400053,34.0393,167,5,-118.1028,0,2,0,2004-05,46,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,253,20400053,34.0413,-235,3,-118.5048,0,2,0,2004-05,5,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,266,20400053,34.0423,233,2,-118.0368,11,3,0,2004-05,12,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,306,20400053,34.0553,-230,-11,-118.4998,6,3,0,2004-05,47,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,319,20400053,33.8403,-159,204,-118.4288,5,3,0,2004-05,23,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,352,20400053,34.0223,166,22,-118.1038,1,3,0,2004-05,40,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/9/04,LAL @ NOK,NOP
Jump Bank Shot,Jump Shot,398,20400053,33.9703,144,74,-118.1258,9,4,0,2004-05,49,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,403,20400053,33.9833,-153,61,-118.4228,9,4,0,2004-05,20,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/9/04,LAL @ NOK,NOP
Jump Bank Shot,Jump Shot,459,20400053,33.9933,-149,51,-118.4188,4,4,0,2004-05,40,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/9/04,LAL @ NOK,NOP
Jump Shot,Jump Shot,10,20400065,33.8253,138,219,-118.1318,10,1,0,2004-05,54,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/10/04,LAL @ MEM,MEM
Layup Shot,Layup,64,20400065,34.0443,0,0,-118.2698,5,1,0,2004-05,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/04,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,67,20400065,34.0413,85,3,-118.1848,5,1,0,2004-05,0,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,123,20400065,33.8023,103,242,-118.1668,0,1,0,2004-05,0,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/10/04,LAL @ MEM,MEM
Layup Shot,Layup,135,20400065,34.0443,0,0,-118.2698,11,2,0,2004-05,20,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/04,LAL @ MEM,MEM
Layup Shot,Layup,229,20400065,34.0443,0,0,-118.2698,3,2,0,2004-05,52,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,239,20400065,33.9073,118,137,-118.1518,3,2,0,2004-05,8,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,252,20400065,33.9353,-48,109,-118.3178,2,2,0,2004-05,5,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,268,20400065,33.8013,89,243,-118.1808,0,2,0,2004-05,41,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,288,20400065,33.8733,-59,171,-118.3288,10,3,0,2004-05,28,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/10/04,LAL @ MEM,MEM
Layup Shot,Layup,315,20400065,34.0443,0,0,-118.2698,8,3,0,2004-05,9,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/04,LAL @ MEM,MEM
Dunk Shot,Dunk,316,20400065,34.0443,0,0,-118.2698,8,3,0,2004-05,6,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,330,20400065,33.8373,-159,207,-118.4288,6,3,0,2004-05,26,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/10/04,LAL @ MEM,MEM
Fadeaway Jump Shot,Jump Shot,335,20400065,34.0443,-205,0,-118.4748,6,3,0,2004-05,0,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,343,20400065,33.9933,3,51,-118.2668,3,3,0,2004-05,59,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/10/04,LAL @ MEM,MEM
Running Jump Shot,Jump Shot,363,20400065,33.9853,-13,59,-118.2828,1,3,0,2004-05,44,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,373,20400065,33.8553,-174,189,-118.4438,0,3,0,2004-05,44,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/10/04,LAL @ MEM,MEM
Jump Shot,Jump Shot,8,20400073,33.8893,205,155,-118.0648,10,1,0,2004-05,40,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,24,20400073,33.8963,151,148,-118.1188,9,1,0,2004-05,13,21,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,27,20400073,34.0093,128,35,-118.1418,8,1,0,2004-05,38,13,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,37,20400073,33.9213,31,123,-118.2388,7,1,0,2004-05,19,12,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,89,20400073,33.8613,-5,183,-118.2748,2,1,0,2004-05,2,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,98,20400073,33.9013,-149,143,-118.4188,1,1,0,2004-05,1,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,127,20400073,34.0323,67,12,-118.2028,9,2,0,2004-05,56,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,145,20400073,33.8583,-125,186,-118.3948,8,2,0,2004-05,6,22,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,197,20400073,34.0293,236,15,-118.0338,2,2,0,2004-05,58,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,232,20400073,33.8863,140,158,-118.1298,0,2,0,2004-05,13,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,249,20400073,34.0223,163,22,-118.1068,10,3,0,2004-05,36,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,261,20400073,34.0183,-235,26,-118.5048,9,3,0,2004-05,2,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Jump Bank Shot,Jump Shot,295,20400073,33.9533,-56,91,-118.3258,4,3,0,2004-05,56,10,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/12/04,LAL @ ORL,ORL
Jump Bank Shot,Jump Shot,308,20400073,33.9753,-138,69,-118.4078,3,3,0,2004-05,37,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/12/04,LAL @ ORL,ORL
Slam Dunk Shot,Dunk,323,20400073,34.0443,0,0,-118.2698,2,3,0,2004-05,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,378,20400073,33.8883,-209,156,-118.4788,10,4,0,2004-05,42,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Running Jump Shot,Jump Shot,387,20400073,33.9853,-54,59,-118.3238,9,4,0,2004-05,53,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/12/04,LAL @ ORL,ORL
Running Jump Shot,Jump Shot,406,20400073,33.8993,-13,145,-118.2828,8,4,0,2004-05,36,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,424,20400073,34.0093,238,35,-118.0318,6,4,0,2004-05,27,24,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,426,20400073,33.8633,-184,181,-118.4538,5,4,0,2004-05,49,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Running Jump Shot,Jump Shot,439,20400073,34.0183,-79,26,-118.3488,5,4,0,2004-05,12,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,471,20400073,33.8453,159,199,-118.1108,3,4,0,2004-05,9,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Running Layup Shot,Layup,474,20400073,34.0443,0,0,-118.2698,2,4,0,2004-05,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,490,20400073,33.7843,13,260,-118.2568,1,4,0,2004-05,11,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/12/04,LAL @ ORL,ORL
Jump Shot,Jump Shot,14,20400087,33.8733,102,171,-118.1678,10,1,0,2004-05,37,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,95,20400087,33.8663,131,178,-118.1388,2,1,0,2004-05,19,22,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Jump Bank Shot,Jump Shot,102,20400087,33.9683,-138,76,-118.4078,2,1,0,2004-05,1,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/13/04,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,197,20400087,33.9343,-128,110,-118.3978,3,2,0,2004-05,35,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Jump Bank Shot,Jump Shot,201,20400087,34.0113,-80,33,-118.3498,3,2,0,2004-05,8,8,1,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,220,20400087,33.7783,-57,266,-118.3268,0,2,0,2004-05,30,27,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,230,20400087,33.4363,0,608,-118.2698,0,2,0,2004-05,0,60,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,235,20400087,34.0273,-237,17,-118.5068,11,3,0,2004-05,37,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/13/04,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,240,20400087,34.0013,43,43,-118.2268,10,3,0,2004-05,55,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,242,20400087,34.0393,176,5,-118.0938,10,3,0,2004-05,11,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Running Hook Shot,Hook Shot,246,20400087,34.0243,75,20,-118.1948,9,3,0,2004-05,51,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/13/04,LAL @ HOU,HOU
Driving Dunk Shot,Dunk,251,20400087,34.0443,0,0,-118.2698,9,3,0,2004-05,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/13/04,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,257,20400087,33.9073,163,137,-118.1068,8,3,0,2004-05,44,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,267,20400087,33.8273,154,217,-118.1158,7,3,0,2004-05,48,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,271,20400087,33.8433,-148,201,-118.4178,7,3,0,2004-05,6,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,326,20400087,33.8713,-115,173,-118.3848,1,3,0,2004-05,45,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,337,20400087,33.8653,-2,179,-118.2718,1,3,0,2004-05,3,17,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Running Jump Shot,Jump Shot,345,20400087,34.0213,92,23,-118.1778,0,3,0,2004-05,2,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/13/04,LAL @ HOU,HOU
Fadeaway Jump Shot,Jump Shot,447,20400087,33.9073,-164,137,-118.4338,0,4,0,2004-05,34,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/13/04,LAL @ HOU,HOU
Jump Shot,Jump Shot,2,20400115,34.0183,169,26,-118.1008,11,1,0,2004-05,39,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/17/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,153,20400115,33.9273,-171,117,-118.4408,7,2,0,2004-05,11,20,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/17/04,LAL vs. LAC,LAC
Layup Shot,Layup,215,20400115,34.0443,0,0,-118.2698,1,2,0,2004-05,24,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/04,LAL vs. LAC,LAC
Driving Layup Shot,Layup,227,20400115,34.0443,0,0,-118.2698,0,2,0,2004-05,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/04,LAL vs. LAC,LAC
Running Jump Shot,Jump Shot,260,20400115,34.0223,-161,22,-118.4308,9,3,0,2004-05,14,16,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/17/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,279,20400115,34.0263,-33,18,-118.3028,6,3,0,2004-05,34,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/04,LAL vs. LAC,LAC
Jump Bank Shot,Jump Shot,290,20400115,34.0043,69,40,-118.2008,5,3,0,2004-05,11,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/17/04,LAL vs. LAC,LAC
Layup Shot,Layup,297,20400115,34.0443,0,0,-118.2698,3,3,0,2004-05,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/04,LAL vs. LAC,LAC
Jump Bank Shot,Jump Shot,340,20400115,33.9683,82,76,-118.1878,0,3,0,2004-05,25,11,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/17/04,LAL vs. LAC,LAC
Alley Oop Dunk Shot,Dunk,389,20400115,34.0443,0,0,-118.2698,6,4,0,2004-05,50,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,404,20400115,34.0193,84,25,-118.1858,4,4,0,2004-05,31,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/17/04,LAL vs. LAC,LAC
Slam Dunk Shot,Dunk,421,20400115,34.0443,0,0,-118.2698,3,4,0,2004-05,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/17/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,426,20400115,33.8453,66,199,-118.2038,2,4,0,2004-05,51,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/17/04,LAL vs. LAC,LAC
Jump Shot,Jump Shot,446,20400115,33.8023,-77,242,-118.3468,1,4,0,2004-05,25,25,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,11/17/04,LAL vs. LAC,LAC
Jump Bank Shot,Jump Shot,9,20400126,33.9933,113,51,-118.1568,10,1,0,2004-05,43,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,23,20400126,33.9073,-135,137,-118.4048,9,1,0,2004-05,13,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,120,20400126,33.9443,-156,100,-118.4258,10,2,0,2004-05,36,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,157,20400126,33.9353,38,109,-118.2318,6,2,0,2004-05,43,11,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,159,20400126,33.9783,-94,66,-118.3638,6,2,0,2004-05,40,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,162,20400126,33.9173,-187,127,-118.4568,6,2,0,2004-05,2,22,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,171,20400126,33.9013,-122,143,-118.3918,5,2,0,2004-05,30,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Layup Shot,Layup,173,20400126,34.0443,0,0,-118.2698,5,2,0,2004-05,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,189,20400126,34.0323,105,12,-118.1648,3,2,0,2004-05,50,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/19/04,LAL @ PHO,PHX
Turnaround Jump Shot,Jump Shot,197,20400126,33.9393,-159,105,-118.4288,2,2,0,2004-05,43,19,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,223,20400126,33.9223,-172,122,-118.4418,10,3,0,2004-05,56,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,226,20400126,33.8993,-197,145,-118.4668,10,3,0,2004-05,25,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,228,20400126,33.8473,-59,197,-118.3288,9,3,0,2004-05,57,20,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,276,20400126,33.8293,18,215,-118.2518,5,3,0,2004-05,47,21,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,279,20400126,33.9493,-159,95,-118.4288,5,3,0,2004-05,21,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,290,20400126,33.8713,75,173,-118.1948,4,3,0,2004-05,0,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,314,20400126,33.8523,-171,192,-118.4408,1,3,0,2004-05,40,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,317,20400126,33.8703,169,174,-118.1008,1,3,0,2004-05,20,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,335,20400126,33.8683,176,176,-118.0938,11,4,0,2004-05,28,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Layup Shot,Layup,352,20400126,34.0443,0,0,-118.2698,10,4,0,2004-05,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,396,20400126,33.8553,-186,189,-118.4558,6,4,0,2004-05,19,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Driving Layup Shot,Layup,401,20400126,34.0443,0,0,-118.2698,5,4,0,2004-05,51,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,403,20400126,33.8683,-187,176,-118.4568,5,4,0,2004-05,20,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,410,20400126,33.8553,-187,189,-118.4568,4,4,0,2004-05,29,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Layup Shot,Layup,418,20400126,34.0443,0,0,-118.2698,2,4,0,2004-05,56,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,437,20400126,33.7943,120,250,-118.1498,0,4,0,2004-05,37,27,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,445,20400126,33.7943,-87,250,-118.3568,0,4,0,2004-05,25,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,451,20400126,34.0703,232,-26,-118.0378,0,4,0,2004-05,8,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,456,20400126,33.9013,153,143,-118.1168,0,4,0,2004-05,0,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,11/19/04,LAL @ PHO,PHX
Jump Shot,Jump Shot,114,20400145,33.8713,-105,173,-118.3748,1,1,0,2004-05,29,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,120,20400145,33.9033,-112,141,-118.3818,1,1,0,2004-05,4,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,131,20400145,33.5163,-128,528,-118.3978,0,1,0,2004-05,0,54,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,136,20400145,33.8553,0,189,-118.2698,11,2,0,2004-05,43,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/21/04,LAL vs. CHI,CHI
Driving Dunk Shot,Dunk,239,20400145,34.0443,0,0,-118.2698,2,2,0,2004-05,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Driving Layup Shot,Layup,247,20400145,34.0443,0,0,-118.2698,1,2,0,2004-05,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,252,20400145,33.8833,-128,161,-118.3978,1,2,0,2004-05,9,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/21/04,LAL vs. CHI,CHI
Slam Dunk Shot,Dunk,258,20400145,34.0443,0,0,-118.2698,0,2,0,2004-05,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,265,20400145,33.9813,26,63,-118.2438,11,3,0,2004-05,45,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Slam Dunk Shot,Dunk,269,20400145,34.0443,0,0,-118.2698,11,3,0,2004-05,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,272,20400145,34.0473,-164,-3,-118.4338,11,3,0,2004-05,0,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,288,20400145,34.0373,161,7,-118.1088,9,3,0,2004-05,47,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,321,20400145,33.9353,29,109,-118.2408,5,3,0,2004-05,41,11,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/21/04,LAL vs. CHI,CHI
Driving Layup Shot,Layup,347,20400145,34.0443,0,0,-118.2698,2,3,0,2004-05,12,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Driving Layup Shot,Layup,350,20400145,34.0443,0,0,-118.2698,1,3,0,2004-05,32,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,357,20400145,33.9763,-3,68,-118.2728,0,3,0,2004-05,39,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,387,20400145,33.9493,43,95,-118.2268,9,4,0,2004-05,34,10,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,436,20400145,33.9263,103,118,-118.1668,3,4,0,2004-05,36,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/21/04,LAL vs. CHI,CHI
Turnaround Jump Shot,Jump Shot,461,20400145,33.7873,89,257,-118.1808,0,4,0,2004-05,59,27,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/21/04,LAL vs. CHI,CHI
Jump Shot,Jump Shot,26,20400158,34.0493,-108,-5,-118.3778,9,1,0,2004-05,41,10,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,47,20400158,33.9583,130,86,-118.1398,7,1,0,2004-05,34,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/23/04,LAL vs. MIL,MIL
Driving Layup Shot,Layup,94,20400158,34.0443,0,0,-118.2698,2,1,0,2004-05,13,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,155,20400158,33.8893,-192,155,-118.4618,7,2,0,2004-05,57,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/23/04,LAL vs. MIL,MIL
Hook Shot,Hook Shot,158,20400158,33.9883,-43,56,-118.3128,7,2,0,2004-05,33,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Driving Layup Shot,Layup,170,20400158,34.0443,0,0,-118.2698,6,2,0,2004-05,8,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,176,20400158,34.0223,182,22,-118.0878,5,2,0,2004-05,2,18,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,11/23/04,LAL vs. MIL,MIL
Reverse Layup Shot,Layup,178,20400158,34.0443,0,0,-118.2698,4,2,0,2004-05,28,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,181,20400158,34.0603,131,-16,-118.1388,3,2,0,2004-05,46,13,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/23/04,LAL vs. MIL,MIL
Layup Shot,Layup,193,20400158,34.0443,0,0,-118.2698,2,2,0,2004-05,40,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Layup Shot,Layup,206,20400158,34.0443,0,0,-118.2698,1,2,0,2004-05,7,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Driving Layup Shot,Layup,225,20400158,34.0443,0,0,-118.2698,11,3,0,2004-05,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Fadeaway Jump Shot,Jump Shot,242,20400158,33.9093,-156,135,-118.4258,9,3,0,2004-05,48,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,245,20400158,33.9143,-225,130,-118.4948,9,3,0,2004-05,23,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,269,20400158,34.0373,-181,7,-118.4508,6,3,0,2004-05,21,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,280,20400158,33.9853,6,59,-118.2638,5,3,0,2004-05,21,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Layup Shot,Layup,281,20400158,34.0443,0,0,-118.2698,5,3,0,2004-05,18,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Jump Bank Shot,Jump Shot,298,20400158,34.0143,-46,30,-118.3158,3,3,0,2004-05,6,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Layup Shot,Layup,388,20400158,34.0443,0,0,-118.2698,4,4,0,2004-05,55,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Driving Layup Shot,Layup,398,20400158,34.0443,0,0,-118.2698,4,4,0,2004-05,7,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/23/04,LAL vs. MIL,MIL
Jump Bank Shot,Jump Shot,419,20400158,34.0193,94,25,-118.1758,2,4,0,2004-05,29,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/23/04,LAL vs. MIL,MIL
Jump Shot,Jump Shot,6,20400181,34.0013,-79,43,-118.3488,10,1,0,2004-05,46,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,11/26/04,LAL vs. SAC,SAC
Layup Shot,Layup,37,20400181,34.0443,0,0,-118.2698,7,1,0,2004-05,54,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,94,20400181,34.0503,227,-6,-118.0428,0,1,0,2004-05,57,22,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,199,20400181,33.9093,57,135,-118.2128,3,2,0,2004-05,23,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,207,20400181,33.9963,57,48,-118.2128,2,2,0,2004-05,46,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/26/04,LAL vs. SAC,SAC
Reverse Dunk Shot,Dunk,263,20400181,34.0443,0,0,-118.2698,8,3,0,2004-05,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,276,20400181,33.8373,-149,207,-118.4188,7,3,0,2004-05,41,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/26/04,LAL vs. SAC,SAC
Jump Bank Shot,Jump Shot,289,20400181,33.9983,33,46,-118.2368,6,3,0,2004-05,43,5,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,295,20400181,34.0683,-204,-24,-118.4738,5,3,0,2004-05,43,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,318,20400181,33.9803,-126,64,-118.3958,4,3,0,2004-05,33,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/26/04,LAL vs. SAC,SAC
Jump Bank Shot,Jump Shot,320,20400181,34.0443,-95,0,-118.3648,4,3,0,2004-05,29,9,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,386,20400181,33.8583,56,186,-118.2138,10,4,0,2004-05,20,19,1,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,11/26/04,LAL vs. SAC,SAC
Jump Shot,Jump Shot,512,20400181,33.9043,-220,140,-118.4898,0,4,0,2004-05,4,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/26/04,LAL vs. SAC,SAC
Turnaround Jump Shot,Jump Shot,2,20400198,33.9353,-140,109,-118.4098,11,1,0,2004-05,44,17,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/28/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,7,20400198,33.9303,-125,114,-118.3948,10,1,0,2004-05,53,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/28/04,LAL vs. NOK,NOP
Reverse Dunk Shot,Dunk,77,20400198,34.0443,0,0,-118.2698,2,1,0,2004-05,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/04,LAL vs. NOK,NOP
Layup Shot,Layup,179,20400198,34.0443,0,0,-118.2698,4,2,0,2004-05,2,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,186,20400198,34.0443,-238,0,-118.5078,3,2,0,2004-05,2,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/28/04,LAL vs. NOK,NOP
Driving Layup Shot,Layup,196,20400198,34.0443,0,0,-118.2698,2,2,0,2004-05,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,213,20400198,34.0503,223,-6,-118.0468,0,2,0,2004-05,32,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/28/04,LAL vs. NOK,NOP
Turnaround Jump Shot,Jump Shot,244,20400198,33.8883,-123,156,-118.3928,10,3,0,2004-05,9,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/28/04,LAL vs. NOK,NOP
Turnaround Jump Shot,Jump Shot,298,20400198,33.9493,-141,95,-118.4108,4,3,0,2004-05,13,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,11/28/04,LAL vs. NOK,NOP
Layup Shot,Layup,307,20400198,34.0443,0,0,-118.2698,3,3,0,2004-05,47,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,316,20400198,33.8383,-158,206,-118.4278,2,3,0,2004-05,51,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/28/04,LAL vs. NOK,NOP
Slam Dunk Shot,Dunk,339,20400198,34.0443,0,0,-118.2698,0,3,0,2004-05,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/04,LAL vs. NOK,NOP
Slam Dunk Shot,Dunk,396,20400198,34.0443,0,0,-118.2698,5,4,0,2004-05,55,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/28/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,399,20400198,33.9323,-115,112,-118.3848,5,4,0,2004-05,18,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/28/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,421,20400198,34.0323,230,12,-118.0398,2,4,0,2004-05,49,23,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/28/04,LAL vs. NOK,NOP
Turnaround Jump Shot,Jump Shot,443,20400198,33.8963,-72,148,-118.3418,1,4,0,2004-05,15,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/28/04,LAL vs. NOK,NOP
Jump Bank Shot,Jump Shot,14,20400205,34.0183,85,26,-118.1848,9,1,0,2004-05,58,8,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,74,20400205,33.8063,-113,238,-118.3828,2,1,0,2004-05,46,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,82,20400205,34.0723,233,-28,-118.0368,1,1,0,2004-05,3,23,1,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,11/30/04,LAL @ MIL,MIL
Layup Shot,Layup,84,20400205,34.0443,0,0,-118.2698,0,1,0,2004-05,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,110,20400205,34.0683,-237,-24,-118.5068,10,2,0,2004-05,9,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,11/30/04,LAL @ MIL,MIL
Layup Shot,Layup,179,20400205,34.0443,0,0,-118.2698,1,2,0,2004-05,59,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,232,20400205,34.0653,-108,-21,-118.3778,9,3,0,2004-05,53,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,252,20400205,33.7943,98,250,-118.1718,8,3,0,2004-05,26,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,366,20400205,33.8703,-205,174,-118.4748,6,4,0,2004-05,9,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,403,20400205,34.0273,-33,17,-118.3028,2,4,0,2004-05,28,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,416,20400205,33.8453,-94,199,-118.3638,0,4,0,2004-05,31,22,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,11/30/04,LAL @ MIL,MIL
Jump Shot,Jump Shot,2,20400216,33.9093,-187,135,-118.4568,11,1,0,2004-05,35,23,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,4,20400216,33.9013,-154,143,-118.4238,11,1,0,2004-05,3,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,49,20400216,33.9623,138,82,-118.1318,6,1,0,2004-05,32,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,103,20400216,33.8173,131,227,-118.1388,0,1,0,2004-05,0,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Layup Shot,Layup,111,20400216,34.0443,0,0,-118.2698,11,2,0,2004-05,34,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/04,LAL @ CHI,CHI
Layup Shot,Layup,119,20400216,34.0443,0,0,-118.2698,10,2,0,2004-05,16,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,130,20400216,33.8173,95,227,-118.1748,8,2,0,2004-05,38,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Layup Shot,Layup,142,20400216,34.0443,0,0,-118.2698,6,2,0,2004-05,39,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,224,20400216,33.8353,-181,209,-118.4508,10,3,0,2004-05,14,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Dunk Shot,Dunk,284,20400216,34.0443,0,0,-118.2698,3,3,0,2004-05,46,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,318,20400216,33.7783,-33,266,-118.3028,0,3,0,2004-05,8,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,346,20400216,33.7963,-85,248,-118.3548,9,4,0,2004-05,15,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Layup Shot,Layup,354,20400216,34.0443,0,0,-118.2698,8,4,0,2004-05,30,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,366,20400216,33.8483,-161,196,-118.4308,7,4,0,2004-05,0,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,395,20400216,33.8753,195,169,-118.0748,4,4,0,2004-05,50,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Layup Shot,Layup,419,20400216,34.0443,0,0,-118.2698,3,4,0,2004-05,21,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,426,20400216,34.0163,148,28,-118.1218,1,4,0,2004-05,54,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,441,20400216,34.0343,224,10,-118.0458,0,4,0,2004-05,17,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/1/04,LAL @ CHI,CHI
Jump Shot,Jump Shot,140,20400231,34.0703,80,-26,-118.1898,9,2,0,2004-05,3,8,0,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/3/04,LAL vs. GSW,GSW
Driving Layup Shot,Layup,219,20400231,34.0443,0,0,-118.2698,2,2,0,2004-05,18,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,312,20400231,33.8703,-223,174,-118.4928,6,3,0,2004-05,44,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/3/04,LAL vs. GSW,GSW
Hook Shot,Hook Shot,388,20400231,34.0183,8,26,-118.2618,0,3,0,2004-05,6,2,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,435,20400231,33.8733,-71,171,-118.3408,8,4,0,2004-05,33,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/3/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,446,20400231,33.9903,-148,54,-118.4178,7,4,0,2004-05,44,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/3/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,473,20400231,33.9863,-166,58,-118.4358,5,4,0,2004-05,0,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/3/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,490,20400231,34.0393,159,5,-118.1108,2,4,0,2004-05,5,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/3/04,LAL vs. GSW,GSW
Layup Shot,Layup,495,20400231,34.0443,0,0,-118.2698,1,4,0,2004-05,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/3/04,LAL vs. GSW,GSW
Jump Shot,Jump Shot,14,20400272,33.8243,-75,220,-118.3448,9,1,0,2004-05,24,23,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,17,20400272,33.8073,77,237,-118.1928,8,1,0,2004-05,48,24,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,178,20400272,34.0453,-238,-1,-118.5078,4,2,0,2004-05,53,23,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,192,20400272,34.0263,161,18,-118.1088,3,2,0,2004-05,20,16,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,200,20400272,33.9263,210,118,-118.0598,2,2,0,2004-05,29,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,203,20400272,33.8583,172,186,-118.0978,2,2,0,2004-05,14,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,213,20400272,33.8533,-156,191,-118.4258,1,2,0,2004-05,23,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,236,20400272,33.7963,131,248,-118.1388,11,3,0,2004-05,27,28,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,245,20400272,33.8013,115,243,-118.1548,9,3,0,2004-05,58,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,273,20400272,34.0553,-241,-11,-118.5108,7,3,0,2004-05,7,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Layup Shot,Layup,281,20400272,34.0443,0,0,-118.2698,6,3,0,2004-05,15,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/04,LAL vs. PHO,PHX
Layup Shot,Layup,305,20400272,34.0443,0,0,-118.2698,4,3,0,2004-05,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,317,20400272,33.9323,144,112,-118.1258,3,3,0,2004-05,20,18,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,327,20400272,33.8893,-59,155,-118.3288,2,3,0,2004-05,52,16,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,340,20400272,33.9833,-51,61,-118.3208,1,3,0,2004-05,4,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,347,20400272,33.4423,-184,602,-118.4538,0,3,0,2004-05,0,62,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,12/8/04,LAL vs. PHO,PHX
Reverse Dunk Shot,Dunk,355,20400272,34.0443,0,0,-118.2698,11,4,0,2004-05,24,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/04,LAL vs. PHO,PHX
Layup Shot,Layup,389,20400272,34.0443,0,0,-118.2698,8,4,0,2004-05,3,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,428,20400272,34.0413,-184,3,-118.4538,4,4,0,2004-05,11,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,441,20400272,33.8963,121,148,-118.1488,2,4,0,2004-05,38,19,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,462,20400272,34.0373,121,7,-118.1488,0,4,0,2004-05,54,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,486,20400272,33.8203,-171,224,-118.4408,0,4,0,2004-05,0,28,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/8/04,LAL vs. PHO,PHX
Jump Shot,Jump Shot,23,20400294,33.8073,-84,237,-118.3538,9,1,0,2004-05,55,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,65,20400294,34.0813,84,-37,-118.1858,6,1,0,2004-05,39,9,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,70,20400294,34.0243,-199,20,-118.4688,5,1,0,2004-05,53,20,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,82,20400294,33.9523,-122,92,-118.3918,4,1,0,2004-05,30,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,90,20400294,34.0223,-146,22,-118.4158,3,1,0,2004-05,54,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/11/04,LAL @ LAC,LAC
Driving Finger Roll Shot,Layup,99,20400294,34.0443,0,0,-118.2698,3,1,0,2004-05,31,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/04,LAL @ LAC,LAC
Slam Dunk Shot,Dunk,124,20400294,34.0443,0,0,-118.2698,0,1,0,2004-05,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,149,20400294,33.9573,5,87,-118.2648,9,2,0,2004-05,45,8,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,154,20400294,34.0033,34,41,-118.2358,9,2,0,2004-05,30,5,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/11/04,LAL @ LAC,LAC
Hook Bank Shot,Bank Shot,166,20400294,34.0393,-46,5,-118.3158,7,2,0,2004-05,22,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/11/04,LAL @ LAC,LAC
Jump Bank Shot,Jump Shot,194,20400294,33.8533,-80,191,-118.3498,5,2,0,2004-05,21,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,210,20400294,33.9263,146,118,-118.1238,3,2,0,2004-05,33,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,214,20400294,34.0113,195,33,-118.0748,2,2,0,2004-05,54,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,232,20400294,33.8713,179,173,-118.0908,0,2,0,2004-05,58,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/11/04,LAL @ LAC,LAC
Jump Bank Shot,Jump Shot,253,20400294,33.8733,-113,171,-118.3828,11,3,0,2004-05,15,20,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Reverse Dunk Shot,Dunk,264,20400294,34.0443,0,0,-118.2698,10,3,0,2004-05,7,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,278,20400294,33.9073,117,137,-118.1528,8,3,0,2004-05,46,18,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,285,20400294,34.0213,189,23,-118.0808,8,3,0,2004-05,8,19,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,290,20400294,33.8243,-153,220,-118.4228,7,3,0,2004-05,38,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,369,20400294,34.0343,158,10,-118.1118,0,3,0,2004-05,20,15,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,373,20400294,33.8703,156,174,-118.1138,0,3,0,2004-05,0,23,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,411,20400294,33.8713,79,173,-118.1908,7,4,0,2004-05,52,19,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,415,20400294,33.8913,-112,153,-118.3818,7,4,0,2004-05,7,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Layup Shot,Layup,425,20400294,34.0443,0,0,-118.2698,6,4,0,2004-05,11,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,446,20400294,33.8203,-135,224,-118.4048,5,4,0,2004-05,1,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,449,20400294,33.7913,82,253,-118.1878,4,4,0,2004-05,14,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/11/04,LAL @ LAC,LAC
Driving Layup Shot,Layup,457,20400294,34.0443,0,0,-118.2698,3,4,0,2004-05,11,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,469,20400294,33.9073,-130,137,-118.3998,1,4,0,2004-05,4,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Jump Shot,Jump Shot,479,20400294,33.9393,-136,105,-118.4058,0,4,0,2004-05,10,17,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/11/04,LAL @ LAC,LAC
Finger Roll Shot,Layup,3,20400301,34.0443,0,0,-118.2698,11,1,0,2004-05,23,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,10,20400301,33.9213,-57,123,-118.3268,10,1,0,2004-05,42,13,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/12/04,LAL vs. ORL,ORL
Jump Bank Shot,Jump Shot,30,20400301,33.9243,-85,120,-118.3548,8,1,0,2004-05,14,14,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/12/04,LAL vs. ORL,ORL
Hook Shot,Hook Shot,65,20400301,33.9623,89,82,-118.1808,3,1,0,2004-05,25,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/12/04,LAL vs. ORL,ORL
Layup Shot,Layup,76,20400301,34.0443,0,0,-118.2698,2,1,0,2004-05,1,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,85,20400301,33.8023,115,242,-118.1548,1,1,0,2004-05,15,26,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,88,20400301,33.9633,34,81,-118.2358,0,1,0,2004-05,42,8,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,102,20400301,33.9423,107,102,-118.1628,11,2,0,2004-05,44,14,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,195,20400301,33.9983,5,46,-118.2648,0,2,0,2004-05,38,4,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,218,20400301,33.9123,64,132,-118.2058,11,3,0,2004-05,46,14,0,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/12/04,LAL vs. ORL,ORL
Reverse Layup Shot,Layup,232,20400301,34.0443,0,0,-118.2698,9,3,0,2004-05,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Layup Shot,Layup,251,20400301,34.0443,0,0,-118.2698,7,3,0,2004-05,47,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,259,20400301,33.8663,-31,178,-118.3008,7,3,0,2004-05,14,18,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/12/04,LAL vs. ORL,ORL
Layup Shot,Layup,268,20400301,34.0443,0,0,-118.2698,5,3,0,2004-05,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Slam Dunk Shot,Dunk,278,20400301,34.0443,0,0,-118.2698,4,3,0,2004-05,45,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Driving Layup Shot,Layup,373,20400301,34.0443,0,0,-118.2698,7,4,0,2004-05,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,398,20400301,33.8403,-74,204,-118.3438,4,4,0,2004-05,59,21,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/12/04,LAL vs. ORL,ORL
Layup Shot,Layup,400,20400301,34.0443,0,0,-118.2698,4,4,0,2004-05,43,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Layup Shot,Layup,418,20400301,34.0443,0,0,-118.2698,3,4,0,2004-05,25,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/12/04,LAL vs. ORL,ORL
Jump Shot,Jump Shot,5,20400315,34.0533,-184,-9,-118.4538,11,1,0,2004-05,9,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/14/04,LAL @ SEA,SEA
Turnaround Jump Shot,Jump Shot,17,20400315,34.0273,151,17,-118.1188,9,1,0,2004-05,47,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/14/04,LAL @ SEA,SEA
Driving Layup Shot,Layup,19,20400315,34.0443,0,0,-118.2698,9,1,0,2004-05,10,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,51,20400315,33.8913,-99,153,-118.3688,5,1,0,2004-05,38,18,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,53,20400315,34.0373,102,7,-118.1678,4,1,0,2004-05,57,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,98,20400315,33.9673,161,77,-118.1088,1,1,0,2004-05,2,17,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,109,20400315,33.5723,119,472,-118.1508,0,1,0,2004-05,0,48,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,12/14/04,LAL @ SEA,SEA
Layup Shot,Layup,146,20400315,34.0473,33,-3,-118.2368,8,2,0,2004-05,26,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/04,LAL @ SEA,SEA
Reverse Layup Shot,Layup,148,20400315,34.0363,-33,8,-118.3028,8,2,0,2004-05,22,3,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,180,20400315,33.9783,-161,66,-118.4308,5,2,0,2004-05,19,17,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,214,20400315,33.8253,-117,219,-118.3868,1,2,0,2004-05,48,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,225,20400315,33.7993,-52,245,-118.3218,0,2,0,2004-05,44,25,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,244,20400315,33.9623,-169,82,-118.4388,11,3,0,2004-05,35,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/14/04,LAL @ SEA,SEA
Driving Layup Shot,Layup,303,20400315,34.0443,0,0,-118.2698,6,3,0,2004-05,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,396,20400315,33.8173,-197,227,-118.4668,9,4,0,2004-05,25,30,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/14/04,LAL @ SEA,SEA
Driving Layup Shot,Layup,423,20400315,34.0443,0,0,-118.2698,6,4,0,2004-05,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/04,LAL @ SEA,SEA
Driving Layup Shot,Layup,448,20400315,34.0443,0,0,-118.2698,4,4,0,2004-05,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,458,20400315,33.8273,117,217,-118.1528,2,4,0,2004-05,26,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,460,20400315,33.8243,110,220,-118.1598,1,4,0,2004-05,49,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/14/04,LAL @ SEA,SEA
Jump Shot,Jump Shot,83,20400328,33.9983,-223,46,-118.4928,1,1,0,2004-05,6,22,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,125,20400328,33.9933,172,51,-118.0978,9,2,0,2004-05,38,17,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,205,20400328,33.3033,-107,741,-118.3768,0,2,0,2004-05,0,74,0,3PT Field Goal,Back Court(BC),Backcourt,Back Court Shot,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,214,20400328,33.9763,-2,68,-118.2718,11,3,0,2004-05,21,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/16/04,LAL @ SAC,SAC
Reverse Layup Shot,Layup,226,20400328,34.0443,0,0,-118.2698,9,3,0,2004-05,48,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,229,20400328,33.8663,171,178,-118.0988,9,3,0,2004-05,16,24,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,233,20400328,33.9393,161,105,-118.1088,8,3,0,2004-05,40,19,1,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/16/04,LAL @ SAC,SAC
Layup Shot,Layup,256,20400328,34.0443,0,0,-118.2698,5,3,0,2004-05,23,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,265,20400328,33.8523,-149,192,-118.4188,3,3,0,2004-05,34,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/16/04,LAL @ SAC,SAC
Driving Layup Shot,Layup,296,20400328,34.0443,0,0,-118.2698,0,3,0,2004-05,37,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,346,20400328,34.0163,-87,28,-118.3568,6,4,0,2004-05,51,9,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,355,20400328,33.9243,-215,120,-118.4848,6,4,0,2004-05,1,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,357,20400328,33.8153,121,229,-118.1488,5,4,0,2004-05,27,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,378,20400328,33.7793,5,265,-118.2648,2,4,0,2004-05,50,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/16/04,LAL @ SAC,SAC
Jump Shot,Jump Shot,93,20400338,33.8613,172,183,-118.0978,1,1,0,2004-05,8,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/17/04,LAL vs. WAS,WAS
Driving Layup Shot,Layup,132,20400338,34.0443,0,0,-118.2698,10,2,0,2004-05,17,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/04,LAL vs. WAS,WAS
Reverse Layup Shot,Layup,135,20400338,34.0443,0,0,-118.2698,9,2,0,2004-05,49,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/04,LAL vs. WAS,WAS
Jump Bank Shot,Jump Shot,140,20400338,33.9953,-143,49,-118.4128,8,2,0,2004-05,24,15,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/17/04,LAL vs. WAS,WAS
Layup Shot,Layup,161,20400338,34.0443,0,0,-118.2698,6,2,0,2004-05,26,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/04,LAL vs. WAS,WAS
Jump Bank Shot,Jump Shot,171,20400338,33.9303,138,114,-118.1318,5,2,0,2004-05,40,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,219,20400338,34.0623,-212,-18,-118.4818,0,2,0,2004-05,21,21,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,227,20400338,34.0673,100,-23,-118.1698,11,3,0,2004-05,19,10,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,246,20400338,34.0683,223,-24,-118.0468,8,3,0,2004-05,51,22,0,3PT Field Goal,Right Side(R),Right Corner 3,24+ ft.,12/17/04,LAL vs. WAS,WAS
Finger Roll Shot,Layup,256,20400338,34.0443,0,0,-118.2698,7,3,0,2004-05,41,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,314,20400338,33.9853,-140,59,-118.4098,0,3,0,2004-05,53,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,331,20400338,33.8023,-99,242,-118.3688,11,4,0,2004-05,18,26,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,408,20400338,34.0503,154,-6,-118.1158,3,4,0,2004-05,50,15,1,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,461,20400338,33.9653,-126,79,-118.3958,4,5,0,2004-05,34,14,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/17/04,LAL vs. WAS,WAS
Layup Shot,Layup,465,20400338,34.0443,0,0,-118.2698,3,5,0,2004-05,55,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,472,20400338,34.0293,59,15,-118.2108,2,5,0,2004-05,30,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/17/04,LAL vs. WAS,WAS
Layup Shot,Layup,492,20400338,34.0443,0,0,-118.2698,0,5,0,2004-05,38,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/17/04,LAL vs. WAS,WAS
Jump Shot,Jump Shot,505,20400338,33.8433,-163,201,-118.4328,0,5,0,2004-05,8,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/17/04,LAL vs. WAS,WAS
Running Jump Shot,Jump Shot,2,20400358,33.9953,64,49,-118.2058,11,1,0,2004-05,41,8,1,2PT Field Goal,Right Side(R),In The Paint (Non-RA),8-16 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,87,20400358,33.8573,-164,187,-118.4338,2,1,0,2004-05,10,24,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/20/04,LAL vs. MEM,MEM
Layup Shot,Layup,91,20400358,34.0443,0,0,-118.2698,1,1,0,2004-05,34,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,122,20400358,33.8963,75,148,-118.1948,10,2,0,2004-05,42,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,198,20400358,33.8193,-218,225,-118.4878,2,2,0,2004-05,39,31,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/20/04,LAL vs. MEM,MEM
Layup Shot,Layup,215,20400358,34.0443,0,0,-118.2698,1,2,0,2004-05,14,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/04,LAL vs. MEM,MEM
Dunk Shot,Dunk,291,20400358,34.0443,0,0,-118.2698,5,3,0,2004-05,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,312,20400358,34.0243,-87,20,-118.3568,3,3,0,2004-05,41,8,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,392,20400358,33.8983,5,146,-118.2648,8,4,0,2004-05,21,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,433,20400358,33.9703,-141,74,-118.4108,4,4,0,2004-05,48,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,448,20400358,33.9993,-54,45,-118.3238,3,4,0,2004-05,7,7,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,474,20400358,33.8863,-215,158,-118.4848,0,4,0,2004-05,40,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,476,20400358,33.9633,-238,81,-118.5078,0,4,0,2004-05,32,25,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,478,20400358,34.0533,-181,-9,-118.4508,0,4,0,2004-05,28,18,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/20/04,LAL vs. MEM,MEM
Jump Shot,Jump Shot,7,20400377,33.8023,-125,242,-118.3948,11,1,0,2004-05,21,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,13,20400377,33.9123,52,132,-118.2178,11,1,0,2004-05,2,14,1,2PT Field Goal,Center(C),In The Paint (Non-RA),8-16 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,18,20400377,33.9473,-92,97,-118.3618,10,1,0,2004-05,21,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,45,20400377,33.9523,-138,92,-118.4078,7,1,0,2004-05,24,16,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,104,20400377,33.9273,-97,117,-118.3668,0,1,0,2004-05,25,15,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,115,20400377,34.0533,-177,-9,-118.4468,11,2,0,2004-05,36,17,0,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/22/04,LAL vs. NOK,NOP
Driving Layup Shot,Layup,128,20400377,34.0443,0,0,-118.2698,9,2,0,2004-05,56,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,227,20400377,34.0553,189,-11,-118.0808,1,2,0,2004-05,36,18,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,242,20400377,34.0163,-136,28,-118.4058,11,3,0,2004-05,44,13,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/04,LAL vs. NOK,NOP
Slam Dunk Shot,Dunk,307,20400377,34.0443,0,0,-118.2698,3,3,0,2004-05,58,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,317,20400377,33.8383,154,206,-118.1158,3,3,0,2004-05,13,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,342,20400377,33.8663,-177,178,-118.4468,0,3,0,2004-05,35,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/22/04,LAL vs. NOK,NOP
Layup Shot,Layup,346,20400377,34.0443,0,0,-118.2698,0,3,0,2004-05,0,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,367,20400377,33.8783,138,166,-118.1318,10,4,0,2004-05,23,21,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/22/04,LAL vs. NOK,NOP
Reverse Layup Shot,Layup,371,20400377,34.0443,0,0,-118.2698,9,4,0,2004-05,57,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,378,20400377,33.9803,151,64,-118.1188,9,4,0,2004-05,10,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,435,20400377,34.0673,126,-23,-118.1438,4,4,0,2004-05,54,12,0,2PT Field Goal,Right Side(R),Mid-Range,8-16 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,446,20400377,33.9833,153,61,-118.1168,4,4,0,2004-05,20,16,0,2PT Field Goal,Right Side(R),Mid-Range,16-24 ft.,12/22/04,LAL vs. NOK,NOP
Reverse Dunk Shot,Dunk,459,20400377,34.0443,0,0,-118.2698,3,4,0,2004-05,29,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/22/04,LAL vs. NOK,NOP
Jump Bank Shot,Jump Shot,484,20400377,34.0313,-85,13,-118.3548,2,4,0,2004-05,23,8,1,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/22/04,LAL vs. NOK,NOP
Fadeaway Jump Shot,Jump Shot,504,20400377,33.9683,-164,76,-118.4338,0,4,0,2004-05,48,18,1,2PT Field Goal,Left Side(L),Mid-Range,16-24 ft.,12/22/04,LAL vs. NOK,NOP
Jump Shot,Jump Shot,2,20400382,33.9753,-8,69,-118.2778,11,1,0,2004-05,40,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,5,20400382,34.0063,59,38,-118.2108,11,1,0,2004-05,18,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,17,20400382,33.8423,154,202,-118.1158,9,1,0,2004-05,30,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,21,20400382,33.7913,-71,253,-118.3408,9,1,0,2004-05,0,26,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,24,20400382,33.8243,136,220,-118.1338,8,1,0,2004-05,36,25,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,52,20400382,33.8323,-149,212,-118.4188,5,1,0,2004-05,33,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,65,20400382,33.8803,-223,164,-118.4928,4,1,0,2004-05,3,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,124,20400382,33.8533,-85,191,-118.3548,10,2,0,2004-05,13,20,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,163,20400382,33.7873,47,257,-118.2228,6,2,0,2004-05,6,26,0,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,209,20400382,33.8663,92,178,-118.1778,1,2,0,2004-05,18,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,240,20400382,33.8373,-151,207,-118.4208,10,3,0,2004-05,0,25,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,259,20400382,33.7913,-112,253,-118.3818,7,3,0,2004-05,41,27,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,293,20400382,34.0423,62,2,-118.2078,3,3,0,2004-05,37,6,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,308,20400382,33.9033,29,141,-118.2408,2,3,0,2004-05,19,14,0,2PT Field Goal,Center(C),Mid-Range,8-16 ft.,12/25/04,LAL vs. MIA,MIA
Driving Finger Roll Shot,Layup,316,20400382,34.0443,0,0,-118.2698,1,3,0,2004-05,33,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,322,20400382,33.8803,-105,164,-118.3748,0,3,0,2004-05,24,19,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,343,20400382,33.8353,-153,209,-118.4228,9,4,0,2004-05,54,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,351,20400382,33.9703,-44,74,-118.3138,9,4,0,2004-05,11,8,0,2PT Field Goal,Left Side(L),In The Paint (Non-RA),8-16 ft.,12/25/04,LAL vs. MIA,MIA
Jump Bank Shot,Jump Shot,378,20400382,33.9123,108,132,-118.1618,5,4,0,2004-05,42,17,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,386,20400382,33.8783,117,166,-118.1528,4,4,0,2004-05,44,20,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,12/25/04,LAL vs. MIA,MIA
Layup Shot,Layup,398,20400382,34.0443,0,0,-118.2698,3,4,0,2004-05,29,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,459,20400382,34.0393,-67,5,-118.3368,3,5,0,2004-05,50,6,0,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,473,20400382,33.7943,-89,250,-118.3588,2,5,0,2004-05,26,26,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,503,20400382,33.8203,-126,224,-118.3958,0,5,0,2004-05,0,25,0,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/25/04,LAL vs. MIA,MIA
Jump Shot,Jump Shot,27,20400407,33.8883,204,156,-118.0658,9,1,0,2004-05,16,25,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/04,LAL vs. TOR,TOR
Layup Shot,Layup,39,20400407,34.0443,0,0,-118.2698,8,1,0,2004-05,22,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Hook Bank Shot,Bank Shot,58,20400407,34.0133,-71,31,-118.3408,6,1,0,2004-05,24,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,86,20400407,33.8173,-5,227,-118.2748,3,1,0,2004-05,57,22,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/28/04,LAL vs. TOR,TOR
Driving Layup Shot,Layup,92,20400407,34.0443,0,0,-118.2698,3,1,0,2004-05,4,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,110,20400407,34.0033,-241,41,-118.5108,1,1,0,2004-05,55,24,1,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/28/04,LAL vs. TOR,TOR
Layup Shot,Layup,142,20400407,34.0443,0,0,-118.2698,10,2,0,2004-05,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Turnaround Jump Shot,Jump Shot,149,20400407,33.9863,43,58,-118.2268,9,2,0,2004-05,27,7,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Driving Layup Shot,Layup,174,20400407,34.0443,0,0,-118.2698,8,2,0,2004-05,20,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Reverse Layup Shot,Layup,187,20400407,34.0443,0,0,-118.2698,6,2,0,2004-05,35,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Driving Layup Shot,Layup,206,20400407,34.0443,0,0,-118.2698,4,2,0,2004-05,44,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,219,20400407,34.0393,-235,5,-118.5048,2,2,0,2004-05,51,23,0,3PT Field Goal,Left Side(L),Left Corner 3,24+ ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,244,20400407,33.7583,51,286,-118.2188,0,2,0,2004-05,5,29,1,3PT Field Goal,Center(C),Above the Break 3,24+ ft.,12/28/04,LAL vs. TOR,TOR
Running Jump Shot,Jump Shot,286,20400407,33.9983,15,46,-118.2548,7,3,0,2004-05,50,4,1,2PT Field Goal,Center(C),In The Paint (Non-RA),Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Reverse Layup Shot,Layup,333,20400407,34.0443,0,0,-118.2698,4,3,0,2004-05,36,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Jump Bank Shot,Jump Shot,340,20400407,33.9903,-107,54,-118.3768,3,3,0,2004-05,42,11,0,2PT Field Goal,Left Side(L),Mid-Range,8-16 ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,372,20400407,33.8843,-43,160,-118.3128,1,3,0,2004-05,13,16,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,12/28/04,LAL vs. TOR,TOR
Driving Layup Shot,Layup,375,20400407,34.0443,0,0,-118.2698,0,3,0,2004-05,39,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,380,20400407,33.8193,90,225,-118.1798,0,3,0,2004-05,2,24,0,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/04,LAL vs. TOR,TOR
Layup Shot,Layup,423,20400407,34.0443,0,0,-118.2698,8,4,0,2004-05,21,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Driving Dunk Shot,Dunk,426,20400407,34.0443,0,0,-118.2698,7,4,0,2004-05,52,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,443,20400407,33.8783,-186,166,-118.4558,5,4,0,2004-05,40,24,1,3PT Field Goal,Left Side Center(LC),Above the Break 3,24+ ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,459,20400407,33.8553,-112,189,-118.3818,4,4,0,2004-05,4,21,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,12/28/04,LAL vs. TOR,TOR
Running Layup Shot,Layup,483,20400407,34.0443,0,0,-118.2698,1,4,0,2004-05,53,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,12/28/04,LAL vs. TOR,TOR
Jump Shot,Jump Shot,498,20400407,33.8203,135,224,-118.1348,1,4,0,2004-05,1,26,1,3PT Field Goal,Right Side Center(RC),Above the Break 3,24+ ft.,12/28/04,LAL vs. TOR,TOR
Layup Shot,Layup,2,20400439,34.0443,0,0,-118.2698,11,1,0,2004-05,38,0,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/05,LAL vs. DEN,DEN
Jump Bank Shot,Jump Shot,31,20400439,33.9443,130,100,-118.1398,8,1,0,2004-05,40,16,1,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/2/05,LAL vs. DEN,DEN
Jump Shot,Jump Shot,39,20400439,33.8553,51,189,-118.2188,7,1,0,2004-05,37,19,0,2PT Field Goal,Center(C),Mid-Range,16-24 ft.,1/2/05,LAL vs. DEN,DEN
Jump Shot,Jump Shot,46,20400439,33.9473,128,97,-118.1418,6,1,0,2004-05,53,16,0,2PT Field Goal,Right Side Center(RC),Mid-Range,16-24 ft.,1/2/05,LAL vs. DEN,DEN
Fadeaway Jump Shot,Jump Shot,64,20400439,33.8983,-122,146,-118.3918,5,1,0,2004-05,53,19,1,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/2/05,LAL vs. DEN,DEN
Jump Shot,Jump Shot,85,20400439,33.9273,-140,117,-118.4098,4,1,0,2004-05,4,18,0,2PT Field Goal,Left Side Center(LC),Mid-Range,16-24 ft.,1/2/05,LAL vs. DEN,DEN
Dunk Shot,Dunk,152,20400439,34.0443,0,0,-118.2698,9,2,0,2004-05,47,0,0,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/05,LAL vs. DEN,DEN
Jump Bank Shot,Jump Shot,156,20400439,34.0133,-13,31,-118.2828,9,2,0,2004-05,30,3,1,2PT Field Goal,Center(C),Restricted Area,Less Than 8 ft.,1/2/05,LAL vs. DEN,DEN
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment