Frame 1
stop();
function openLink(obj, item) {
getURL ("http://www.box10.com", _blank);
}
function saveData() {
if (_root.score > 0) {
_root.scoreList.push({name:_root.name, score:_root.score});
_root.score = 0;
}
Cookies = SharedObject.getLocal("savedata");
Cookies.data.scoreList = _root.scoreList;
Cookies.data.loadable = true;
Cookies.flush();
loadData();
}
function loadData() {
Cookies = SharedObject.getLocal("savedata");
_root.scoreList = Cookies.data.scoreList;
_root.scoreList.sortOn("score", Array.DESCENDING | Array.NUMERIC);
_root.scoreList.splice(10, 1);
loadable = Cookies.data.loadable;
nama_var = "";
skor_var = "";
i = 0;
while (i < 10) {
nama_var = nama_var + (_root.scoreList[i].name + newline);
skor_var = skor_var + (_root.scoreList[i].score + newline);
i++;
}
}
stop();
var my_cm = new ContextMenu();
my_cm.hideBuiltInItems();
my_cm.customItems.push(new ContextMenuItem("Play more games by BOX10", openLink, true));
this.menu = my_cm;
level = 1;
levelMax = 1;
loadData();
if (!loadable) {
trace(scoreList);
_root.scoreList = new Array();
i = 0;
while (i < 11) {
if (i < 4) {
_root.scoreList.push({name:"CPU", score:(i * 2000) + 10000});
} else {
_root.scoreList.push({name:"CPU", score:(i * (1000 + random(200))) + 4000});
}
i++;
}
saveData();
}
Frame 3
stop();
Frame 5
nextFrame();
Frame 6
this.stop();
nextFrame();
Instance of Symbol 92 MovieClip in Frame 6
onClipEvent (load) {
var nPercentage = 0;
}
onClipEvent (enterFrame) {
if ((_parent.getBytesLoaded() > 1) && (_parent.getBytesTotal() > 1)) {
this.nPercentage = Math.floor((100 * _parent.getBytesLoaded()) / _parent.getBytesTotal());
this.mcStripe._xscale = nPercentage;
this.tP.text = String(nPercentage) + "%";
this.tP2.text = String(nPercentage) + "%";
if (nPercentage >= 100) {
this._parent.gotoAndStop("main");
}
}
}
Frame 7
nextFrame();
Instance of Symbol 504 MovieClip "mc_sloop" in Frame 8
onClipEvent (load) {
var soundControl = new Sound(this);
}
Instance of Symbol 506 MovieClip "mc_sloop_zast" in Frame 8
onClipEvent (load) {
this.gotoAndStop(2);
}
Instance of Symbol 517 MovieClip "btn_sound" in Frame 8
onClipEvent (load) {
if (this._parent.stopSoundFlag) {
this.gotoAndStop(2);
}
}
Frame 11
this.stop();
Instance of Symbol 147 MovieClip "mc_control" in Frame 11
onClipEvent (load) {
this._parent.initLevel();
}
onClipEvent (enterFrame) {
this._parent.processGame();
}
onClipEvent (keyDown) {
this._parent.keyPressed();
}
Frame 13
saveData();
loadData();
Symbol 9 Button
on (release) {
getURL ("http://www.box10.com/?utm_source=brandedgames&utm_medium=box10ATV2&utm_url=" + _root._url, "_blank");
}
Symbol 14 Button
on (release) {
getURL ("http://www.box10.com/?utm_source=brandedgames&utm_medium=box10ATV2&utm_url=" + _root._url, "_blank");
}
Symbol 49 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 23
_parent._parent.startGame();
Symbol 54 MovieClip Frame 100
stop();
_parent.logored.play();
Instance of Symbol 54 MovieClip in Symbol 55 MovieClip Frame 1
onClipEvent (enterFrame) {
frame = int((_root.getBytesLoaded() * 100) / _root.getBytesTotal());
if (frame > _currentframe) {
play();
} else {
stop();
}
}
Symbol 59 Button
on (release) {
_root.play();
}
Symbol 60 MovieClip Frame 9
function startGame() {
but._visible = true;
}
stop();
but._visible = false;
Symbol 782 MovieClip [__Packages.CParticleEngine] Frame 0
class CParticleEngine
{
var hit_mc, prevTime;
function CParticleEngine () {
}
function clear() {
while (p_array.pop() != undefined) {
}
while (w_array.pop() != undefined) {
}
while (c_array.pop() != undefined) {
}
}
function clearConstraints() {
while (c_array.pop() != undefined) {
}
}
function setHitMovie(hit_mc_) {
hit_mc = hit_mc_;
}
function addParticle(p) {
p_array.push(p);
}
function addWheel(wheel, p, maxSpeed, radius) {
wheel.init(p, maxSpeed, radius);
w_array.push(wheel);
}
function addSpringConstraint(p1, p2, koeffStiff1, koeffStiff2) {
var _local2 = new CSpringConstraint(p1, p2, koeffStiff1, koeffStiff2);
c_array.push(_local2);
}
function addPenetrationConstraint(p0, p1, p2) {
var _local2 = new CPenetrationConstraint(p0, p1, p2);
c_array.push(_local2);
}
function start() {
prevTime = getTimer();
}
function computeForces() {
var _local2;
var _local3 = p_array.length;
_local2 = 0;
while (_local2 < _local3) {
p_array[_local2].acc.x = 0;
p_array[_local2].acc.y = gravity * p_array[_local2].mass;
_local2++;
}
}
function clearForces() {
var _local4 = w_array.length;
var _local2;
var _local3;
_local2 = 0;
while (_local2 < _local4) {
_local3 = w_array[_local2];
_local3.addedAcc.x = (_local3.addedAcc.y = 0);
_local2++;
}
}
function applyManFrictions() {
var _local3 = w_array.length;
var _local2;
_local2 = 0;
while (_local2 < _local3) {
w_array[_local2].applyAddedAcc();
_local2++;
}
}
function verlet(dTime) {
var _local6 = 0.995;
var _local2;
var _local3 = p_array.length;
_local2 = 0;
while (_local2 < _local3) {
p_array[_local2].verlet(dTime, _local6);
_local2++;
}
_local3 = w_array.length;
var _local5 = 0;
if (!stopWheels) {
if (Key.isDown(CCarSynchronizer.BUTTON_DOWN)) {
_local5 = -0.6;
} else if (Key.isDown(CCarSynchronizer.BUTTON_UP)) {
_local5 = 1;
}
}
_local2 = 0;
while (_local2 < _local3) {
w_array[_local2].process(dTime, (w_array[_local2].maxAccSpeed * _local5) / 3.2, 0.99);
_local2++;
}
}
function checkCollisions() {
var _local2;
var _local3 = w_array.length;
_local2 = 0;
while (_local2 < _local3) {
w_array[_local2].checkCollision(hit_mc);
_local2++;
}
}
function checkConstraints(dTime) {
var _local2;
var _local3 = c_array.length;
_local2 = 0;
while (_local2 < _local3) {
c_array[_local2].resolve();
_local2++;
}
}
function process() {
var _local4 = getTimer();
var _local5 = (_local4 - prevTime) / 1000;
prevTime = _local4;
var _local2;
var _local3 = Math.min(Math.round(_local5 / t), maxSteps);
var _local6;
_local2 = 0;
while (_local2 < _local3) {
computeForces();
applyManFrictions();
verlet(t);
checkConstraints(t);
checkCollisions();
clearForces();
_local2++;
}
}
var p_array = new Array();
var w_array = new Array();
var c_array = new Array();
var t = 0.02;
var maxSteps = 2;
static var gravity = 3.15;
var stopWheels = false;
}
Symbol 783 MovieClip [__Packages.CParticle] Frame 0
class CParticle
{
var pos, prevPos, mass, acc, mc;
function CParticle (x_, y_, mass_) {
pos = new CVector2D(x_, y_);
prevPos = pos.duplicate();
mass = mass_;
acc = new CVector2D(0, 0);
mc = null;
}
function verlet(dTime, koeffDamp) {
var _local2 = pos.duplicate();
pos.x = pos.x + (((pos.x - prevPos.x) * koeffDamp) + (acc.x * dTime));
pos.y = pos.y + (((pos.y - prevPos.y) * koeffDamp) + (acc.y * dTime));
_local2.copyTo(prevPos);
if (mc != null) {
mc._x = pos.x;
mc._y = pos.y;
}
}
function getVelocityVector() {
return(new CVector2D(pos.x - prevPos.x, pos.y - prevPos.y));
}
}
Symbol 784 MovieClip [__Packages.CVector2D] Frame 0
class CVector2D
{
var x, y;
function CVector2D (x_, y_) {
x = x_;
y = y_;
}
function reinit(x_, y_) {
x = x_;
y = y_;
}
function getUgol() {
return(Math.atan2(y, x));
}
function duplicate() {
return(new CVector2D(x, y));
}
function copyTo(v) {
v.x = x;
v.y = y;
}
function minus(v) {
x = x - v.x;
y = y - v.y;
}
function minusNew(v) {
return(new CVector2D(x - v.x, y - v.y));
}
function normalize() {
var _local2 = Math.sqrt((x * x) + (y * y));
x = x / _local2;
y = y / _local2;
}
function reverseNew() {
return(new CVector2D(-x, -y));
}
function scalar(v) {
return((x * v.x) + (y * v.y));
}
function modul() {
return(Math.sqrt((x * x) + (y * y)));
}
function reflectFromNormal(n) {
var _local2 = Math.atan2(n.y, n.x);
rotate(-_local2);
x = -x;
rotate(_local2);
}
function rotate(u) {
var _local4 = x;
var _local3 = y;
x = (_local4 * Math.cos(u)) - (_local3 * Math.sin(u));
y = (_local4 * Math.sin(u)) + (_local3 * Math.cos(u));
}
function rotateNew(u) {
return(new CVector2D((x * Math.cos(u)) - (y * Math.sin(u)), (x * Math.sin(u)) + (y * Math.cos(u))));
}
function mult(k) {
x = x * k;
y = y * k;
}
function multNew(k) {
return(new CVector2D(x * k, y * k));
}
function plus(v) {
x = x + v.x;
y = y + v.y;
}
function plusNew(v) {
return(new CVector2D(x + v.x, y + v.y));
}
function getDistanceTo(p1, p2) {
var _local3 = p1.y - p2.y;
var _local2 = p2.x - p1.x;
var _local6 = (p1.x * (p2.y - p1.y)) - (p1.y * (p2.x - p1.x));
var _local5 = Math.sqrt((_local3 * _local3) + (_local2 * _local2));
_local3 = _local3 / _local5;
_local2 = _local2 / _local5;
_local6 = _local6 / _local5;
return(((_local3 * x) + (_local2 * y)) + _local6);
}
}
Symbol 785 MovieClip [__Packages.CWheel] Frame 0
class CWheel extends MovieClip
{
var particle, rad, maxAccSpeed, speed, accSpeed, rot, addedAcc, intersectionFlag, lastIntersPoint, lastN, hitPointArray, normalArray, hitArray, intersArray, lastYSpeed, mc, _x, _y, localToGlobal;
function CWheel () {
super();
}
function init(particle_, maxAccSpeed_, rad_) {
particle = particle_;
rad = rad_;
maxAccSpeed = maxAccSpeed_ * 4;
speed = 0;
accSpeed = 0;
rot = new CVector2D(1, 0);
addedAcc = new CVector2D(0, 0);
intersectionFlag = false;
lastIntersPoint = new CVector2D(0, 0);
lastN = new CVector2D(0, 0);
var _local2;
var _local3 = (Math.PI*2) / hitCount;
hitPointArray = new Array(hitCount);
normalArray = new Array(hitCount);
hitArray = new Array(hitCount);
intersArray = new Array();
_local2 = 0;
while (_local2 < hitCount) {
hitPointArray[_local2] = new CVector2D(Math.sin(_local3 * _local2) * rad, (-Math.cos(_local3 * _local2)) * rad);
normalArray[_local2] = hitPointArray[_local2].multNew(-1);
normalArray[_local2].normalize();
_local2++;
}
lastYSpeed = 0;
}
function process(dTime, acc, koeffDamp) {
accSpeed = Math.max(-maxAccSpeed, Math.min(maxAccSpeed, accSpeed + (acc * dTime)));
speed = Math.max((-maxSpeed) * dTime, Math.min((speed * koeffDamp) + accSpeed, maxSpeed * dTime));
rot.rotate(speed / rad);
mc._rotation = (Math.atan2(rot.y, rot.x) * 180) / Math.PI;
lastYSpeed = particle.pos.y - particle.prevPos.y;
}
function checkCollision(hit_mc) {
var _local2;
var _local7;
var _local8 = new CVector2D(0, 0);
var _local12 = false;
var _local3;
var _local6;
var _local14;
var _local15 = new CVector2D(particle.prevPos.x, particle.prevPos.y);
var _local4 = new CVector2D(0, 0);
var _local13;
_x = particle.pos.x;
_y = particle.pos.y;
_local13 = 0;
_local2 = 0;
while (_local2 < hitCount) {
hitPointArray[_local2].copyTo(_local8);
localToGlobal(_local8);
if ((hitArray[_local2] = hit_mc.hitTest(_local8.x, _local8.y, true))) {
_local12 = true;
_local3 = _local2;
_local13++;
}
_local2++;
}
if (_local13 == hitCount) {
particle.pos.x = particle.prevPos.x + ((particle.pos.x - particle.prevPos.x) * 0.3);
particle.pos.y = particle.prevPos.y + ((particle.pos.y - particle.prevPos.y) * 0.3);
_x = particle.pos.x;
_y = particle.pos.y;
return(undefined);
}
_local2 = 0;
if (_local12) {
while (true) {
_local2++;
if (_local2 == hitCount) {
_local2 = 0;
}
if (!hitArray[_local2]) {
_local3 = -1;
_local7 = 0;
while (_local7 < hitCount) {
_local2++;
if (_local2 == hitCount) {
_local2 = 0;
}
if (_local3 == -1) {
if (hitArray[_local2]) {
_local3 = _local2;
_local4.plus(normalArray[_local2]);
}
} else if (!hitArray[_local2]) {
_local6 = _local2 - 1;
if (_local6 < 0) {
_local6 = hitCount - 1;
}
intersArray.push({k1:_local3, k2:_local6});
_local3 = -1;
} else {
_local4.plus(normalArray[_local2]);
}
_local7++;
}
break;
}
}
var _local5 = new CVector2D(0, 0);
if (intersArray.length > 0) {
_local4.normalize();
if (intersectionFlag) {
_local4.x = _local4.x + lastN.x;
_local4.y = _local4.y + lastN.y;
_local4.x = _local4.x / 2;
_local4.y = _local4.y / 2;
}
var _local10;
var _local9;
_local14 = intersArray.length;
_local2 = 0;
while (_local2 < _local14) {
_local10 = intersArray.pop();
_local3 = _local10.k1;
_local6 = _local10.k2;
particle.pos.minusNew(particle.prevPos).copyTo(_local5);
if (_local4.scalar(_local5) < 0) {
_local9 = Math.atan2(_local4.y, _local4.x);
_local5.rotate(-_local9);
_local5.x = (-_local5.x) * koeffSpring;
_local5.rotate(_local9);
pushOut(_local3, _local6, hit_mc);
particle.prevPos.x = particle.pos.x - _local5.x;
particle.prevPos.y = particle.pos.y - _local5.y;
} else {
pushOut(_local3, _local6, hit_mc);
}
_local2++;
}
validateRotation(_local4, _local15);
intersectionFlag = true;
particle.pos.copyTo(lastIntersPoint);
_local4.copyTo(lastN);
}
} else if (intersectionFlag) {
validateRotation(lastN, _local15);
intersectionFlag = false;
}
_x = particle.pos.x;
_y = particle.pos.y;
}
function pushOut(k1, k2, hit_mc) {
var _local2;
if (k1 != k2) {
_local2 = normalArray[k1].plusNew(normalArray[k2]);
_local2.normalize();
var _local7 = new CVector2D(0, 0).getDistanceTo(hitPointArray[k1], hitPointArray[k2]);
_local7 = rad - Math.abs(_local7);
particle.pos.plus(_local2.multNew(_local7));
particle.prevPos.plus(_local2.multNew(_local7));
} else {
_local2 = normalArray[k1];
var _local6 = _local2.multNew(-rad);
var _local4 = new CVector2D(0, 0);
var _local5 = 0;
var _local3 = 0.03;
while (true) {
_local6.copyTo(_local4);
localToGlobal(_local4);
if (hit_mc.hitTest(_local4.x, _local4.y, true)) {
_local5++;
_x = (particle.pos.x = particle.pos.x + (_local2.x * _local3));
_y = (particle.pos.y = particle.pos.y + (_local2.y * _local3));
} else {
_local5--;
particle.pos.x = particle.pos.x - (_local2.x * _local3);
particle.pos.y = particle.pos.y - (_local2.y * _local3);
particle.prevPos.plus(_local2.multNew(_local3 * _local5));
break;
}
}
}
}
function validateRotation(n, oldPos) {
if ((!intersectionFlag) && (Math.abs(accSpeed) > 0.01)) {
if (Math.abs(accSpeed) < ((maxAccSpeed * 0.02) / 2)) {
accSpeed = 0;
} else if (accSpeed > 0) {
accSpeed = maxAccSpeed * 0.02;
} else {
accSpeed = (-maxAccSpeed) * 0.02;
}
}
var _local3 = new CVector2D(-n.y, n.x);
var _local6 = particle.pos.minusNew(oldPos);
var _local5 = Math.atan2(_local3.y, _local3.x);
var _local2 = _local6.rotateNew(-_local5);
speed = _local2.x + accSpeed;
_local2.y = 0;
_local2.rotate(_local5);
var _local4 = 1 - koeffSlip;
particle.pos.x = (particle.pos.x + ((_local3.x * accSpeed) * _local4)) - ((1 - koeffFriction) * _local2.x);
particle.pos.y = (particle.pos.y + ((_local3.y * accSpeed) * _local4)) - ((1 - koeffFriction) * _local2.y);
accSpeed = accSpeed * koeffSlip;
}
function applyAddedAcc() {
particle.acc.x = particle.acc.x + (addedAcc.x * particle.mass);
particle.acc.y = particle.acc.y + (addedAcc.y * particle.mass);
}
function turnTo(turnDir, force) {
particle.prevPos.x = particle.pos.x - (turnDir.x * force);
particle.prevPos.x = particle.pos.x - (turnDir.x * force);
koeffSpring = 0.9;
}
var maxSpeed = 180;
var koeffSpring = 0.03;
var koeffSlip = 0.15;
var koeffFriction = 0.97;
var hitCount = 16;
}
Symbol 786 MovieClip [__Packages.CSpringConstraint] Frame 0
class CSpringConstraint
{
var p1, p2, koeffStiffPress, koeffStiffStretch, relaxLen;
function CSpringConstraint (p1_, p2_, koeffStiffPress_, koeffStiffStretch_) {
p1 = p1_;
p2 = p2_;
koeffStiffPress = koeffStiffPress_;
koeffStiffStretch = koeffStiffStretch_;
var _local2 = new CVector2D(p1.pos.x - p2.pos.x, p1.pos.y - p2.pos.y);
relaxLen = _local2.modul();
}
function resolve() {
var _local2 = new CVector2D(p1.pos.x - p2.pos.x, p1.pos.y - p2.pos.y);
var _local4 = _local2.modul();
var _local6 = (_local4 - relaxLen) / _local4;
var _local5;
if (_local4 > relaxLen) {
_local5 = koeffStiffStretch;
} else {
_local5 = koeffStiffPress;
}
var _local3 = (_local6 * _local5) / (p1.mass + p2.mass);
p1.pos.x = p1.pos.x - ((_local2.x * p1.mass) * _local3);
p1.pos.y = p1.pos.y - ((_local2.y * p1.mass) * _local3);
p2.pos.x = p2.pos.x + ((_local2.x * p2.mass) * _local3);
p2.pos.y = p2.pos.y + ((_local2.y * p2.mass) * _local3);
}
}
Symbol 787 MovieClip [__Packages.CPenetrationConstraint] Frame 0
class CPenetrationConstraint
{
var p0, p1, p2, sign;
function CPenetrationConstraint (p0_, p1_, p2_) {
p0 = p0_;
p1 = p1_;
p2 = p2_;
sign = p0.pos.getDistanceTo(p1.pos, p2.pos);
if (sign < 0) {
sign = -1;
} else {
sign = 1;
}
}
function resolve() {
var _local3;
var _local2;
_local3 = p0.pos.getDistanceTo(p1.pos, p2.pos);
if ((sign * _local3) <= 2) {
_local2 = new CVector2D(p2.pos.x, p2.pos.y);
_local2.minus(p1.pos);
_local2.normalize();
_local2.rotate((Math.PI/2) * sign);
_local2.mult(Math.abs(_local3 + 1));
p1.pos.minus(_local2);
}
}
}
Symbol 788 MovieClip [__Packages.CCarSynchronizer] Frame 0
class CCarSynchronizer
{
var koeffSpring, carOldPos, boomCounter, downDamage, upDamage, healthIndicator, mc_back_wheel, mc_forward_wheel, mc_car, mc_back_dark, mc_forward_dark, p_wl, p_wr, p_ld, p_rd, smokeFrameCounter, crushFrameCounter, state;
function CCarSynchronizer () {
koeffSpring = 0.5;
carOldPos = new CVector2D(0, 0);
boomCounter = 0;
downDamage = 1;
upDamage = 8;
}
function setHealthIndicator(healthIndicator_) {
healthIndicator = healthIndicator_;
healthIndicator.setMaxValue(MAX_HEALTH);
}
function init(mc_container, sX, sY, engine) {
var _local2 = {x:0, y:0};
mc_back_wheel = CWheel(mc_container.attachMovie("lib_wheel", "back_w", 3));
mc_forward_wheel = CWheel(mc_container.attachMovie("lib_wheel", "forward_w", 4));
mc_car = mc_container.attachMovie("lib_bike_body", "body", 2);
mc_back_dark = mc_container.attachMovie("lib_wheel_dark", "wdb1", 0);
mc_forward_dark = mc_container.attachMovie("lib_wheel_dark", "wdb2", 1);
mc_car._x = sX;
mc_car._y = sY;
carOldPos.reinit(mc_car._x, mc_car._y);
_local2.x = mc_car.mc.mc_p_wl._x;
_local2.y = mc_car.mc.mc_p_wl._y;
mc_car.mc.localToGlobal(_local2);
mc_car._parent.globalToLocal(_local2);
mc_back_wheel._x = _local2.x;
mc_back_wheel._y = _local2.y;
p_wl = new CParticle(_local2.x, _local2.y, 3);
engine.addParticle(p_wl);
engine.addWheel(mc_back_wheel, p_wl, 28.5, 15);
_local2.x = mc_car.mc.mc_p_wr._x;
_local2.y = mc_car.mc.mc_p_wr._y;
mc_car.mc.localToGlobal(_local2);
mc_car._parent.globalToLocal(_local2);
mc_forward_wheel._x = _local2.x;
mc_forward_wheel._y = _local2.y;
p_wr = new CParticle(_local2.x, _local2.y, 3);
engine.addParticle(p_wr);
engine.addWheel(mc_forward_wheel, p_wr, 28.5, 15);
_local2.x = mc_car.mc.mc_p_ld._x;
_local2.y = mc_car.mc.mc_p_ld._y;
mc_car.mc.localToGlobal(_local2);
mc_car._parent.globalToLocal(_local2);
p_ld = new CParticle(_local2.x, _local2.y, 3);
engine.addParticle(p_ld);
_local2.x = mc_car.mc.mc_p_rd._x;
_local2.y = mc_car.mc.mc_p_rd._y;
mc_car.mc.localToGlobal(_local2);
mc_car._parent.globalToLocal(_local2);
p_rd = new CParticle(_local2.x, _local2.y, 3);
engine.addParticle(p_rd);
engine.addSpringConstraint(p_wr, p_wl, 0.4, 0.4);
engine.addSpringConstraint(p_ld, p_rd, 1, 1);
engine.addSpringConstraint(p_wr, p_ld, 0.5, 0.5);
engine.addSpringConstraint(p_wl, p_rd, 0.5, 0.5);
engine.addSpringConstraint(p_wr, p_rd, 0.2, 0.1);
engine.addSpringConstraint(p_wl, p_ld, 0.2, 0.1);
engine.addPenetrationConstraint(p_wr, p_rd, p_ld);
engine.addPenetrationConstraint(p_wl, p_ld, p_rd);
mc_back_dark._x = mc_back_wheel._x + DARK_DX;
mc_back_dark._y = mc_back_wheel._y + DARK_DY;
mc_forward_dark._x = mc_forward_wheel._x + DARK_DX;
mc_forward_dark._y = mc_forward_wheel._y + DARK_DY;
smokeFrameCounter = 0;
crushFrameCounter = 0;
state = ST_GO;
}
function process() {
var _local4;
var _local3;
var _local2;
if (state == ST_GO) {
_local4 = new CVector2D(p_wr.pos.x - p_wl.pos.x, p_wr.pos.y - p_wl.pos.y);
mc_car._rotation = (Math.atan2(_local4.y, _local4.x) * 180) / Math.PI;
_local3 = new CVector2D(mc_car.mc.mc_p_ld._x, mc_car.mc.mc_p_ld._y);
_local2 = new CVector2D(mc_car.mc.mc_p_rd._x, mc_car.mc.mc_p_rd._y);
mc_car.mc.localToGlobal(_local3);
mc_car._parent.globalToLocal(_local3);
mc_car.mc.localToGlobal(_local2);
mc_car._parent.globalToLocal(_local2);
mc_car._x = mc_car._x + ((((p_ld.pos.x - _local3.x) + p_rd.pos.x) - _local2.x) / 2);
mc_car._y = mc_car._y + ((((p_ld.pos.y - _local3.y) + p_rd.pos.y) - _local2.y) / 2);
_local3.x = mc_back_wheel._x;
_local3.y = mc_back_wheel._y;
mc_back_wheel._parent.localToGlobal(_local3);
mc_car.mc.globalToLocal(_local3);
_local2.x = mc_forward_wheel._x;
_local2.y = mc_forward_wheel._y;
mc_forward_wheel._parent.localToGlobal(_local2);
mc_car.mc.globalToLocal(_local2);
mc_car.mc.mc_s_ld._rotation = (mc_car.mc.mc_s_lu._rotation = (Math.atan2((_local3.y + 1.2) - mc_car.mc.mc_s_lu._y, _local3.x - mc_car.mc.mc_s_lu._x) * 180) / Math.PI);
mc_car.mc.mc_s_rd._rotation = (mc_car.mc.mc_s_ru._rotation = (Math.atan2((_local2.y + 1.2) - mc_car.mc.mc_s_ru._y, _local2.x - mc_car.mc.mc_s_ru._x) * 180) / Math.PI);
checkAddSmoke();
} else if (state == ST_CRUSH) {
crushFrameCounter++;
}
mc_back_dark._x = mc_back_wheel._x + 4;
mc_back_dark._y = mc_back_wheel._y - 1;
mc_back_dark._rotation = mc_back_wheel.mc.mc_rim._rotation;
mc_forward_dark._x = mc_forward_wheel._x + 4;
mc_forward_dark._y = mc_forward_wheel._y - 1;
mc_forward_dark._rotation = mc_forward_wheel.mc.mc_rim._rotation;
}
function checkAddSmoke() {
var _local2;
smokeFrameCounter++;
if (smokeFrameCounter >= FRAMES_BETWEEN_SMOKE) {
_local2 = {x:mc_car.mc.mc_smoke._x, y:mc_car.mc.mc_smoke._y};
mc_car.mc.localToGlobal(_local2);
mc_car._parent.globalToLocal(_local2);
CGP.addSmoke((_local2.x - 5) + (10 * Math.random()), (_local2.y - 5) + (10 * Math.random()));
smokeFrameCounter = 0;
}
}
function toCrush(engine) {
var _local2 = new CVector2D(0, 0);
mc_car.gotoAndPlay("crush");
mc_car.mc.gotoAndStop(2);
engine.clearConstraints();
engine.stopWheels = true;
_local2.reinit(mc_forward_wheel._x - mc_car._x, mc_forward_wheel._y - mc_car._y);
_local2.normalize();
mc_forward_wheel.turnTo(_local2, 10);
_local2.reinit(mc_back_wheel._x - mc_car._x, mc_back_wheel._y - mc_car._y);
_local2.normalize();
mc_back_wheel.turnTo(_local2, 10);
state = ST_CRUSH;
}
function isCrushed() {
return(state == ST_CRUSH);
}
function isFullCrushed() {
return((state == ST_CRUSH) && (crushFrameCounter >= FRAMES_FOR_CRUSH));
}
function checkHitWithGround(levelHit) {
var _local8 = 7;
var _local3;
var _local5;
var _local4 = new CVector2D(0, 0);
var _local7 = false;
var _local6 = false;
var _local2;
if (state != ST_GO) {
return(undefined);
}
_local3 = 1;
while (_local3 <= _local8) {
_local5 = mc_car.mc["mc_p" + _local3];
_local4.x = _local5._x;
_local4.y = _local5._y;
mc_car.mc.localToGlobal(_local4);
if (levelHit.hitTest(_local4.x, _local4.y, true)) {
_local2 = mc_car.mc.attachMovie("lib_sparkle", "" + boomCounter, boomCounter);
_local2._x = (_local5._x + 4) - (8 * Math.random());
_local2._y = (_local5._y + 4) - (8 * Math.random());
_local2._rotation = 180 * Math.random();
_local2._xscale = (_local2._yscale = 90 + (20 * Math.random()));
boomCounter++;
if (boomCounter > 1000) {
boomCounter = 0;
}
if ((_local3 < 3) || (_local3 > 4)) {
_local7 = true;
} else {
_local6 = true;
}
}
_local3++;
}
if (_local6) {
addHealth(-upDamage);
}
if (_local7) {
addHealth(-downDamage);
}
}
function addHealth(health) {
healthIndicator.addValue(health);
}
function getHealth() {
return(healthIndicator.getValue());
}
function toLeft() {
var _local3;
var _local2 = calcCarNVector();
_local3 = (Math.abs(_local2.y) * 0.4) + 0.6;
_local3 = _local3 * 2.5;
if (_local2.y > -0.4) {
mc_forward_wheel.addedAcc.x = mc_forward_wheel.addedAcc.x - ((_local2.x * CParticleEngine.gravity) * _local3);
mc_forward_wheel.addedAcc.y = mc_forward_wheel.addedAcc.y - ((_local2.y * CParticleEngine.gravity) * _local3);
mc_back_wheel.addedAcc.x = mc_back_wheel.addedAcc.x + (((_local2.x * CParticleEngine.gravity) * _local3) * 1.2);
mc_back_wheel.addedAcc.y = mc_back_wheel.addedAcc.y + (((_local2.y * CParticleEngine.gravity) * _local3) * 1.2);
}
}
function toRight() {
var _local3;
var _local2 = calcCarNVector();
_local3 = (Math.abs(_local2.y) * 0.4) + 0.6;
_local3 = _local3 * 2.5;
if (_local2.y > -0.4) {
mc_forward_wheel.addedAcc.x = mc_forward_wheel.addedAcc.x + (((_local2.x * CParticleEngine.gravity) * _local3) * 1.2);
mc_forward_wheel.addedAcc.y = mc_forward_wheel.addedAcc.y + (((_local2.y * CParticleEngine.gravity) * _local3) * 1.2);
mc_back_wheel.addedAcc.x = mc_back_wheel.addedAcc.x - ((_local2.x * CParticleEngine.gravity) * _local3);
mc_back_wheel.addedAcc.y = mc_back_wheel.addedAcc.y - ((_local2.y * CParticleEngine.gravity) * _local3);
}
}
function calcCarNVector() {
var _local2;
_local2 = mc_forward_wheel.particle.pos.minusNew(mc_back_wheel.particle.pos);
_local2.normalize();
var _local3;
_local3 = _local2.x;
_local2.x = -_local2.y;
_local2.y = _local3;
return(_local2);
}
static var BUTTON_LEFT = 37;
static var BUTTON_RIGHT = 39;
static var BUTTON_UP = 38;
static var BUTTON_DOWN = 40;
static var DARK_DX = 4;
static var DARK_DY = -1;
static var MAX_HEALTH = 100;
static var ST_GO = 1;
static var ST_CRUSH = 2;
static var FRAMES_BETWEEN_SMOKE = 2;
static var FRAMES_FOR_CRUSH = 48;
}
Symbol 789 MovieClip [__Packages.CIndicator] Frame 0
class CIndicator extends MovieClip
{
var maxValue, curValue, gotoAndStop;
function CIndicator () {
super();
maxValue = 100;
curValue = maxValue;
}
function setMaxValue(val) {
maxValue = val;
}
function getMaxValue() {
return(maxValue);
}
function setValue(val) {
curValue = val;
validateCurValue();
updateView();
}
function addValue(val) {
curValue = curValue + val;
validateCurValue();
updateView();
}
function getValue() {
return(curValue);
}
function setPercent(perc) {
curValue = (perc * maxValue) / 100;
updateView();
}
function getPercent() {
return((100 * curValue) / maxValue);
}
function isEmpty() {
return(curValue <= 0);
}
function isFull() {
return(curValue >= maxValue);
}
function updateView() {
gotoAndStop(Math.round((100 * curValue) / maxValue));
}
static function updateViewFor(mc, val, maxVal) {
trace(mc);
mc.gotoAndStop(Math.round((100 * val) / maxVal));
}
function validateCurValue() {
if (curValue > maxValue) {
curValue = maxValue;
} else if (curValue < 0) {
curValue = 0;
}
}
}
Symbol 790 MovieClip [__Packages.CGP] Frame 0
class CGP
{
static var mc_root, uid, objectsCounter, curLevelTask, curLevelTaskTime, curLevelTaskValue, curLevelDistance, mc_level, crumpleCount, crushCount, greenBonusesCount, redBonusesCount, firstFinishTruck, mc_panel, enemyTruck, carSync, mc_progressInd;
function CGP () {
}
static function createSounds() {
var _local1;
var _local3 = soundsArray.length;
var _local2;
_local1 = 0;
while (_local1 < _local3) {
_local2 = mc_root.mc_sounds.createEmptyMovieClip(soundsArray[_local1].name, _local1);
_local2.sound = new Sound(_local2);
_local2.sound.attachSound(soundsArray[_local1].name);
_local1++;
}
}
static function playSound(id, vol) {
soundsArray[id].go = true;
soundsArray[id].vol = vol;
}
static function processSounds() {
var _local1;
var _local2 = soundsArray.length;
var _local4 = -1;
var _local3 = 10;
_local1 = 0;
while (_local1 < _local2) {
if (soundsArray[_local1].go) {
if (soundsArray[_local1].vol > _local3) {
realPlaySound(_local1);
break;
}
}
_local1++;
}
resetSounds();
}
static function resetSounds() {
var _local1;
var _local2 = soundsArray.length;
_local1 = 0;
while (_local1 < _local2) {
soundsArray[_local1].go = false;
_local1++;
}
}
static function realPlaySound(id) {
var _local1 = soundsArray[id].name;
if (mc_root.stopSoundFlag) {
return(undefined);
}
mc_root.mc_sounds[_local1].sound.setVolume(soundsArray[id].vol);
mc_root.mc_sounds[_local1].sound.start(0, 0);
}
static function init() {
uid = 0;
objectsCounter = 0;
createSounds();
}
static function getUID() {
uid++;
return(uid);
}
static function setLevelTasks() {
curLevelTask = levelTasks[0][IDX_TASK];
curLevelTaskTime = levelTasks[0][IDX_TASK_TIME];
curLevelTaskValue = levelTasks[0][IDX_TASK_VALUE];
curLevelDistance = mc_level.mc.mc_finish._x - mc_level.mc.mc_start._x;
crumpleCount = (crushCount = 0);
greenBonusesCount = (redBonusesCount = 0);
firstFinishTruck = FIRST_NONE;
}
static function updateLevelProgress() {
switch (curLevelTask) {
case TASK_DRIVE_LEVEL :
break;
case TASK_DRIVE_FOR_TIME :
break;
case TASK_CRUSH :
mc_panel.txtCars.text = (crushCount + "/") + curLevelTaskValue;
if (crushCount < curLevelTaskValue) {
mc_panel.txtCars.textColor = 16777215 /* 0xFFFFFF */;
} else {
mc_panel.txtCars.textColor = 65280;
}
break;
case TASK_GET_BONUSES :
mc_panel.txtBonuses.text = ((greenBonusesCount - redBonusesCount) + "/") + curLevelTaskValue;
if ((greenBonusesCount - redBonusesCount) < curLevelTaskValue) {
mc_panel.txtBonuses.textColor = 16777215 /* 0xFFFFFF */;
} else {
mc_panel.txtBonuses.textColor = 65280;
}
break;
case TASK_OVERTAKE_ENEMY :
if (firstFinishTruck != FIRST_NONE) {
break;
}
if (enemyTruck.mc_car._x >= mc_level.mc.mc_finish._x) {
firstFinishTruck = FIRST_COMPUTER;
} else {
if (carSync.mc_car._x < mc_level.mc.mc_finish._x) {
break;
}
firstFinishTruck = FIRST_PLAYER;
}
}
mc_progressInd.setPercent((100 * (carSync.mc_car._x - mc_level.mc.mc_start._x)) / curLevelDistance);
}
static function isHitWithCar(mc) {
var _local1;
if (Math.abs(carSync.mc_car._x - mc._x) > CAR_HIT_RADIUS) {
return(false);
}
_local1 = {x:mc._x, y:mc._y};
mc._parent.localToGlobal(_local1);
return(carSync.mc_car.mc.mc_hit.hitTest(_local1.x, _local1.y, true));
}
static function repairCar() {
var _local1 = 20;
carSync.addHealth(_local1);
}
static function damageCar(x, y) {
var _local1 = -20;
carSync.addHealth(_local1);
addBoom(x, y, 60);
}
static function addGreenBonus() {
greenBonusesCount++;
}
static function addRedBonus() {
redBonusesCount++;
}
static function addCrumple() {
crumpleCount++;
}
static function addCrush() {
crushCount++;
}
static function addSmoke(x, y) {
var _local1;
_local1 = mc_level.mc.mc_objects.attachMovie(libSmokeName, "" + objectsCounter, objectsCounter);
_local1._x = x;
_local1._y = y;
_local1._rotation = (-1 + (2 * Math.random())) * 10;
objectsCounter++;
if (objectsCounter > 1000) {
objectsCounter = 0;
}
}
static function addBoom(x, y, scale) {
var _local1;
_local1 = mc_level.mc.mc_objects.attachMovie(libBoomName, "" + objectsCounter, objectsCounter);
_local1._x = x;
_local1._y = y;
_local1._xscale = (_local1._yscale = scale);
objectsCounter++;
if (objectsCounter > 1000) {
objectsCounter = 0;
}
}
static var libSmokeName = "lib_smoke";
static var libBoomName = "lib_boom";
static var CAR_HIT_RADIUS = 110;
static var TASK_DRIVE_LEVEL = 1;
static var TASK_DRIVE_FOR_TIME = 2;
static var TASK_CRUSH = 3;
static var TASK_GET_BONUSES = 4;
static var TASK_OVERTAKE_ENEMY = 5;
static var MAX_LEVEL_NUM = 20;
static var levelTasks = [[TASK_DRIVE_LEVEL, 0, 0], [TASK_DRIVE_FOR_TIME, 60000, 0], [TASK_CRUSH, 120000, 15], [TASK_GET_BONUSES, 120000, 15], [TASK_DRIVE_FOR_TIME, 60000, 0], [TASK_OVERTAKE_ENEMY, 0, 0]];
static var IDX_TASK = 0;
static var IDX_TASK_TIME = 1;
static var IDX_TASK_VALUE = 2;
static var FIRST_NONE = 1;
static var FIRST_PLAYER = 2;
static var FIRST_COMPUTER = 3;
static var scrBonus = 10;
static var scrCrush = 10;
static var scrHealth = 2;
static var scrTime = 400;
static var scrPlusTime = 12;
static var scrMinusTime = 4;
static var soundsArray = [{name:"snd_expl", vol:100, go:false}, {name:"snd_crush", vol:100, go:false}, {name:"snd_crush_small", vol:100, go:false}, {name:"snd_expl_small", vol:100, go:false}, {name:"snd_bonus_repair", vol:100, go:false}, {name:"snd_bonus_green", vol:100, go:false}, {name:"snd_bonus_red", vol:100, go:false}];
static var snd_expl = 0;
static var snd_crush = 1;
static var snd_crush_small = 2;
static var snd_expl_small = 3;
static var snd_bonus_repair = 4;
static var snd_bonus_green = 5;
static var snd_bonus_red = 6;
}
Symbol 791 MovieClip [__Packages.CEnemyTruck] Frame 0
class CEnemyTruck
{
var writeArray, mc_car, mc_back_wheel, mc_forward_wheel, mc_back_dark, mc_forward_dark, state, goArray, goLen, curTime, curGoPos;
function CEnemyTruck () {
writeArray = new Array();
}
function init(mc_car_, mc_back_wheel_, mc_forward_wheel_, mc_back_dark_, mc_forward_dark_) {
mc_car = mc_car_;
mc_back_wheel = mc_back_wheel_;
mc_forward_wheel = mc_forward_wheel_;
mc_back_dark = mc_back_dark_;
mc_forward_dark = mc_forward_dark_;
state = ST_NONE;
}
function setGoArray(goArray_) {
goArray = goArray_;
goLen = goArray.length;
}
function startWrite() {
state = ST_WRITE;
curTime = 0;
delete writeArray;
writeArray = new Array();
savePosForTime(0);
}
function startGo() {
state = ST_GO;
curGoPos = 0;
curTime = 0;
synchronizePos(goArray[curGoPos][ID_CAR_X], goArray[curGoPos][ID_CAR_Y], goArray[curGoPos][ID_CAR_R], goArray[curGoPos][ID_F_WHEEL_X], goArray[curGoPos][ID_F_WHEEL_Y], goArray[curGoPos][ID_F_WHEEL_R], goArray[curGoPos][ID_B_WHEEL_X], goArray[curGoPos][ID_B_WHEEL_Y], goArray[curGoPos][ID_B_WHEEL_R]);
}
function stopProcess() {
state = ST_NONE;
}
function process(dTime) {
var _local2;
if (dTime > MAX_DTIME) {
dTime = MAX_DTIME;
}
if (state == ST_WRITE) {
curTime = curTime + dTime;
savePosForTime(curTime);
} else if (state == ST_GO) {
dTime = dTime * SPEED_COEFF;
curTime = curTime + dTime;
while ((curGoPos < goLen) && (goArray[curGoPos][ID_TIME] < curTime)) {
curGoPos++;
}
if (curGoPos == goLen) {
curGoPos--;
synchronizePos(goArray[curGoPos][ID_CAR_X], goArray[curGoPos][ID_CAR_Y], goArray[curGoPos][ID_CAR_R], goArray[curGoPos][ID_F_WHEEL_X], goArray[curGoPos][ID_F_WHEEL_Y], goArray[curGoPos][ID_F_WHEEL_R], goArray[curGoPos][ID_B_WHEEL_X], goArray[curGoPos][ID_B_WHEEL_Y], goArray[curGoPos][ID_B_WHEEL_R]);
stopProcess();
return(undefined);
}
_local2 = (curTime - goArray[curGoPos - 1][ID_TIME]) / (goArray[curGoPos][ID_TIME] - goArray[curGoPos - 1][ID_TIME]);
synchronizePos(goArray[curGoPos - 1][ID_CAR_X] + ((goArray[curGoPos][ID_CAR_X] - goArray[curGoPos - 1][ID_CAR_X]) * _local2), goArray[curGoPos - 1][ID_CAR_Y] + ((goArray[curGoPos][ID_CAR_Y] - goArray[curGoPos - 1][ID_CAR_Y]) * _local2), goArray[curGoPos - 1][ID_CAR_R] + ((goArray[curGoPos][ID_CAR_R] - goArray[curGoPos - 1][ID_CAR_R]) * _local2), goArray[curGoPos - 1][ID_F_WHEEL_X] + ((goArray[curGoPos][ID_F_WHEEL_X] - goArray[curGoPos - 1][ID_F_WHEEL_X]) * _local2), goArray[curGoPos - 1][ID_F_WHEEL_Y] + ((goArray[curGoPos][ID_F_WHEEL_Y] - goArray[curGoPos - 1][ID_F_WHEEL_Y]) * _local2), goArray[curGoPos - 1][ID_F_WHEEL_R] + ((goArray[curGoPos][ID_F_WHEEL_R] - goArray[curGoPos - 1][ID_F_WHEEL_R]) * _local2), goArray[curGoPos - 1][ID_B_WHEEL_X] + ((goArray[curGoPos][ID_B_WHEEL_X] - goArray[curGoPos - 1][ID_B_WHEEL_X]) * _local2), goArray[curGoPos - 1][ID_B_WHEEL_Y] + ((goArray[curGoPos][ID_B_WHEEL_Y] - goArray[curGoPos - 1][ID_B_WHEEL_Y]) * _local2), goArray[curGoPos - 1][ID_B_WHEEL_R] + ((goArray[curGoPos][ID_B_WHEEL_R] - goArray[curGoPos - 1][ID_B_WHEEL_R]) * _local2));
}
}
function savePosForTime(t) {
writeArray.push([t, mc_car._x, mc_car._y, mc_car._rotation, mc_forward_wheel._x, mc_forward_wheel._y, mc_forward_wheel.mc.mc_rim._rotation, mc_back_wheel._x, mc_back_wheel._y, mc_back_wheel.mc.mc_rim._rotation]);
}
function printWriteResult() {
var _local3;
var _local2;
var _local5 = 10;
var _local6;
var _local4;
_local6 = writeArray.length;
_local3 = 0;
while (_local3 < _local6) {
_local4 = "[" + writeArray[_local3][0];
_local2 = 1;
while (_local2 < _local5) {
if (((_local2 == ID_CAR_R) || (_local2 == ID_F_WHEEL_R)) || (_local2 == ID_B_WHEEL_R)) {
_local4 = _local4 + (", " + (Math.round(writeArray[_local3][_local2] * 100) / 100));
} else {
_local4 = _local4 + (", " + writeArray[_local3][_local2]);
}
_local2++;
}
_local4 = _local4 + "],";
trace(_local4);
_local3++;
}
}
function synchronizePos(carX, carY, carR, fWheelX, fWheelY, fWheelR, bWheelX, bWheelY, bWheelR) {
mc_car._x = carX;
mc_car._y = carY;
mc_car._rotation = carR;
mc_forward_wheel._x = fWheelX;
mc_forward_wheel._y = fWheelY;
mc_forward_wheel.mc.mc_rim._rotation = fWheelR;
mc_back_wheel._x = bWheelX;
mc_back_wheel._y = bWheelY;
mc_back_wheel.mc.mc_rim._rotation = bWheelR;
mc_back_dark._x = mc_back_wheel._x + CCarSynchronizer.DARK_DX;
mc_back_dark._y = mc_back_wheel._y + CCarSynchronizer.DARK_DY;
mc_forward_dark._x = mc_forward_wheel._x + CCarSynchronizer.DARK_DX;
mc_forward_dark._y = mc_forward_wheel._y + CCarSynchronizer.DARK_DY;
}
static var MAX_DTIME = 80;
static var SPEED_COEFF = 1.05;
var ST_NONE = 0;
var ST_WRITE = 1;
var ST_GO = 2;
static var ID_TIME = 0;
static var ID_CAR_X = 1;
static var ID_CAR_Y = 2;
static var ID_CAR_R = 3;
static var ID_F_WHEEL_X = 4;
static var ID_F_WHEEL_Y = 5;
static var ID_F_WHEEL_R = 6;
static var ID_B_WHEEL_X = 7;
static var ID_B_WHEEL_Y = 8;
static var ID_B_WHEEL_R = 9;
}
Symbol 792 MovieClip [__Packages.CCamera] Frame 0
class CCamera
{
var targetMovie, levelMovie;
function CCamera () {
}
function init(targetMovie_, levelMovie_) {
targetMovie = targetMovie_;
levelMovie = levelMovie_;
process();
}
function process() {
var _local2 = {x:targetMovie._x + 40, y:targetMovie._y};
targetMovie._parent.localToGlobal(_local2);
levelMovie._parent.globalToLocal(_local2);
levelMovie._x = levelMovie._x + (SCREEN_WIDTH2 - _local2.x);
levelMovie._y = levelMovie._y + (SCREEN_HEIGHT2 - _local2.y);
levelMovie._x = Math.round(levelMovie._x);
levelMovie._y = Math.round(levelMovie._y);
if (levelMovie._x > 0) {
levelMovie._x = 0;
} else if ((levelMovie._x + levelMovie._width) < SCREEN_WIDTH) {
levelMovie._x = SCREEN_WIDTH - levelMovie._width;
}
if (levelMovie._y < 0) {
levelMovie._y = 0;
}
}
static var SCREEN_WIDTH = 500;
static var SCREEN_HEIGHT = 350;
static var SCREEN_WIDTH2 = SCREEN_WIDTH / 2;
static var SCREEN_HEIGHT2 = SCREEN_HEIGHT / 2;
}
Symbol 793 MovieClip [__Packages.CBack] Frame 0
class CBack
{
var mc1, mc2, scaleFactor;
function CBack () {
}
function init(mc1_, mc2_, scaleFactor_) {
mc1 = mc1_;
mc2 = mc2_;
scaleFactor = scaleFactor_;
}
function process(levelX) {
levelX = Math.abs(Math.round(levelX) / scaleFactor) % mc1._width;
mc1._x = -levelX;
mc2._x = (mc1._x + mc1._width) - 1;
}
static var SCREEN_WIDTH = 500;
}
Symbol 794 MovieClip [__Packages.CCrushObject] Frame 0
class CCrushObject extends MovieClip
{
var mc_hitArea, mc_miracle, crushSpeed, crumpleSpeed, crushFlag, state, onEnterFrame, miracleLibName, _x, _y, _xscale, _yscale, _rotation, play, stop;
function CCrushObject () {
super();
mc_hitArea._visible = false;
mc_miracle = null;
crushSpeed = 3;
crumpleSpeed = 0.8;
crushFlag = false;
state = ST_NOT_INIT;
onEnterFrame = process;
}
function process() {
if (state == ST_NOT_INIT) {
var _local2 = CGP.getUID();
mc_miracle = CGP.mc_levelHit.attachMovie(miracleLibName, "" + _local2, _local2);
mc_miracle._x = _x;
mc_miracle._y = _y;
mc_miracle._xscale = _xscale;
mc_miracle._yscale = _yscale;
mc_miracle._rotation = _rotation;
state = ST_READY;
}
if (state == ST_READY) {
if ((CGP.carSync.mc_back_wheel.lastYSpeed > crumpleSpeed) && (CGP.carSync.mc_back_wheel.mc_crush_test.hitTest(mc_hitArea))) {
crushFlag = CGP.carSync.mc_back_wheel.lastYSpeed >= crushSpeed;
play();
mc_miracle.play();
state = ST_PROCESS_ANIM;
} else if ((CGP.carSync.mc_forward_wheel.lastYSpeed > crumpleSpeed) && (CGP.carSync.mc_forward_wheel.mc_crush_test.hitTest(mc_hitArea))) {
crushFlag = CGP.carSync.mc_forward_wheel.lastYSpeed >= crushSpeed;
play();
mc_miracle.play();
state = ST_PROCESS_ANIM;
}
} else if (state == ST_CRUMPLED) {
if ((CGP.carSync.mc_back_wheel.lastYSpeed > crushSpeed) && (CGP.carSync.mc_back_wheel.mc_crush_test.hitTest(mc_hitArea))) {
play();
mc_miracle.play();
state = ST_PROCESS_ANIM;
} else if ((CGP.carSync.mc_forward_wheel.lastYSpeed > crushSpeed) && (CGP.carSync.mc_forward_wheel.mc_crush_test.hitTest(mc_hitArea))) {
play();
mc_miracle.play();
state = ST_PROCESS_ANIM;
}
}
}
function endCrumple() {
CGP.addCrumple();
if (!crushFlag) {
stop();
mc_miracle.stop();
state = ST_CRUMPLED;
}
}
function endCrush() {
CGP.addCrush();
stop();
mc_miracle.stop();
state = ST_CRUSHED;
delete onEnterFrame;
}
static var ST_NOT_INIT = 0;
static var ST_READY = 1;
static var ST_CRUMPLED = 2;
static var ST_CRUSHED = 3;
static var ST_PROCESS_ANIM = 4;
}
Symbol 795 MovieClip [__Packages.CBonus] Frame 0
class CBonus extends MovieClip
{
var state, curScale, _xscale, _yscale, swapDepths, removeMovieClip;
function CBonus () {
super();
state = ST_STAY;
curScale = 75;
}
function applyBonus() {
}
function onEnterFrame() {
if ((state == ST_STAY) && (CGP.isHitWithCar(this))) {
applyBonus();
toDisappear();
} else if (state == ST_DISAPPEAR) {
curScale = curScale - disappearSpeed;
_xscale = (_yscale = curScale);
if (curScale <= disappearSpeed) {
disable();
}
}
}
function toDisappear() {
state = ST_DISAPPEAR;
}
function disable() {
swapDepths(10000);
removeMovieClip();
}
static var ST_STAY = 1;
static var ST_DISAPPEAR = 2;
static var disappearSpeed = 5;
}
Symbol 796 MovieClip [__Packages.CBonusRepair] Frame 0
class CBonusRepair extends CBonus
{
function CBonusRepair () {
super();
}
function applyBonus() {
CGP.repairCar();
CGP.playSound(CGP.snd_bonus_repair, 100);
}
}
Symbol 797 MovieClip [__Packages.CBonusTakeAwayScores] Frame 0
class CBonusTakeAwayScores extends CBonus
{
function CBonusTakeAwayScores () {
super();
}
function applyBonus() {
CGP.addRedBonus();
CGP.playSound(CGP.snd_bonus_red, 100);
}
}
Symbol 798 MovieClip [__Packages.CBonusAddScores] Frame 0
class CBonusAddScores extends CBonus
{
function CBonusAddScores () {
super();
}
function applyBonus() {
CGP.addGreenBonus();
CGP.playSound(CGP.snd_bonus_green, 100);
}
}
Symbol 799 MovieClip [__Packages.CBonusDamage] Frame 0
class CBonusDamage extends CBonus
{
var _x, _y, disable;
function CBonusDamage () {
super();
}
function applyBonus() {
CGP.damageCar(_x, _y);
CGP.playSound(CGP.snd_expl_small, 100);
disable();
}
}
Symbol 76 Button
on (release) {
getURL ("http://www.box10.com/?utm_source=brandedgames&utm_medium=box10ATV2&utm_url=" + _root._url, "_blank");
}
Symbol 78 MovieClip Frame 155
_parent.play();
stop();
Symbol 79 MovieClip Frame 36
stop();
Symbol 79 MovieClip Frame 48
_root.play();
stop();
Symbol 80 MovieClip Frame 1
#initclip 19
function updateSoundLoop() {
if (!stopSoundFlag) {
if (zastSoundFlag) {
mc_sloop.gotoAndStop(3);
mc_sloop_zast.gotoAndStop(2);
} else {
mc_sloop.gotoAndStop(2);
mc_sloop_zast.gotoAndStop(3);
}
}
}
function soundOff() {
if (zastSoundFlag) {
mc_sloop_zast.gotoAndStop(3);
} else {
mc_sloop.gotoAndStop(3);
}
stopSoundFlag = true;
}
function soundOn() {
if (zastSoundFlag) {
mc_sloop_zast.gotoAndStop(2);
} else {
mc_sloop.gotoAndStop(2);
}
stopSoundFlag = false;
}
function gameStart() {
scores = 0;
timeCounter = 0;
CGP.level = _root.level;
nextLevel();
}
function nextLevel() {
if (CGP.level == CGP.MAX_LEVEL_NUM) {
newGame();
return(undefined);
}
CGP.level++;
if (_root.levelMax <= CGP.level) {
_root.levelMax = CGP.level;
}
levelTimeCounter = 0;
this.gotoAndStop("reset");
this.gotoAndStop("game");
this.mc_message.mapsml.maps.mapz.gotoAndStop(CGP.level);
}
function replay() {
this.gotoAndStop("reset");
this.gotoAndStop("game");
this.mc_message.mapsml.maps.mapz.gotoAndStop(CGP.level);
}
function newGame() {
zastSoundFlag = true;
updateSoundLoop();
this.gotoAndStop("main");
}
function initLevel() {
taskTimeCounter = 0;
lastTimer = getTimer();
mc_level._x = (mc_level._y = 0);
mc_level._xscale = (mc_level._yscale = 100);
mc_level.gotoAndStop(CGP.level);
mc_level.mc.mc_hit._visible = false;
if (carSync == null) {
carSync = new CCarSynchronizer();
engine = new CParticleEngine();
objCamera = new CCamera();
back1 = new CBack();
back2 = new CBack();
} else {
engine.clear();
}
engine.stopWheels = false;
carSync.init(mc_level.mc.mc_car, mc_level.mc.mc_start._x, mc_level.mc.mc_start._y, engine);
carSync.setHealthIndicator(mc_panel.mc_health_ind);
writeMode = false;
hasEnemy = false;
var _local3;
var _local4;
var _local5;
var _local1;
var _local2;
enemyTruck.stopProcess();
if (writeMode) {
enemyTruck.init(carSync.mc_car, carSync.mc_back_wheel, carSync.mc_forward_wheel);
enemyTruck.startWrite();
} else if (hasEnemy) {
enemyTruck.setGoArray(enemyGoArray);
_local3 = mc_level.mc.mc_enemy.attachMovie("lib_bike_body2", "body", 2);
_local4 = mc_level.mc.mc_enemy.attachMovie("lib_wheel", "back_w", 3);
_local5 = mc_level.mc.mc_enemy.attachMovie("lib_wheel", "forward_w", 4);
_local1 = mc_level.mc.mc_enemy.attachMovie("lib_wheel_dark", "wdb1", 0);
_local2 = mc_level.mc.mc_enemy.attachMovie("lib_wheel_dark", "wdb2", 1);
enemyTruck.init(_local3, _local4, _local5, _local1, _local2);
enemyTruck.startGo();
}
back1.init(mc_level.mc.mc_fon.mc_grass.mc1, mc_level.mc.mc_fon.mc_grass.mc2, 1);
back2.init(mc_level.mc.mc_fon.mc_hill.mc1, mc_level.mc.mc_fon.mc_hill.mc2, 2);
back1.process(mc_level.mc._x);
back2.process(mc_level.mc._x);
objCamera.init(carSync.mc_car, mc_level.mc);
engine.setHitMovie(mc_level.mc.mc_hit);
engine.start();
accFlag = false;
accCounter = 50;
if (!stopSoundFlag) {
mc_sloop.gotoAndStop(2);
}
setStaticVariables();
CGP.setLevelTasks();
mc_panel.gotoAndStop(CGP.curLevelTask);
CIndicator(mc_panel.mc_progress_ind).setMaxValue(100);
CIndicator(mc_panel.mc_progress_ind).setValue(0);
mc_message.gotoAndStop("empty");
gameState = 0;
showTime();
CGP.updateLevelProgress();
pauseGame();
mc_message.gotoAndStop("task");
mc_message.mc_task.gotoAndStop(CGP.level);
}
function processGame() {
var _local2;
var _local1;
_local2 = getTimer();
_local1 = _local2 - lastTimer;
txtFps = 1 / (_local1 / 1000);
lastTimer = _local2;
if (gameState == 0) {
timeCounter = timeCounter + _local1;
levelTimeCounter = levelTimeCounter + _local1;
taskTimeCounter = taskTimeCounter + _local1;
showTime();
var _local4 = 0;
var _local3 = 0;
var _local5;
var _local6;
if (!carSync.isCrushed()) {
accCounter++;
if (!accFlag) {
accFlag = Key.isDown(CCarSynchronizer.BUTTON_UP) || (Key.isDown(CCarSynchronizer.BUTTON_DOWN));
if (accFlag && (accCounter > 10)) {
accCounter = 0;
if (!stopSoundFlag) {
mc_gas.gotoAndPlay(2);
}
}
} else {
accFlag = Key.isDown(CCarSynchronizer.BUTTON_UP) || (Key.isDown(CCarSynchronizer.BUTTON_DOWN));
}
if (Key.isDown(CCarSynchronizer.BUTTON_LEFT)) {
carSync.toLeft();
} else if (Key.isDown(CCarSynchronizer.BUTTON_RIGHT)) {
carSync.toRight();
}
}
engine.process();
carSync.process();
carSync.checkHitWithGround(mc_level.mc.mc_hit);
if ((!carSync.isCrushed()) && (carSync.getHealth() == 0)) {
carSync.toCrush(engine);
}
enemyTruck.process(_local1);
objCamera.process();
back1.process(mc_level.mc._x);
back2.process(mc_level.mc._x);
mc_level.mc.mc_fon._x = -mc_level.mc._x;
CGP.updateLevelProgress();
checkEndLevel();
CGP.processSounds();
}
}
function keyPressed() {
if (Key.isDown(32)) {
if (gameState == 2) {
nextLevel();
} else if (gameState == 1) {
replay();
} else if (gameState == 4) {
resume();
}
} else if (Key.isDown(80)) {
if (gameState == 0) {
pauseGame();
} else if (gameState == 4) {
resume();
}
}
if (writeMode && (Key.isDown(36))) {
enemyTruck.stopProcess();
enemyTruck.printWriteResult();
}
}
function addLevelScores() {
CGP.levelHealthBonus = mc_panel.mc_health_ind.getValue() * CGP.scrHealth;
if (levelTimeCounter < 60000) {
CGP.levelTimeBonus = CGP.scrTime - Math.round(((levelTimeCounter / 1000) - 60) * CGP.scrPlusTime);
} else {
CGP.levelTimeBonus = CGP.scrTime - Math.round(((levelTimeCounter / 1000) - 60) * CGP.scrMinusTime);
}
if (CGP.levelTimeBonus < 10) {
CGP.levelTimeBonus = 10;
}
CGP.levelScores = CGP.levelHealthBonus + CGP.levelTimeBonus;
CGP.levelScores = CGP.levelScores + ((CGP.crushCount + CGP.crumpleCount) * CGP.scrCrush);
CGP.levelScores = CGP.levelScores + ((CGP.greenBonusesCount - CGP.redBonusesCount) * CGP.scrBonus);
scores = scores + CGP.levelScores;
}
function showTime() {
var _local1;
if (CGP.curLevelTaskTime > 0) {
_local1 = CGP.curLevelTaskTime - taskTimeCounter;
if (_local1 < 0) {
_local1 = 0;
}
mc_panel.txtTime = getTimeString(_local1);
}
}
function getTimeString(time) {
var _local1 = Math.round(time / 1000);
var _local2 = Math.floor(_local1 / 60);
_local1 = _local1 - (_local2 * 60);
var _local3;
var _local4;
if (_local1 < 10) {
_local4 = "0" + _local1;
} else {
_local4 = "" + _local1;
}
if (_local2 < 10) {
_local3 = "0" + _local2;
} else {
_local3 = "" + _local2;
}
return((_local3 + ":") + _local4);
}
function resume() {
zastSoundFlag = false;
updateSoundLoop();
mc_pause.gotoAndStop(1);
mc_message.gotoAndStop("empty");
gameState = 0;
}
function pauseGame() {
if (!stopSoundFlag) {
mc_sloop.gotoAndStop(3);
}
mc_pause.gotoAndStop(2);
mc_message.gotoAndStop("pause");
gameState = 4;
}
function setStaticVariables() {
CGP.mc_levelHit = mc_level.mc.mc_hit;
CGP.mc_root = this;
CGP.mc_level = mc_level;
CGP.mc_panel = mc_panel;
CGP.carSync = CCarSynchronizer(carSync);
CGP.enemyTruck = CEnemyTruck(enemyTruck);
CGP.mc_progressInd = mc_panel.mc_progress_ind;
CGP.init();
}
function checkEndLevel() {
if (carSync.mc_car._x >= mc_level.mc.mc_finish._x) {
if (!stopSoundFlag) {
mc_sloop.gotoAndStop(3);
}
mc_pause._visible = false;
if (CGP.curLevelTask == CGP.TASK_CRUSH) {
if (CGP.crushCount < CGP.curLevelTaskValue) {
toFailedTask();
return(undefined);
}
} else if (CGP.curLevelTask == CGP.TASK_GET_BONUSES) {
if ((CGP.greenBonusesCount - CGP.redBonusesCount) < CGP.curLevelTaskValue) {
toFailedTask();
return(undefined);
}
} else if (CGP.curLevelTask == CGP.TASK_OVERTAKE_ENEMY) {
if (CGP.firstFinishTruck != CGP.FIRST_PLAYER) {
toFailedTask();
return(undefined);
}
}
toWinTask();
return(undefined);
}
if ((CGP.curLevelTaskTime > 0) && (taskTimeCounter >= CGP.curLevelTaskTime)) {
if (!stopSoundFlag) {
mc_sloop.gotoAndStop(3);
}
toTaskTimeOut();
return(undefined);
}
if (carSync.isFullCrushed()) {
loose();
}
}
function loose() {
mc_pause._visible = false;
if (!stopSoundFlag) {
mc_sloop.gotoAndStop(3);
}
mc_message.gotoAndStop("over");
mc_message.levelTime = getTimeString(levelTimeCounter);
mc_message.commonTime = getTimeString(timeCounter);
mc_message.scores = scores;
gameState = 1;
}
function toTaskTimeOut() {
mc_pause._visible = false;
mc_message.gotoAndStop("time_out");
gameState = 1;
mc_message.levelTime = getTimeString(levelTimeCounter);
mc_message.commonTime = getTimeString(timeCounter);
mc_message.scores = scores;
}
function toFailedTask() {
mc_pause._visible = false;
mc_message.gotoAndStop("failed");
gameState = 1;
mc_message.levelTime = getTimeString(levelTimeCounter);
mc_message.commonTime = getTimeString(timeCounter);
mc_message.scores = scores;
}
function toWinTask() {
mc_pause._visible = false;
addLevelScores();
zastSoundFlag = true;
updateSoundLoop();
if (CGP.level < CGP.MAX_LEVEL_NUM) {
mc_message.gotoAndStop("win");
mc_message.levelTime = getTimeString(levelTimeCounter);
mc_message.scores = scores;
mc_message.txtGreen = CGP.greenBonusesCount;
mc_message.txtRed = CGP.redBonusesCount;
mc_message.txtCBonus = CGP.greenBonusesCount - CGP.redBonusesCount;
mc_message.txtSBonus = Number(mc_message.txtCBonus) * CGP.scrBonus;
mc_message.txtCrumple = CGP.crumpleCount;
mc_message.txtCrush = CGP.crushCount;
mc_message.txtCCrush = CGP.crumpleCount + CGP.crushCount;
mc_message.txtSCrush = Number(mc_message.txtCCrush) * CGP.scrBonus;
mc_message.txtSTime = CGP.levelTimeBonus;
CIndicator(mc_message.mc_health_ind).setMaxValue(CIndicator(mc_panel.mc_health_ind).getMaxValue());
CIndicator.updateViewFor(mc_message.mc_health_ind, CIndicator(mc_panel.mc_health_ind).getValue(), 100);
mc_message.txtSHealth = mc_panel.mc_health_ind.getValue() + "%";
mc_message.txtSLevel = CGP.levelScores;
gameState = 2;
} else {
mc_message.gotoAndStop("complete");
mc_message.levelTime = getTimeString(levelTimeCounter);
mc_message.commonTime = getTimeString(timeCounter);
mc_message.scores = scores;
gameState = 3;
}
}
var author = "www.iriysoft.ru";
var lastTimer;
var stopSoundFlag = false;
var carSync = null;
var engine = null;
var objCamera = null;
var back1 = null;
var back2 = null;
var enemyTruck = null;
var gameState;
var zastSoundFlag = true;
var accFlag;
var accCounter;
var timeCounter;
var levelTimeCounter;
var taskTimeCounter;
var scores;
var highQuality = true;
var hasEnemy;
var writeMode;
var enemyGoArray = [[0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [0, 228, 194.05, 0, 176.7, 212.85, 0, 280.2, 212.85, 0], [56, 228, 194.6, 0, 176.7, 213.4, 0, 280.2, 213.4, 0], [98, 228, 195.9, 0, 176.7, 214.7, 0, 280.2, 214.7, 0], [142, 228, 197.95, 0, 176.7, 216.75, 0, 280.2, 216.75, 0], [186, 228, 200.75, 0, 176.7, 219.55, 0, 280.2, 219.55, 0], [230, 228, 204.25, 0, 176.7, 223.05, 0, 280.2, 223.05, 0], [274, 228, 208.5, 0, 176.7, 227.3, 0, 280.2, 227.3, 0], [318, 228, 213.45, 0, 176.7, 232.25, 0, 280.2, 232.25, 0], [362, 228, 219.1, 0, 176.7, 237.9, 0, 280.2, 237.9, 0], [406, 228, 225.45, 0, 176.7, 244.25, 0, 280.2, 244.25, 0], [450, 228, 232.5, 0, 176.7, 251.3, 0, 280.2, 251.3, 0], [497, 228, 240.2, 0, 176.7, 259, 0, 280.2, 259, 0], [540, 228, 248.6, 0, 176.7, 267.4, 0, 280.2, 267.4, 0], [581, 228, 257.7, 0, 176.7, 276.5, 0, 280.2, 276.5, 0], [622, 228, 267.4, 0, 176.65, 286.2, 0, 280.2, 286.2, 0], [666, 227.95, 276.9, -0.00514393500753275, 176.05, 288.1, -7.28728898141695E-16, 280.8, 288.1, -7.28728898141695E-16], [710, 227.9, 281.75, -0.0450964757530808, 174.3, 287.25, -3.29782205089904, 282.7, 287.15, 3.47812403640024], [753, 227.85, 280.9, 0.00618076391612938, 174.05, 287.15, -5.81381407427842, 283.05, 287.15, 6.26864947737187], [815, 227.9, 275.8, 0.00013341350610754, 175.15, 287.15, -4.66226018012558, 281.85, 287.15, 5.065965994654], [868, 227.95, 269.35, 0.00150677565932408, 176.5, 287.15, -1.80097013233139, 280.35, 287.15, 1.94588760611479], [910, 227.95, 264.3, 0.00825794063563971, 177.55, 286.95, 0.893118767933707, 279.25, 287, -0.900441593873988], [954, 227.95, 261.8, 0.0308390987558616, 177.95, 285.8, 2.88741070099975, 278.85, 285.85, -2.92965995256248], [996, 228, 261.7, 0.0646838520613743, 177.5, 283.75, 4.84201622459778, 279.3, 283.85, -4.91849686591307], [1038, 228, 262.95, 0.109091533939574, 176.65, 281.9, 6.75772509827621, 280.05, 282.1, -6.86775592468799], [1082, 228.05, 264.4, 0.165888655233122, 176.1, 281.3, 8.63531136536844, 280.6, 281.6, -8.77822472819328], [1126, 228, 265.5, 0.221124771325874, 176.1, 282.55, 10.4755336657455, 280.55, 282.95, -10.6506752025088], [1170, 227.9, 266.85, 0.269250696613178, 176.5, 285.1, 18.2022169671907, 280.15, 285.6, -6.56278248753988], [1214, 228.4, 268.95, -0.0063885476030114, 179.3, 287.15, 33.2032937851614, 283.3, 287.15, 7.43523911056696], [1260, 231.55, 271, 0.00328517729605261, 183.35, 287.15, 47.6352535990546, 286.9, 287.15, 17.8587234818188], [1302, 236.65, 272.05, -0.00611276250570598, 187.2, 287.15, 59.0231706477096, 292, 287.15, 31.0899465267735], [1346, 242.4, 271.9, -0.00563786261881979, 191.45, 287.15, 68.5072544953045, 296.55, 287.15, 42.4376596865432], [1390, 247.7, 271, -0.0129766005904741, 196.25, 287.15, 78.1726993436951, 300.8, 287.15, 51.6036206410689], [1434, 252.85, 269.8, 0.00106753148121217, 202.7, 287.15, 92.3671075068623, 306.7, 287.15, 65.1686482649857], [1478, 259.55, 268.9, -0.00598918793064189, 209.9, 287.15, 107.368184324833, 313.5, 287.15, 80.1697250829563], [1521, 267.75, 268.65, 0.0123812956708811, 217.75, 287.15, 122.369261142804, 321.25, 287.15, 95.170801900927], [1562, 276.9, 269, 0.0131606029728422, 226.85, 287.15, 137.370337960774, 330.45, 287.15, 110.171878718898], [1606, 286.9, 269.6, 0.00137794837820057, 237.1, 287.15, 152.371414778745, 341, 287.15, 125.172955536868], [1650, 297.9, 270.25, 0.00720679695129225, 248.35, 287.15, 167.372491596716, 352.5, 287.15, 140.174032354839], [1694, 310.05, 270.55, 0.00206495385293149, 260.55, 287.15, -177.626431585314, 364.8, 287.15, 155.17510917281], [1741, 323.75, 270.3, -1.7683302650625, 273.5, 287.15, -162.625354767343, 377.15, 283.95, 170.17618599078], [1786, 338.2, 268.25, -6.04355039327597, 287, 287.15, -147.624277949373, 390.4, 276.2, -174.822737191249], [1829, 352.05, 264.3, -10.041340744363, 301.6, 287.15, -132.623201131402, 404.75, 268.85, -159.821660373279], [1870, 365.25, 259, -13.474544374373, 317.3, 287.1, -117.622124313431, 419.7, 262.55, -144.820583555308], [1914, 378.5, 254, -15.6824500006398, 333.75, 286.45, -102.621047495461, 434.75, 258.1, -129.819506737337], [1958, 391.75, 250.4, -16.7813531168991, 350.7, 285.1, -87.61997067749, 449.05, 255.45, -114.818429919367], [2005, 405.6, 248.3, -19.0177165165486, 366.95, 284.85, -72.6188938595194, 463.15, 251.7, -99.817353101396], [2046, 418.95, 247.35, -19.287558886223, 382, 280.05, -57.6178170415487, 477.65, 246.6, -84.8162762834253], [2090, 432.2, 244.85, -17.061013982241, 392.15, 272.4, -42.6167402235781, 491.8, 241.85, -69.8151994654547], [2133, 445.8, 239.9, -15.2947692502705, 403.05, 266.2, -27.6156634056074, 504.45, 238.45, -54.814122647484], [2174, 459.25, 233.4, -13.7764990528591, 415.55, 261.35, -12.6145865876368, 516.4, 236.65, -39.8130458295134], [2218, 473.05, 227.05, -12.6038231966846, 429.7, 258.15, 2.38649023033386, 528.15, 236.1, -24.8119690115427], [2262, 487.75, 222.45, -10.8796464735925, 442.75, 254.95, 17.3875670483045, 541.25, 236, -9.8108921935721], [2302, 502.7, 220.05, -8.46357292806627, 453.9, 250.6, 32.3886438662752, 554.75, 235.6, 5.19018462439854], [2346, 516.55, 219.6, -4.74068221526714, 465.6, 244.7, 47.3897206842458, 568.2, 236.2, 20.1912614423692], [2390, 529.65, 219.85, -0.101700562511765, 477.65, 238.6, 62.3907975022164, 581.45, 238.4, 35.1923382603398], [2434, 543.1, 220.25, 3.44673140813603, 490.05, 233.75, 77.3918743201871, 595.8, 240.15, 50.1934150783105], [2478, 558.4, 220.1, 3.38328795928025, 504.25, 231.4, 92.3929511381577, 609.8, 237.65, 65.1944918962811], [2519, 574.3, 218.3, 0.607876670872056, 519.1, 231, 107.394027956128, 623.65, 232.1, 80.1955687142518], [2562, 589.55, 214.15, -4.3789818681143, 534.15, 231.35, 122.395104774099, 637.05, 223.45, 95.1966455322224], [2606, 602.65, 207.7, -9.38214148615408, 549.2, 231.65, 137.39618159207, 651.15, 214.8, 110.197722350193], [2650, 613.75, 199.8, -15.2377030463084, 564, 230.35, 152.39725841004, 663.5, 203.25, 125.198799168164], [2694, 623.2, 191.15, -22.4657554922122, 578.2, 227.65, 167.398335228011, 672.8, 188.55, 140.199875986134], [2738, 630.45, 182.85, -27.6930430824404, 592.1, 223.7, -177.600587954018, 684.65, 175.1, 155.200952804105], [2781, 638.3, 174.85, -33.5194369779768, 606.55, 218.95, -162.599511136048, 693.7, 161.25, 170.202029622076], [2822, 646.75, 167.35, -39.871201722215, 621.95, 214.9, -147.598434318077, 701.1, 148.8, -174.796893559954], [2866, 655.65, 160.65, -47.2897324225944, 637.8, 211.45, -132.597357500106, 707.35, 136.1, -159.795816741983], [2910, 664.6, 155.2, -54.5276440300856, 653.15, 207.85, -117.596280682136, 712.8, 124.15, -144.794739924012], [2954, 673.15, 150.9, -58.2592451209054, 664.9, 197.95, -102.595203864165, 717.45, 112.95, -129.793663106042], [3000, 681.2, 143.75, -61.0327682220692, 672.7, 190.8, -87.5941270461945, 722.2, 101.4, -114.792586288071], [3041, 687.4, 134.8, -62.6524729627939, 679.15, 182.75, -72.5930502282239, 726.55, 91.05, -99.7915094701005], [3081, 691.8, 124.7, -64.0090551763561, 685.95, 173.65, -57.5919734102533, 730.8, 81.6, -84.7904326521299], [3122, 695.5, 113.9, -65.3945757195831, 692.7, 165, -42.5908965922826, 735.15, 72.4, -69.7893558341592], [3166, 699.3, 103.5, -65.6855463939752, 697.6, 155.85, -27.589819774312, 739.35, 63.4, -54.7882790161886], [3210, 703.8, 93.5, -66.1976092512669, 702.5, 148.15, -12.5887429563413, 743.75, 54.6, -39.7872021982179], [3259, 708.7, 85.05, -65.644672392891, 705.9, 140.6, 2.41233386162933, 748.45, 46.7, -24.7861253802473], [3302, 713.75, 78.2, -63.9158249585039, 708.25, 133, 17.4134106796, 753.7, 40.15, -9.78504856227665], [3346, 718.45, 72.25, -61.3253233124555, 709.9, 126.05, 32.4144874975706, 759.65, 35.05, 5.21602825569399], [3391, 722.65, 66.95, -58.4094923320819, 711.65, 119.95, 47.4155643155413, 766.05, 31.45, 20.2171050736646], [3434, 726.65, 62.2, -55.4096263118412, 713.7, 114.55, 62.4166411335119, 772.5, 29.3, 35.2181818916353], [3478, 730.7, 58.1, -52.3050060274321, 715.7, 109.95, 77.4177179514825, 778.8, 28.35, 50.2192587096059], [3523, 734.85, 54.95, -48.9765420861081, 717.25, 106, 92.4187947694532, 784.8, 28.3, 65.2203355275766], [3566, 739.4, 52.65, -45.3186228714588, 718.2, 102.5, 107.419871587424, 790.65, 29.2, 80.2214123455472], [3610, 743.85, 51.35, -41.269602846294, 718.7, 99.4, 122.420948405394, 796.35, 31.25, 95.2224891635179], [3651, 748.25, 50.8, -36.7889908742139, 719.05, 96.65, 137.422025223365, 801.95, 34.65, 110.223565981489], [3695, 752.55, 50.95, -32.6901575077258, 719.85, 94.6, 152.423102041336, 807, 38.65, 125.224642799459], [3738, 756.9, 51.75, -28.6470468068553, 720.85, 93.1, 167.424178859306, 811.7, 43.45, 140.22571961743], [3780, 760.95, 53.25, -24.4685510283415, 721.95, 92.05, -177.574744322723, 816.2, 49.15, 155.2267964354], [3822, 765, 55.6, -20.1065681566585, 723.25, 91.4, -162.573667504752, 820.4, 55.8, 170.227873253371], [3866, 768.95, 58.65, -15.6403327880285, 724.65, 91.1, -147.572590686782, 824.25, 63.2, -174.771049928658], [3910, 772.8, 62.5, -11.1762375586132, 726.25, 91.25, -132.571513868811, 827.75, 71.2, -159.769973110688], [3954, 776.65, 67.05, -6.80652152776227, 728.15, 92, -117.57043705084, 830.95, 79.75, -144.768896292717], [3998, 780.5, 72.2, -2.60576186176426, 730.3, 93.5, -102.56936023287, 833.75, 88.8, -129.767819474746], [4041, 786, 77.65, -2.23141171021219, 733.35, 95.8, -87.5682834148991, 840.2, 91.65, -114.766742656776], [4082, 792.6, 81.9, -3.62864983022825, 738.95, 99.05, -72.5672065969285, 846.15, 92.25, -99.7656658388051], [4126, 799.8, 84.1, -6.2959513625918, 746.3, 103.25, -57.5661297789578, 853, 91.5, -84.7645890208344], [4170, 806.75, 84.45, -9.11680392859164, 755.4, 108, -42.5650529609872, 860.9, 91.1, -69.7635122028638], [4214, 813.05, 84.05, -8.7786232924387, 766.2, 106.05, -27.5639761430165, 869.5, 90.1, -54.7624353848931], [4258, 820, 81.85, -6.53477501580988, 773.5, 100.7, -12.5628993250459, 878.45, 88.65, -39.7613585669225], [4301, 828.9, 77.2, -8.22400920661458, 782.3, 98.05, 2.43817749292476, 886.8, 82.9, -24.7602817489518], [4346, 837.95, 71.15, -9.56628296361772, 793.05, 96.15, 17.4392543108954, 895.7, 78.85, -9.7592049309812], [4390, 847.8, 65.2, -10.8228626028985, 803.95, 93.7, 32.440331128866, 903.8, 74.6, 5.24187188698944], [4434, 858.15, 60.35, -11.8628126189231, 814.05, 90.8, 47.4414079468367, 913.05, 70, 20.2429487049601], [4478, 868.85, 56.75, -12.953572002344, 824.3, 88.2, 62.4424847648073, 923.3, 65.4, 35.2440255229307], [4526, 879.85, 54.3, -13.8996850818119, 833.85, 86.45, 77.443561582778, 934, 61.65, 50.2451023409014], [4566, 890.05, 52.85, -13.8141766191011, 843.85, 84.2, 92.4446384007486, 944.4, 59.45, 65.246179158872], [4610, 899.8, 52.15, -13.150737095617, 853.95, 82.25, 107.445715218719, 954.75, 58.65, 80.2472559768427], [4653, 909.55, 52.2, -12.5877495233746, 863.85, 81.3, 122.44679203669, 965, 58.75, 95.2483327948133], [4694, 919.4, 52.55, -12.5178630144326, 873.85, 81.85, 137.447868854661, 975, 59.4, 110.249409612784], [4738, 929.15, 53.55, -12.905104906809, 884.05, 83.6, 152.448945672631, 984.8, 60.5, 125.250486430755], [4781, 938.95, 55.2, -12.1053287108459, 896.25, 83, 167.450022490602, 994.95, 61.85, 140.251563248725], [4822, 949.85, 56.2, -10.6004026735218, 905.45, 81.95, -177.548900691428, 1006.4, 63.05, 155.252640066696], [4866, 961.25, 56.45, -8.9194969116997, 915.1, 80.75, -162.547823873457, 1017.5, 64.7, 170.253716884667], [4910, 972.5, 56.25, -6.90114644586737, 925.8, 79.2, -147.546747055486, 1028.35, 66.8, -174.745206297363], [4954, 984.25, 55.6, -4.36410293071097, 936.85, 77.05, -132.545670237516, 1039.25, 69.25, -159.744129479392], [4998, 996.9, 55.25, -2.87353552589314, 948.2, 77.1, -117.544593419545, 1050.35, 71.95, -144.743052661422], [5042, 1009.8, 55.95, -1.21948577661417, 960.1, 77.1, -102.543516601574, 1061.95, 74.95, -129.741975843451], [5086, 1023.2, 57.55, 0.231801081660445, 972.4, 77.15, -87.5424397836036, 1074.35, 77.55, -114.74089902548], [5130, 1036.75, 59.95, 1.1227836990439, 984, 78.5, -72.541362965633, 1087.3, 80.55, -99.7398222075096], [5174, 1049.85, 63.1, 1.94606257916402, 996.5, 80.75, -57.5402861476624, 1100, 84.25, -84.738745389539], [5218, 1062.2, 66.95, 3.54453528049154, 1009.3, 83, -42.5392093296917, 1112.45, 89.4, -69.7376685715683], [5262, 1074.5, 71.5, 5.28492615752196, 1021.85, 85.75, -27.5381325117211, 1124.75, 95.3, -54.7365917535977], [5307, 1086.9, 76.8, 6.72651429423502, 1034.1, 89.55, -12.5370556937504, 1136.95, 101.65, -39.735514935627], [5350, 1099.45, 82.7, 6.75840806669134, 1046.4, 95.5, 2.46402112422022, 1149.2, 107.65, -24.7344381176564], [5394, 1112.2, 89.4, 5.83693811649731, 1058.75, 103.1, 17.4650979421909, 1161.65, 113.6, -9.73336129968574], [5440, 1124.85, 96.6, 4.48840859264958, 1071.1, 111.9, 32.4661747601615, 1174.15, 120, 5.26771551828491], [5482, 1137.1, 104.55, 3.0500388248806, 1083.6, 121.6, 47.4672515781322, 1186.65, 127.1, 20.2687923362556], [5525, 1149.05, 113.35, 1.56346393482932, 1096.2, 131.95, 62.4683283961028, 1199.2, 134.75, 35.2698691542262], [5571, 1160.8, 122.95, -0.138074507977979, 1108.8, 143.05, 77.4694052140734, 1211.85, 142.8, 50.2709459721968], [5614, 1172.25, 133.4, -1.34441722589825, 1121.3, 154.1, 92.4704820320441, 1224.5, 151.65, 65.2720227901675], [5658, 1185, 143.9, -7.2471663815913, 1133.45, 165.7, 107.471558850015, 1237.05, 152.55, 80.2730996081381], [5702, 1197.45, 150.65, -17.0973652290087, 1148.7, 173.9, 122.472635667985, 1246.15, 143.95, 95.2741764261088], [5746, 1206.9, 151.45, -22.1062273539608, 1161.15, 175.4, 137.473712485956, 1258.55, 135.85, 110.275253244079], [5793, 1215.35, 145.9, -27.0501456798307, 1174.25, 175.4, 152.474789303927, 1269, 127, 125.27633006205], [5834, 1222.8, 136.85, -30.2786848644343, 1189.55, 171.45, 167.475866121897, 1278.95, 119.25, 140.277406880021], [5878, 1230.75, 126.25, -34.4382518528188, 1205.2, 167.5, -177.523057060132, 1289.2, 109.9, 155.278483697991], [5922, 1240.05, 115.75, -39.0670568953324, 1221, 161.55, -162.521980242161, 1298.65, 98.5, 170.279560515962], [5963, 1250.9, 106.5, -44.4123141103577, 1235.55, 155.15, -147.520903424191, 1306.75, 85.35, -174.719362666067], [6006, 1262, 98.6, -47.0212497559298, 1245.2, 145.1, -132.51982660622, 1314.25, 71, -159.718285848097], [6050, 1273.25, 89.25, -50.0166827919905, 1254.65, 136.75, -117.518749788249, 1321.2, 57.4, -144.717209030126], [6094, 1282.6, 79.15, -50.3821436890953, 1261.85, 126.35, -102.517672970279, 1328.5, 45.85, -129.716132212155], [6138, 1290.75, 68, -51.6632690591322, 1271.95, 118.95, -87.5165961523082, 1336.8, 36.95, -114.715055394185], [6182, 1298.25, 57.9, -51.3631741686088, 1281.8, 110.2, -72.5155193343376, 1345.95, 29.95, -99.7139785762142], [6225, 1306.05, 49.25, -50.0195283185635, 1289.8, 102.1, -57.5144425163669, 1355.5, 23.75, -84.7129017582435], [6266, 1314.3, 42.2, -47.6934886389636, 1296.05, 94, -42.5133656983963, 1364.95, 18.3, -69.7118249402729], [6310, 1322.85, 36.55, -44.7171141326731, 1301.2, 86.15, -27.5122888804256, 1374.4, 13.65, -54.7107481223022], [6354, 1331.25, 31.5, -41.6479432956824, 1306.25, 79.1, -12.511212062455, 1383.75, 10.15, -39.7096713043316], [6398, 1339.4, 27, -38.7149330239627, 1311.85, 73.05, 2.48986475551567, 1392.85, 8.1, -24.7085944863609], [6442, 1347.45, 22.8, -35.6729660567907, 1317.65, 67.85, 17.4909415734863, 1401.75, 7.5, -9.70751766839028], [6486, 1355.65, 19.4, -33.0305002145855, 1323.55, 63.6, 32.492018391457, 1410.1, 7.35, 5.29355914958036], [6534, 1363.8, 17, -30.3463217945946, 1329.2, 59.9, 47.4930952094276, 1418.3, 7.8, 20.294635967551], [6574, 1371.75, 15.55, -27.3474323934462, 1334.65, 56.6, 62.4941720273983, 1426.45, 9.1, 35.2957127855216], [6618, 1379.4, 14.95, -23.9625017636416, 1339.95, 53.55, 77.4952488453689, 1434.55, 11.5, 50.2967896034923], [6662, 1386.95, 15.1, -20.3616056028468, 1345.35, 50.9, 92.4963256633395, 1442.4, 14.9, 65.2978664214629], [6706, 1394.45, 16, -16.7881078023938, 1350.85, 48.95, 107.49740248131, 1450, 19.05, 80.2989432394336], [6750, 1401.7, 17.6, -13.4354270763738, 1356.55, 47.85, 122.498479299281, 1457.25, 23.8, 95.3000200574042], [6794, 1409.2, 19.8, -10.348291178131, 1362.4, 47.65, 137.499556117251, 1464.2, 29.05, 110.301096875375], [6834, 1416.8, 22.65, -8.38106433045472, 1368.65, 49.15, 152.500632935222, 1470.95, 34.05, 125.302173693346], [6878, 1424.5, 26.3, -7.04489812461697, 1375.15, 51.95, 167.501709753193, 1477.7, 39.25, 140.303250511316], [6922, 1431.8, 30.7, -5.95519614165607, 1381.9, 55.7, -177.497213428837, 1484.55, 45, 155.304327329287], [6966, 1439.1, 35.8, -4.97946904125676, 1388.75, 60.25, -162.496136610866, 1491.45, 51.3, 170.305404147257], [7010, 1446.05, 41.95, -3.26924345321098, 1395.5, 64.65, -147.495059792895, 1498.4, 58.75, -174.693519034772], [7054, 1452.75, 48.95, -1.36848800820301, 1402.05, 69.35, -132.493982974925, 1505.3, 66.9, -159.692442216801], [7098, 1459.75, 56.6, -0.651648192123112, 1408.7, 75.85, -117.492906156954, 1512.25, 74.7, -144.691365398831], [7142, 1466.85, 64.8, -0.987506345161547, 1415.65, 84.25, -102.491829338983, 1519.3, 82.45, -129.69028858086], [7186, 1474.15, 73.45, -2.02443782056891, 1422.85, 94.2, -87.4907525210127, 1526.35, 90.5, -114.689211762889], [7230, 1481.15, 82.75, -3.46035331419605, 1430.25, 105.3, -72.4896757030421, 1533.45, 99.1, -99.6881349449187], [7279, 1488.1, 92.7, -5.12505107987778, 1437.85, 117.3, -57.4885988850715, 1540.55, 108.05, -84.6870581269481], [7321, 1494.65, 103.65, -6.07186350415665, 1445.3, 129, -42.4875220671008, 1547.75, 118.1, -69.6859813089774], [7362, 1501, 115.6, -6.74828597307727, 1452.45, 140.85, -27.4864452491302, 1554.95, 128.75, -54.6849044910068], [7404, 1507.8, 128.1, -8.18844807821495, 1460.9, 154.4, -12.4853684311595, 1562.1, 139.85, -39.6838276730361], [7446, 1515.35, 140.75, -9.19398863010646, 1470.85, 167.05, 2.51570838681112, 1570.8, 150.9, -24.6827508550655], [7490, 1524.25, 152.9, -8.9068356394592, 1480.8, 177.25, 17.5167852047818, 1581.05, 161.5, -9.68167403709484], [7532, 1534.9, 163.75, -9.57402044249214, 1489.35, 189.15, 32.5178620227524, 1591.8, 171.85, 5.31940278087581], [7577, 1545.7, 174.45, -11.2406903485283, 1499.55, 202.65, 47.5189388407231, 1601.7, 182.35, 20.3204795988465], [7618, 1555.3, 185.45, -9.26337385653427, 1513, 209.15, 62.5200156586937, 1612, 193, 35.3215564168171], [7664, 1565.7, 194.05, -3.22571664078755, 1519.6, 209.25, 77.5210924766644, 1623.9, 203.4, 50.3226332347877], [7706, 1577.55, 199.3, 1.5341833571638, 1526.05, 209.15, 89.5906539389646, 1635.4, 212.05, 65.3237100527584], [7750, 1591.35, 201.1, 0.518066574877786, 1536.45, 209.15, 104.591730756935, 1645, 210.15, 80.324786870729], [7792, 1603.3, 198.95, 1.53732411400098, 1549.45, 209.15, 119.592807574906, 1655.85, 212, 95.3258636886997], [7838, 1616.25, 195, 3.4435691124407, 1563, 209.15, 134.593884392877, 1667.2, 215.4, 110.32694050667], [7885, 1629.65, 192.15, 7.15796202524478, 1576.45, 208.8, 149.594961210847, 1677.35, 221.45, 125.328017324641], [7926, 1642.55, 192.05, 11.3996093191327, 1589.3, 207, 164.596038028818, 1687.8, 226.85, 140.329094142612], [7971, 1655.95, 194.7, 13.0286176881022, 1602.3, 204.4, 179.597114846788, 1703.25, 227.75, 155.330170960582], [8014, 1670.3, 198.5, 12.2223408046339, 1616, 204.25, -165.401808335241, 1718.15, 226.35, 170.331247778553], [8059, 1684.7, 201.35, 10.8698679029307, 1629.7, 207.05, -150.40073151727, 1732.75, 226.85, -174.667675403476], [8101, 1698.4, 203.5, 10.8857779931775, 1645.5, 210.15, -135.3996546993, 1746.7, 229.6, -159.666598585506], [8142, 1712.65, 205.05, 12.7149142836858, 1660.95, 210.75, -120.398577881329, 1761.2, 233.35, -144.665521767535], [8186, 1728.3, 207, 13.341059026594, 1674.65, 213.65, -105.397501063358, 1775.65, 237.6, -129.664444949565], [8230, 1743.5, 209.7, 13.4628075043959, 1689.5, 217.8, -90.3964242453877, 1789.75, 241.8, -114.663368131594], [8274, 1758.55, 213.75, 12.3336063783244, 1704.45, 223.2, -75.395347427417, 1804.55, 245.1, -99.6622913136232], [8316, 1773.55, 219.2, 10.3860015664205, 1718.75, 229.6, -60.3942706094464, 1819.95, 248.15, -84.6612144956526], [8358, 1788.45, 225, 9.65930161264169, 1736.4, 234.95, -45.3931937914757, 1836.1, 251.95, -69.660137677682], [8402, 1804.95, 231.35, 6.9217449202494, 1750.2, 244.25, -30.3921169735051, 1853.15, 256.75, -54.6590608597113], [8446, 1820.45, 238.35, 4.50324394462903, 1766.05, 254.15, -15.3910401555344, 1869.35, 262.3, -39.6579840417407], [8490, 1835.5, 246.35, 1.94391040686437, 1782.75, 264.7, -0.389963337563773, 1885.55, 268.2, -24.65690722377], [8534, 1850.3, 255.25, -1.17802002675653, 1799, 276.15, 14.6111134804069, 1902, 274.05, -9.65583040579938], [8578, 1864.85, 264.9, -4.08356851643767, 1816.95, 287.15, 29.6121902983775, 1918.25, 279.9, 5.34524641217126], [8622, 1878.75, 273.5, -0.938978268783868, 1832.85, 287.15, 44.6132671163482, 1935.75, 285.45, 20.3463232301419], [8666, 1896.15, 278.35, -0.310732654261748, 1847.25, 287.75, 59.6143439343188, 1955.55, 287.15, 35.3474000481125], [8710, 1915.05, 278.9, -1.05149966139069, 1863.15, 287.95, 74.6154207522894, 1970.35, 286, 50.3484768660832], [8754, 1933.15, 275, -4.19809862391687, 1879.1, 287.15, 89.6164975702601, 1982.45, 279.55, 65.3495536840538], [8799, 1948.55, 266.95, -10.3945912215708, 1892.9, 287.15, 104.617574388231, 1990.6, 269.2, 80.3506305020245], [8842, 1957.55, 255.65, -14.7773689816548, 1903.85, 285.55, 119.618651206201, 1999.3, 260.4, 95.3517073199951], [8886, 1961.8, 243.8, -18.1244946772178, 1912.25, 280.95, 134.39546326522, 2005.4, 250.45, 110.352784137966], [8930, 1962.95, 233.5, -18.9661707248811, 1918.4, 273.65, 148.878218547246, 2013.4, 240.95, 125.353860955936], [8974, 1964.25, 225.45, -19.5969080305568, 1923.15, 264.4, 163.072768782143, 2018.7, 230.4, 140.354937773907], [9018, 1966.25, 219.25, -19.4688429543244, 1927.05, 255.4, 176.984849250347, 2023.95, 221.15, 155.281009207789], [9063, 1969.2, 213.4, -20.4527525124135, 1931.1, 248.5, -169.379918899784, 2028.05, 212.35, 169.91005182014], [9106, 1972.7, 207.35, -23.1716655537392, 1936.2, 244.55, -156.016026380745, 2031.35, 203.8, -175.75202351549], [9150, 1976.6, 201.7, -26.8386095536277, 1942.05, 242.2, -141.014949562774, 2033.9, 195.75, -160.75094669752], [9194, 1980.65, 197.25, -30.2432518431283, 1947.4, 240.2, -126.013872744804, 2036.15, 188.45, -145.749869879549], [9238, 1984.55, 193.85, -32.566795153553, 1951.7, 238.1, -111.012795926833, 2038.65, 182.55, -130.748793061579], [9282, 1988.1, 191.55, -33.380651198543, 1955.2, 235.8, -96.0117191088623, 2041.75, 178.8, -115.747716243608], [9327, 1991.2, 190.1, -32.8702734061893, 1958.15, 233.55, -81.0106422908916, 2045.25, 177.25, -100.746639425637], [9370, 1994.05, 189.3, -31.6926653785784, 1960.85, 231.8, -66.009565472921, 2049, 177.4, -85.7455626076667], [9414, 1996.9, 189, -30.3500324382752, 1963.5, 231, -51.0084886549503, 2052.7, 178.8, -70.744485789696], [9458, 1999.75, 189.45, -29.0035587392556, 1966.05, 231.05, -36.0074118369797, 2056.15, 181.1, -55.7434089717254], [9502, 2003.05, 190.8, -27.5584216243385, 1968.2, 231.75, -21.006335019009, 2059.45, 184.15, -40.7423321537547], [9546, 2006.35, 193.05, -25.8190950993711, 1969.85, 232.85, -6.0052582010384, 2062.6, 188, -25.7412553357841], [9588, 2009.65, 196.3, -23.6050516464094, 1971.1, 234.3, 8.99581861693225, 2065.75, 192.95, -10.7401785178134], [9630, 2012.85, 200.2, -20.8025512472908, 1972.1, 236.05, 23.9968954349029, 2068.85, 199.25, 4.26089830015722], [9673, 2016.15, 204.7, -18.1051159107279, 1972.95, 238.1, 38.9979722528735, 2073.75, 205.15, 19.2619751181279], [9714, 2021.8, 208.4, -18.7908853823617, 1976.25, 239.95, 53.9990490708442, 2078.55, 205.15, 34.2630519360985], [9759, 2027.85, 210.5, -20.373906827183, 1982.1, 242.6, 69.0001258888148, 2082.95, 205.15, 47.0243436207259], [9802, 2033.8, 211.05, -22.2767103429476, 1989.7, 245.7, 84.0012027067855, 2088.75, 205.15, 61.4762567932508], [9852, 2039.6, 211, -24.3993020773673, 1998.9, 248.9, 99.0022795247561, 2095.35, 205.15, 76.4773336112215], [9894, 2044.5, 211.7, -22.4494913928281, 2005.75, 245.3, 114.003356342727, 2102.4, 205.35, 91.4784104291921], [9938, 2049.35, 210.75, -19.0348314806874, 2008.7, 240.45, 129.004433160697, 2108.05, 206.2, 106.479487247163], [9981, 2054.15, 207.9, -17.6866994379358, 2013.6, 238.6, 143.639103103002, 2112.9, 206.9, 121.480564065133], [10022, 2058.15, 204.5, -15.1293845375085, 2016.3, 234.4, 157.687542082019, 2116.7, 207.25, 136.481640883104], [10069, 2062.55, 200.95, -13.1157552027297, 2019.4, 230.6, 171.80792365733, 2119.45, 207.3, 151.482717701075], [10110, 2068.2, 197.8, -12.8105925554264, 2021.45, 226.6, -175.706924799593, 2123.8, 203.3, 166.483794519045], [10154, 2074.05, 194.45, -12.8027555620705, 2025.35, 222.75, -161.792651433861, 2126.3, 199.85, 179.963361109092], [10198, 2078.6, 190.45, -11.9720698340649, 2028.85, 218.7, -146.791574615891, 2130.5, 197.15, -166.819346285521], [10241, 2082.15, 186.05, -11.4935415191088, 2032.4, 214.25, -131.79049779792, 2134.45, 193.5, -152.426649436149], [10282, 2085.15, 181.65, -11.0346599538021, 2036.45, 209.6, -116.78942097995, 2139.05, 189.6, -137.425572618178], [10324, 2088.6, 177.4, -11.9301682008103, 2040.9, 205.35, -101.788344161979, 2142.75, 183.85, -122.424495800208], [10366, 2091.95, 173.35, -12.7406601321476, 2045.85, 202.15, -86.7872673440082, 2148.5, 178.95, -107.423418982237], [10407, 2096.3, 169.65, -14.3709848795699, 2051.9, 200.4, -71.7861905260376, 2152.4, 174.65, -92.4223421642665], [10450, 2100.65, 166.7, -16.5417584323525, 2057.9, 199.95, -56.7851137080669, 2156.5, 170.65, -77.4212653462959], [10494, 2105, 164.85, -18.9606755037593, 2063.65, 200.2, -41.7840368900963, 2161, 166.75, -62.4201885283252], [10538, 2109.35, 164, -21.4972511952888, 2069.2, 200.95, -26.7829600721257, 2165.2, 163.15, -47.4191117103546], [10581, 2113.9, 164, -23.9713099208841, 2074.65, 202.25, -11.781883254155, 2169.2, 160.2, -32.418034892384], [10622, 2118.25, 164.75, -26.1554143988491, 2080.1, 204.15, 3.21919356381563, 2173.15, 158.45, -17.4169580744133], [10666, 2122.75, 165.75, -28.228783427077, 2089, 205.15, 18.2202703817863, 2177.6, 157.55, -2.41588125644267], [10709, 2128.1, 166.3, -29.1908834139884, 2095.85, 205.15, 33.2213471997569, 2183.75, 156, 12.585195561528], [10750, 2134.75, 165.85, -30.700029411393, 2102.5, 206.35, 48.2224240177276, 2190.5, 154.05, 27.5862723794986], [10794, 2141.8, 165.25, -33.3372145163488, 2110.55, 209.05, 63.2235008356982, 2196.85, 152.25, 42.5873491974693], [10837, 2147.45, 166.7, -32.7013147334288, 2118.2, 205.05, 78.2245776536689, 2202.75, 150.8, 57.5884260154399], [10877, 2154.35, 166.3, -32.8993612517548, 2123.25, 204.4, 92.8900191231755, 2209.55, 148.55, 72.5895028334106], [10921, 2160.7, 164, -31.6928635801959, 2126.6, 202.05, 105.637654766881, 2215.85, 146.95, 87.5905796513812], [10962, 2165.95, 160.4, -30.0391759764316, 2130.6, 198.95, 118.732162211606, 2221.2, 146.55, 102.591656469352], [11003, 2170.15, 156.45, -27.2769088057411, 2133.95, 194.55, 133.691830538237, 2226.05, 147.05, 117.592733287322], [11046, 2174.1, 152.6, -23.3394516410327, 2136, 188.75, 148.692907356208, 2230.5, 147.95, 132.593810105293], [11088, 2179.25, 148.9, -20.5118366222032, 2139.65, 184.75, 163.693984174178, 2235.1, 149.05, 147.594886923264], [11130, 2184.75, 146.15, -17.6711664384964, 2142.1, 181.4, 178.695060992149, 2240, 150.2, 162.595963741234], [11173, 2190.4, 144.75, -15.0178683019131, 2144.85, 177.65, -166.30386218988, 2246.1, 150.45, 177.597040559205], [11214, 2196.6, 143.9, -13.4038098467764, 2149.25, 173.5, -151.30278537191, 2251.8, 149.05, -167.401882622824], [11258, 2203.1, 142.8, -11.1921944014068, 2154.95, 169.8, -136.301708553939, 2259.55, 149.1, -152.400805804854], [11301, 2211.1, 141.35, -10.9284178245101, 2162.35, 167.15, -121.300631735969, 2266.4, 147.05, -137.399728986883], [11343, 2218.85, 139.6, -10.2357090196457, 2170.8, 165.8, -106.299554917998, 2274.45, 147.1, -122.398652168912], [11386, 2227.1, 138.15, -10.1760989544035, 2180.1, 165.6, -91.2984781000272, 2283.15, 147.1, -107.397575350942], [11430, 2236, 137.55, -10.5767605369151, 2189.9, 166.2, -76.2974012820566, 2292.3, 147.1, -92.3964985329711], [11474, 2245.65, 138.05, -11.2879371077955, 2200.05, 167.45, -61.2963244640859, 2302.1, 147.1, -77.3954217150004], [11518, 2255.45, 139.35, -10.6848931115017, 2212.05, 165.95, -46.2952476461153, 2311.6, 147.2, -62.3943448970298], [11562, 2265.7, 139.6, -8.6449103813369, 2220.05, 162.85, -31.2941708281447, 2322.4, 147.3, -47.3932680790591], [11604, 2275.5, 138.7, -5.43678435190418, 2227.65, 158, -16.293094010174, 2332.5, 148, -32.3921912610885], [11649, 2285.55, 136.4, -2.47788361639111, 2236.75, 153.95, -1.29201719220336, 2341.4, 149.45, -17.3911144431179], [11690, 2296.2, 133.5, 0.227768371752508, 2246.55, 150.95, 13.7090596257673, 2349.75, 151.35, -2.39003762514722], [11731, 2307.05, 130.95, 3.32635800600621, 2255.65, 147.65, 28.7101364437379, 2358.15, 153.6, 12.6110391928234], [11774, 2318.05, 129.7, 6.45389212432116, 2264.3, 144.55, 43.7112132617086, 2366.5, 156.1, 27.6121160107941], [11822, 2328.4, 129.75, 10.1080640038769, 2273.55, 141.05, 58.7122900796792, 2374.75, 159.1, 42.6131928287647], [11863, 2338.25, 130.9, 14.3696937692666, 2282.95, 137.35, 73.7133668976499, 2382.85, 162.95, 57.6142696467353], [11906, 2348.75, 132.55, 15.7683577604222, 2292.25, 133.75, 88.7144437156205, 2390.85, 161.6, 72.615346464706], [11950, 2357.5, 131.55, 15.8014970938832, 2300, 129.95, 103.715520533591, 2397.1, 157.45, 87.6164232826767], [11994, 2363.65, 127.1, 15.9566696582004, 2305.85, 125.8, 118.716597351562, 2403.15, 153.6, 102.617500100647], [12038, 2368.05, 120.1, 15.8999451870249, 2310.5, 121.05, 133.717674169532, 2407.85, 148.8, 117.618576918618], [12082, 2371.45, 112.3, 15.3762060644087, 2314.45, 115.7, 148.718750987503, 2411.9, 142.5, 132.619653736589], [12122, 2374.3, 104.9, 14.6000053166142, 2318.25, 110, 163.719827805474, 2417.3, 135.8, 147.620730554559], [12166, 2377.3, 98.5, 13.7378046081637, 2322.7, 104.7, 178.720904623444, 2423.3, 129.25, 162.62180737253], [12206, 2381.1, 93.1, 12.3286353102435, 2327.4, 100.5, -166.278018558585, 2428.9, 122.7, 177.622884190501], [12250, 2385.35, 88.45, 10.2431569824252, 2332.15, 98, -151.276941740614, 2434.05, 116.4, -167.376038991529], [12294, 2389.65, 84.45, 7.59608461129854, 2336.85, 96.9, -136.275864922644, 2439.25, 110.55, -152.374962173558], [12335, 2394, 81.3, 4.70007841481306, 2341.6, 96.6, -121.274788104673, 2444.5, 105.05, -137.373885355588], [12378, 2398.75, 79.2, 0.892459840490008, 2346.35, 96.9, -106.273711286702, 2450.6, 98.5, -122.372808537617], [12422, 2404.1, 77.3, -3.78126043674233, 2352.2, 97.75, -91.2726344687318, 2457.25, 90.8, -107.371731719646], [12463, 2409.45, 74.9, -8.23372783593256, 2359.3, 99.15, -76.2715576507611, 2462.55, 84.2, -92.3706549016756], [12506, 2414.35, 72.3, -12.3696892861242, 2366.75, 101.05, -61.2704808327905, 2468.4, 78.8, -77.369578083705], [12555, 2419.1, 69.9, -17.6101979573634, 2374.65, 103.2, -46.2694040148198, 2474, 71.7, -62.3685012657343], [12595, 2424.05, 67.85, -23.5179235267801, 2383.4, 105.45, -31.2683271968492, 2479.35, 63.7, -47.3674244477637], [12638, 2429.1, 66.25, -28.8951685500379, 2393.25, 107.7, -16.2672503788785, 2484.65, 57.3, -32.366347629793], [12682, 2434.45, 65.3, -34.4351200344182, 2403.5, 110.25, -1.2661735609079, 2488.6, 51.9, -17.3652708118224], [12724, 2439.75, 65.25, -40.0749839197396, 2413.65, 113.2, 13.7349032570627, 2492.55, 46.85, -2.36419399385176], [12766, 2445, 66.15, -45.8303613553685, 2423.85, 116.4, 28.7359800750334, 2495.85, 42.3, 12.6368828241189], [12809, 2450.25, 67.85, -51.1322186821056, 2434.6, 117.6, 43.737056893004, 2498.25, 38.6, 27.6379596420895], [12857, 2454.35, 69.15, -51.6121717908683, 2437.8, 114.05, 58.7381337109747, 2500.95, 34.3, 42.6390364600602], [12898, 2457.75, 66.95, -52.8483015952025, 2440.9, 113.95, 68.384283416866, 2503.85, 30.9, 57.6401132780308], [12942, 2459.05, 64.1, -51.7188480148635, 2442.15, 110.2, 78.1750123721087, 2506.25, 29, 72.6411900960015], [12986, 2459.7, 59.5, -51.8140669228715, 2445.1, 108.15, 89.840957910048, 2508.45, 27.65, 87.6422669139721], [13030, 2460.6, 55.05, -51.6299370372524, 2446.75, 105.35, 100.912120083004, 2509.75, 25.8, 102.643343731943], [13074, 2462.45, 51.05, -51.7338686914821, 2447.75, 103.2, 111.40485698299, 2510.8, 23.25, 117.644420549913], [13118, 2464.75, 47.95, -51.8450517022685, 2448.65, 101.55, 118.630088938545, 2512.05, 20.85, 132.645497367884], [13158, 2466.7, 46.55, -50.0546807028479, 2448.15, 99.55, 133.463748187837, 2514.55, 20.25, 147.646574185855], [13200, 2468.2, 46.45, -46.7285885454576, 2446.8, 97.1, 148.464825005807, 2517.75, 21.7, 162.647651003825], [13242, 2469.5, 47.05, -42.4406374241785, 2445.1, 95.05, 163.465901823778, 2522.95, 23.85, 177.648727821796], [13286, 2472.6, 46.1, -41.5916723410959, 2445.6, 92.9, 178.466978641749, 2525.65, 21.85, -168.360434098183], [13330, 2476, 44.4, -41.4792740474554, 2448.2, 91.1, -166.531944540281, 2527.65, 20.85, -159.719196693116], [13391, 2479.1, 42.45, -40.9640622956118, 2451.65, 89.7, -151.53086772231, 2531.2, 20.6, -149.857569214851], [13433, 2482.45, 40.65, -40.6002290341123, 2455.25, 88.25, -136.52979090434, 2534.65, 20.2, -139.374529834876], [13474, 2486.05, 39.3, -39.9534796792898, 2458.65, 86.65, -121.528714086369, 2539.45, 18.95, -126.299972006513], [13518, 2490.3, 38.55, -38.5592811788545, 2463.2, 82.85, -106.527637268398, 2544.55, 18, -111.527301060434], [13562, 2495.5, 36.6, -36.2317939208644, 2467.25, 79.35, -91.5265604504277, 2550.95, 18.05, -96.7346037529419], [13604, 2501.25, 33.95, -33.5182233591726, 2470.75, 75.9, -79.1496136627314, 2558.1, 18.05, -81.7335269349713], [13645, 2507.15, 30.95, -30.3944185939633, 2474.95, 70.95, -64.1485368447608, 2565.15, 18.05, -66.7324501170006], [13688, 2513.35, 27.4, -26.4851726468937, 2478.65, 64.65, -49.1474600267901, 2572.15, 18.05, -51.73137329903], [13730, 2520.9, 23, -23.4888321530253, 2484.05, 59.45, -34.1463832088195, 2579.35, 18.05, -36.7302964810593], [13774, 2529.4, 18.8, -20.5075815819712, 2488.7, 53.8, -19.1453063908488, 2587, 17.05, -21.7292196630887], [13819, 2538.2, 15.15, -16.7574747191702, 2494.2, 47.4, -4.14422957287817, 2595.05, 17.05, -6.72814284511803], [13867, 2546.75, 11.95, -12.0119095611547, 2499.65, 38.95, 10.8568472450925, 2602.95, 16.95, 8.27293397285261], [13909, 2555.9, 8, -8.17993905689481, 2506.6, 31.85, 25.8579240630631, 2611.2, 16.8, 23.2740107908233], [13950, 2565.6, 3.7, -5.6321190053992, 2514.8, 25.9, 40.8590008810338, 2619.6, 15.55, 38.2750876087939], [13994, 2575.45, -0.45, -3.66845752919067, 2524, 20.55, 55.8600776990044, 2628.65, 13.85, 53.2761644267646], [14038, 2585.5, -4.4, -1.62183140958914, 2533.85, 15.65, 70.861154516975, 2637.7, 12.7, 68.2772412447352], [14082, 2595.7, -7.65, -0.0310721327870858, 2543.7, 11.1, 85.8622313349457, 2647.7, 11.05, 83.2783180627058], [14124, 2606.1, -10, 1.69960611707179, 2554, 7.15, 100.863308152916, 2657.6, 10.25, 98.2793948806765], [14166, 2616.75, -12, 1.36052377506457, 2564, 4.05, 115.864384970887, 2668, 6.5, 113.280471698647], [14210, 2626.85, -14.05, 1.64298415807548, 2574.4, 2, 130.865461788858, 2678.85, 5, 128.281548516618], [14254, 2637.8, -15.65, 1.18274354944143, 2585.65, 1.05, 145.866538606828, 2691.65, 3.25, 143.282625334588], [14298, 2649.95, -16.6, -0.204674363876493, 2598.2, 1.35, 160.867615424799, 2702.95, 0.95, 158.283702152559], [14349, 2662.5, -17.2, -2.26563213982401, 2611.1, 2.5, 175.86869224277, 2715.45, -1.6, 173.28477897053], [14390, 2675.1, -17.6, -4.87688179326932, 2624.5, 4.4, -169.13023093926, 2728.95, -4.5, -171.7141442115], [14434, 2688.5, -17.9, -8.77893364883445, 2638.7, 6.9, -154.129154121289, 2741.95, -9, -156.713067393529], [14478, 2701.5, -18.5, -13.6043504403934, 2653.45, 10, -139.128077303319, 2755.5, -14.65, -141.711990575558], [14522, 2714.05, -20.1, -17.5238253543262, 2670.9, 9.45, -124.127000485348, 2769.45, -21.6, -126.710913757588], [14566, 2726.95, -23.55, -19.3836129958268, 2686.25, 6.15, -109.125923667377, 2784.4, -28.35, -111.709836939617], [14612, 2740.85, -28.9, -21.5686531996099, 2701.2, 2.25, -94.1248468494066, 2797.45, -35.75, -96.7087601216464], [14654, 2754.2, -35.85, -24.2133505151294, 2716.75, -1.25, -79.1237700314359, 2811.95, -44.05, -81.7076833036758], [14698, 2767.85, -43.65, -25.7990671891631, 2732.65, -7.15, -64.1226932134653, 2826, -52.25, -66.7066064857052], [14742, 2782.75, -52.05, -28.7219367047154, 2749.55, -11.5, -49.1216163954947, 2839.7, -60.9, -51.7055296677345], [14786, 2798.35, -59.85, -31.8249620986077, 2765.8, -17.85, -34.120539577524, 2852.7, -71.75, -36.7044528497639], [14826, 2812.8, -67.15, -31.920932414532, 2779.7, -27.65, -19.1194627595534, 2867.3, -82.2, -21.7033760317932], [14868, 2828, -76, -33.8878043959166, 2794.7, -34.45, -4.11838594158273, 2881, -92.4, -6.70229921382258], [14910, 2841.95, -84.95, -35.2120847453535, 2808.75, -41.95, 10.8826908763879, 2895.3, -103, 8.29877760414806], [14954, 2855.35, -95.15, -38.0772651783128, 2823.15, -51, 25.8837676943586, 2906.65, -116.4, 23.2998544221187], [14997, 2867, -105.9, -38.5483687063357, 2835.85, -61.8, 40.8848445123292, 2918.7, -127.8, 38.3009312400893], [15038, 2878.1, -117.55, -39.5441488241255, 2849.6, -71.35, 55.8859213302998, 2930.75, -138.3, 53.30200805806], [15082, 2889.15, -128.3, -39.9036128400837, 2863.65, -80.6, 70.8869981482705, 2942.6, -146.6, 68.3030848760306], [15128, 2900.45, -137.5, -39.7868413939609, 2876.35, -89.4, 85.8880749662412, 2954.7, -154.6, 83.3041616940013], [15170, 2912.15, -145.25, -39.4241048128339, 2887.65, -97.6, 100.889151784212, 2966.7, -162.6, 98.3052385119719], [15214, 2923.8, -151.95, -37.0393399315823, 2897.85, -109.3, 115.890228602182, 2978.65, -170.3, 113.306315329943], [15258, 2936.3, -160.1, -35.9706607723241, 2907.7, -117.25, 130.891305420153, 2991.05, -177.7, 128.307392147913], [15301, 2948.55, -168.35, -34.5916298612609, 2917.55, -124.75, 145.892382238124, 3003.05, -183.75, 143.308468965884], [15342, 2959.9, -175.6, -31.6331070815505, 2927.4, -134.3, 160.893459056094, 3015, -188.25, 158.309545783855], [15388, 2971.9, -182.85, -29.4833617586641, 2937.35, -141.85, 175.894535874065, 3027.1, -192.6, 173.310622601825], [15430, 2983.75, -189.35, -26.5992725390104, 2946.75, -150.05, -169.104387307964, 3038.95, -196.2, -171.688300580204], [15474, 2995.6, -195.25, -23.9909406858555, 2956.4, -157, -154.103310489994, 3050.9, -199.05, -156.687223762234], [15518, 3007.25, -200.25, -21.1849323446579, 2966.15, -163.55, -139.102233672023, 3062.6, -200.95, -141.686146944263], [15562, 3018.7, -204.3, -18.1644526351903, 2975.9, -169.75, -124.101156854052, 3074.05, -202, -126.685070126292], [15603, 3030.05, -207.4, -15.0469510034016, 2985.45, -175.45, -109.100080036082, 3085.25, -202.3, -111.683993308322], [15646, 3041.25, -209.65, -11.9354317399404, 2995, -180.5, -94.0990032181111, 3096.3, -201.9, -96.682916490351], [15690, 3052.35, -211.25, -8.93062616943874, 3004.65, -184.75, -79.0979264001405, 3107, -200.8, -81.6818396723803], [15734, 3063.35, -212.15, -6.09086777662173, 3014.45, -188.05, -64.0968495821699, 3117.45, -199, -66.6807628544097], [15778, 3074.3, -212.3, -3.37152193860656, 3024.25, -190.45, -49.0957727641992, 3127.6, -196.55, -51.6796860364391], [15822, 3085.1, -211.8, -0.701434973004055, 3034.1, -192.2, -34.0946959462286, 3137.55, -193.45, -36.6786092184684], [15866, 3095.9, -210.45, 1.96155602098394, 3043.9, -193.2, -19.0936191282579, 3147.3, -189.7, -21.6775324004978], [15910, 3106.5, -208.4, 4.64136245797427, 3053.75, -193.6, -4.09254231028728, 3156.85, -185.25, -6.67645558252713], [15954, 3116.95, -205.55, 7.34316377470174, 3063.55, -193.35, 10.9085345076834, 3166.25, -180.1, 8.32462123544351], [15998, 3127.4, -202, 9.7787344910234, 3073.45, -192.35, 25.909611325654, 3177.25, -174.5, 23.3256980534142], [16042, 3139.6, -197.8, 9.89812209634847, 3084.9, -190.15, 40.9106881436247, 3189.65, -171.85, 38.3267748713848], [16086, 3151.55, -193.85, 11.7003477792866, 3099.1, -187.95, 55.9117649615953, 3200.05, -167.05, 53.3278516893555], [16139, 3164.6, -190.65, 14.1555478125936, 3112.7, -187.95, 70.9128417795659, 3213.05, -162.65, 68.3289285073261], [16182, 3178.75, -188.2, 16.5184503533036, 3126.1, -186.95, 85.9139185975366, 3226.7, -157.1, 83.3300053252967], [16222, 3193.65, -185.95, 18.5397212306141, 3140.85, -185.3, 100.914995415507, 3239.2, -152.35, 98.3310821432674], [16266, 3209.2, -183.4, 19.3592538209312, 3155, -182, 115.916072233478, 3252.2, -147.85, 113.332158961238], [16316, 3224.15, -179.8, 20.4994955733977, 3169.55, -178.75, 130.917149051449, 3265.5, -142.85, 128.333235779209], [16360, 3239.05, -175, 21.4184727669069, 3184.55, -174.45, 145.918225869419, 3279.25, -137.3, 143.334312597179], [16403, 3254.2, -169.05, 22.5651661871506, 3198.5, -170.25, 160.91930268739, 3293.55, -130.75, 158.33538941515], [16446, 3268.8, -162.15, 23.4245545881504, 3212.9, -165.05, 175.92037950536, 3307.8, -123.9, 173.336466233121], [16490, 3283.05, -154.8, 24.0817971248201, 3227.6, -158.6, -169.078543676669, 3322.05, -116.4, -171.662456948909], [16534, 3297.25, -146.85, 24.3265117971179, 3242.1, -150.85, -154.077466858698, 3336.35, -108.25, -156.661380130938], [16578, 3311.5, -138.25, 23.9947305416758, 3256.3, -141.8, -139.076390040728, 3350.8, -99.75, -141.660303312967], [16625, 3325.5, -128.9, 23.0324244692328, 3270.3, -131.45, -124.075313222757, 3365.4, -91, -126.659226494997], [16667, 3339.65, -118.8, 21.144849373734, 3285.4, -118.7, -109.074236404786, 3380.3, -82, -111.658149677026], [16710, 3354.5, -107.75, 18.8080060752156, 3301, -105.05, -94.0731595868157, 3396.75, -72.45, -96.6570728590555], [16754, 3369.85, -96, 17.3266504252201, 3316.8, -93.2, -79.0720827688451, 3414.5, -62.7, -81.6559960410849], [16798, 3386.3, -83.95, 15.4975519571807, 3333.15, -80.55, -64.0710059508744, 3432.7, -52.95, -66.6549192231142], [16842, 3403.5, -71.8, 12.017904396457, 3349.45, -64.85, -49.0699291329038, 3451.05, -43.2, -51.6538424051436], [16893, 3421.3, -59.2, 6.71338007843232, 3368.45, -45.35, -34.0688523149331, 3469.6, -33.45, -36.652765587173], [16934, 3439.05, -45.65, 1.64414795405471, 3386.2, -25.95, -19.0677754969625, 3488.75, -23, -21.6516887692023], [16978, 3455.9, -30.85, -2.41258221132432, 3404.6, -7.65, -4.06669867899182, 3507.35, -11.95, -6.65061195123167], [17022, 3472.45, -14.8, -5.77028670732891, 3423.05, 10.05, 10.9343781389788, 3525.6, -0.3, 8.35046486673898], [17066, 3488.85, 1.7, -8.94501125783933, 3441.2, 28.1, 25.9354549569495, 3543.5, 12, 23.3515416847096], [17112, 3505.2, 18.45, -12.4308365548293, 3459.4, 47.3, 40.9365317749201, 3560.85, 24.9, 38.3526185026803], [17160, 3521.65, 35.4, -16.3927592427359, 3478.05, 67.7, 55.9376085928908, 3577.6, 38.4, 53.3536953206509], [17202, 3537.85, 52.75, -20.6241356512421, 3496.95, 88.8, 70.9386854108614, 3593.75, 52.35, 68.3547721386216], [17246, 3554, 70.85, -24.8691500002078, 3515.8, 110.15, 85.939762228832, 3609.5, 66.75, 83.3558489565922], [17290, 3569.95, 89.65, -28.9728811372974, 3534.45, 131.65, 100.940839046803, 3624.85, 81.6, 98.3569257745629], [17334, 3585.8, 109.1, -32.8260454061429, 3552.9, 153.25, 115.941915864773, 3639.85, 97.15, 113.358002592533], [17375, 3601.8, 128.6, -35.7596538887989, 3576.2, 169.8, 130.942992682744, 3655.5, 112.7, 128.359079410504], [17418, 3619.75, 144.75, -36.3592117161, 3598.05, 181.05, 145.944069500715, 3674.75, 124.6, 143.360156228475], [17462, 3639.8, 155.45, -35.3876860825597, 3619, 187.75, 160.945146318685, 3696.8, 132.55, 158.361233046445], [17505, 3662.05, 159.4, -36.3764172435768, 3641.05, 195, 175.946223136656, 3720.15, 136.75, 173.362309864416], [17546, 3685.25, 160.05, -38.7324904508653, 3666.6, 200.5, -169.052700045373, 3743.1, 139.15, -171.636613317613], [17590, 3709.65, 160.15, -41.7964773056099, 3693.15, 204.35, -154.051623227403, 3765.45, 139.7, -156.635536499643], [17632, 3735.5, 160.55, -45.7447116812125, 3717.75, 210.65, -139.050546409432, 3788, 138.6, -141.634459681672], [17674, 3761.25, 162.65, -47.5643262470557, 3742.25, 212.85, -124.049469591462, 3810.6, 138.1, -126.633382863701], [17718, 3786.65, 165, -48.9956448929001, 3766.75, 216.15, -109.048392773491, 3834.2, 138.55, -111.632306045731], [17762, 3811.05, 167.8, -48.1030253095555, 3791.45, 216.1, -94.0473159555203, 3859, 140.8, -96.6312292277601], [17806, 3835.15, 170.15, -45.4523211052637, 3814.6, 215.6, -79.0462391375496, 3885.35, 143.75, -81.6301524097895], [17858, 3858.8, 170.9, -40.9632760910376, 3835.85, 212.95, -64.045162319579, 3912.45, 146.45, -66.6290755918188], [17900, 3882.25, 169, -35.8299512102337, 3856.45, 208.55, -49.0440855016083, 3939.25, 148.75, -51.6279987738482], [17942, 3905.65, 164.8, -30.7534222971077, 3876.3, 202.65, -34.0430086836377, 3965.75, 149.45, -36.6269219558775], [17986, 3931.45, 156.65, -33.6705544596936, 3895.9, 193.75, -19.041931865667, 3983.25, 135.55, -21.6258451379069], [18030, 3954.4, 145.25, -36.2445536508986, 3915.3, 183.25, -4.04085504769638, 4000.95, 120.45, -6.62476831993622], [18074, 3973.4, 130.55, -38.3207259562655, 3935.1, 171.1, 10.9602217702743, 4018.95, 104.85, 8.37630849803442], [18124, 3988.9, 113.75, -39.5795475621861, 3954.1, 156.25, 25.9612985882449, 4035.7, 88.75, 23.3773853160051], [18166, 4003.45, 94.8, -43.325649822513, 3974.85, 142.7, 40.9623754062155, 4050.95, 70.95, 38.3784621339757], [18210, 4016.95, 76.75, -46.2989479703289, 3994.7, 126.45, 55.9634522241862, 4065.95, 51.9, 53.3795389519463], [18254, 4030.35, 60.35, -47.0560428218308, 4013.2, 108.9, 70.9645290421568, 4082.55, 34.4, 68.380615769917], [18298, 4044.55, 44.25, -47.7961213310228, 4029.3, 91.05, 85.9656058601275, 4097.3, 16.05, 83.3816925878876], [18342, 4059.45, 27.4, -50.8214787034914, 4046.05, 75.45, 100.966682678098, 4110.4, -3.45, 98.3827694058583], [18386, 4074.4, 10.35, -54.3842827215569, 4062.25, 59.7, 115.967759496069, 4121.9, -23.45, 113.383846223829], [18430, 4088.85, -6.6, -57.4796524937901, 4077.35, 43.2, 130.968836314039, 4132.45, -43.1, 128.3849230418], [18474, 4102.95, -24.25, -61.4281584443831, 4093.9, 28.8, 145.96991313201, 4143.35, -61.85, 143.38599985977], [18518, 4116.15, -41.1, -64.73964288165, 4111.35, 14, 160.970989949981, 4155.25, -78.95, 158.387076677741], [18562, 4129.15, -56.7, -67.0719163500167, 4128.2, -0.9, 175.972066767951, 4168, -94.9, 173.388153495711], [18610, 4142.8, -71.05, -69.3171318863525, 4144.6, -14.45, -169.026856414078, 4180.75, -110.3, -171.610769686318], [18654, 4156.8, -83.4, -70.1267581572163, 4158.95, -28.15, -154.025779596107, 4193.8, -124.7, -156.609692868347], [18698, 4171.05, -94.7, -70.3442321060362, 4172.2, -40.85, -139.024702778137, 4206.95, -138.1, -141.608616050377], [18742, 4184.85, -105.65, -70.8571217613451, 4185.95, -52.25, -124.023625960166, 4220, -150.3, -126.607539232406], [18788, 4198.25, -116.35, -72.5420407390983, 4201.15, -62.6, -109.022549142195, 4232.25, -161.5, -111.606462414435], [18830, 4211.5, -126.45, -74.7543138395762, 4216.75, -72.15, -94.0214723242248, 4243.9, -171.85, -96.6053855964646], [18880, 4224.7, -135.45, -76.8898376945515, 4231.95, -80.9, -79.0203955062542, 4255.4, -181.4, -81.604308778494], [18922, 4237.9, -143.45, -77.8952721960375, 4245.95, -88.85, -64.0193186882835, 4267.65, -189.9, -66.6032319605233], [18966, 4250.95, -150.25, -77.9398021886958, 4258.95, -96.05, -49.0182418703129, 4280.55, -197.15, -51.6021551425527], [19010, 4263.85, -156.05, -77.4037031202768, 4271.25, -102.35, -34.0171650523422, 4293.8, -203.3, -36.6010783245821], [19054, 4276.55, -161.15, -76.7303840609621, 4283.5, -107.75, -19.0160882343716, 4307.25, -208.45, -21.6000015066114], [19098, 4289.05, -165.65, -76.109291660213, 4295.85, -112.25, -4.01501141640094, 4320.65, -212.55, -6.59892468864076], [19144, 4301.55, -169.55, -75.4564451543713, 4307.95, -115.9, 10.9860654015697, 4333.85, -215.7, 8.40215212932988], [19186, 4314.1, -172.6, -74.5763391751658, 4319.55, -118.6, 25.9871422195403, 4347, -218, 23.4032289473005], [19230, 4326.65, -174.7, -73.3061421712644, 4330.55, -120.45, 40.988219037511, 4360.25, -219.35, 38.4043057652712], [19274, 4339.15, -175.95, -71.5711225862042, 4341.05, -121.55, 55.9892958554816, 4373.75, -219.7, 53.4053825832418], [19318, 4351.35, -176.35, -69.3694950885872, 4351.05, -121.95, 70.9903726734523, 4387.55, -218.85, 68.4064594012124], [19362, 4363.35, -175.95, -66.7364599133358, 4360.75, -121.75, 85.9914494914229, 4401.6, -216.85, 83.4075362191831], [19404, 4375.2, -174.9, -63.7190294709791, 4370.05, -120.9, 100.992526309394, 4415.8, -213.6, 98.4086130371537], [19447, 4387, -173, -60.3630713890451, 4378.9, -119.45, 115.993603127364, 4430, -209.25, 113.409689855124], [19490, 4398.7, -170.45, -56.7022971465021, 4387.35, -117.45, 130.994679945335, 4444.05, -203.8, 128.410766673095], [19532, 4410.3, -167, -52.7464897386416, 4395.4, -115, 145.995756763306, 4457.95, -197.25, 143.411843491066], [19579, 4422.1, -163.15, -49.2561566723648, 4403.65, -111.85, 160.996833581276, 4471.1, -190.15, 158.412920309036], [19632, 4433.8, -158.25, -45.9080530506549, 4411.85, -108.15, 175.997910399247, 4483.85, -182.45, 173.413997127007], [19674, 4445.3, -152.7, -42.4708032987331, 4420, -104, -169.001012782783, 4496.4, -173.95, -171.584926055022], [19718, 4456.5, -146.65, -38.7963410801317, 4428.15, -99.5, -153.999935964812, 4508.85, -164.4, -156.583849237052], [19762, 4467.5, -139.7, -34.9347302262701, 4436.2, -94.6, -138.998859146841, 4521.05, -153.85, -141.582772419081], [19812, 4478.35, -132.15, -31.0348805254591, 4444.3, -89.3, -123.997782328871, 4532.9, -142.65, -126.58169560111], [19850, 4489.05, -123.9, -27.2065645709827, 4452.4, -83.5, -108.9967055109, 4544.4, -130.8, -111.58061878314], [19897, 4499.9, -114.95, -23.5383086358986, 4460.6, -77.05, -93.9956286929293, 4555.5, -118.4, -96.5795419651692], [19938, 4510.5, -105.35, -20.0502832864349, 4468.95, -70, -78.9945518749587, 4566.2, -105.5, -81.5784651471985], [19982, 4521.25, -95.25, -17.6098440193003, 4477.85, -61.45, -63.9934750569881, 4576.45, -92.75, -66.5773883292279], [20026, 4532.05, -84.55, -15.7616286375041, 4487.15, -51.8, -48.9923982390174, 4586.65, -79.9, -51.5763115112573], [20070, 4542.5, -73.15, -14.1886009435267, 4496.65, -41.25, -33.9913214210468, 4596.75, -66.55, -36.5752346932866], [20114, 4552.85, -61, -12.7874884209646, 4506.3, -29.95, -18.9902446030761, 4606.85, -52.8, -21.574157875316], [20155, 4562.85, -47.85, -10.7033635143484, 4515.7, -18.9, -3.98916778510547, 4617, -38.05, -6.57308105734532], [20198, 4572.65, -34.05, -8.44335193654228, 4524.85, -7.55, 11.0119090328652, 4627.05, -22.75, 8.42799576062533], [20242, 4582.7, -19.6, -7.34678436407851, 4534.25, 5.4, 26.0129858508358, 4637, -7.8, 23.429072578596], [20286, 4592.9, -4.7, -7.26618114782993, 4544.05, 20.15, 41.0140626688065, 4646.9, 7, 38.4301493965666], [20329, 4603, 10.55, -7.87039761338881, 4554.15, 36.3, 56.0151394867771, 4656.75, 22.15, 53.4312262145373], [20374, 4613.05, 26.35, -8.87777546603179, 4564.5, 53.6, 71.0162163047478, 4666.6, 37.65, 68.4323030325079], [20415, 4622.85, 42.8, -10.1288810826456, 4574.95, 71.6, 86.0172931227184, 4676.45, 53.5, 83.4333798504786], [20458, 4632.5, 60.15, -11.6074048676458, 4585.5, 90.25, 101.018369940689, 4686.4, 69.55, 98.4344566684492], [20502, 4642, 78.25, -13.3938201667287, 4596.1, 109.6, 116.01944675866, 4696.4, 85.7, 113.43553348642], [20546, 4651.35, 97.15, -14.6836471845101, 4606.45, 128.9, 131.02052357663, 4706.4, 102.7, 128.43661030439], [20586, 4660.55, 116.6, -15.949098834227, 4616.65, 148.75, 146.021600394601, 4716.2, 120.3, 143.437687122361], [20629, 4669.9, 136.4, -17.5464787233542, 4626.95, 169.6, 161.022677212572, 4725.8, 138.35, 158.438763940332], [20675, 4679.2, 156.6, -19.5388069710314, 4637.5, 191.45, 176.023754030542, 4735.05, 156.8, 173.439840758302], [20717, 4688.3, 177.25, -21.735422699143, 4648.05, 213.95, -168.975169151487, 4744.1, 175.65, -171.559082423727], [20758, 4697.55, 198.55, -23.9299584663647, 4658.5, 236.9, -153.974092333516, 4753, 194.95, -156.558005605756], [20802, 4707.45, 219.1, -30.9655816632757, 4667.5, 255.35, -138.973015515546, 4753.25, 203.9, -156.558005605756], [20846, 4708.7, 235.7, -28.9005518507499, 4660.95, 256.9, -141.102258434582, 4753.2, 205.95, -161.554120431187], [20890, 4705, 241.95, -28.9146442943205, 4654.1, 260.35, -152.670629845475, 4750.65, 207, -161.139773184561], [20930, 4696.15, 239.7, -26.3175878603572, 4648.8, 263, -164.661540832735, 4749.2, 213.35, -165.43785285929], [20974, 4686.65, 232.05, -25.9802442581565, 4647.15, 265.45, -168.517383993923, 4742.95, 218.75, -178.176086818711], [21018, 4678.15, 224.4, -25.6922549628618, 4645.85, 265.75, -168.560097138452, 4736.95, 221.9, 169.595706530407], [21062, 4672.5, 219.25, -25.8996682304024, 4642.9, 264.55, -167.237462390706, 4730.5, 222, 164.686352660207], [21109, 4669, 217.35, -26.7425674447506, 4637.3, 262.8, -167.689731208467, 4725.4, 218.45, 176.091731939341], [21150, 4666.05, 217.9, -27.1892664279694, 4629.7, 260.55, -157.490889392989, 4721.05, 213.6, -168.907191242688], [21194, 4662.55, 219.35, -26.797325188385, 4623, 258, -142.489812575019, 4716.7, 210.7, -153.906114424718], [21238, 4657.95, 220.1, -25.8761819053588, 4617.75, 256.95, -127.488735757048, 4712.5, 211, -138.905037606747], [21282, 4653.05, 220.25, -25.040112797316, 4613.75, 257.8, -112.487658939077, 4708.25, 213.65, -123.903960788777], [21326, 4647.95, 220.85, -24.4933376151894, 4610.1, 259.8, -97.4865821211067, 4703.9, 217.05, -108.902883970806], [21373, 4643.45, 222.6, -24.1689086344411, 4606.1, 262.3, -82.485505303136, 4699.6, 220.35, -93.9018071528352], [21414, 4639.3, 225.75, -24.0448695207152, 4601.55, 265.25, -67.4844284851654, 4695.25, 223.45, -78.9007303348646], [21458, 4635.4, 230, -24.0214162777316, 4596.75, 268.65, -52.4833516671947, 4690.95, 226.65, -63.8996535168939], [21502, 4631.45, 235, -23.9577342799767, 4591.9, 272.75, -37.4822748492241, 4686.7, 230.65, -48.8985766989233], [21546, 4627.4, 240.4, -23.7142686176734, 4587.45, 277.7, -22.4811980312535, 4682.6, 235.9, -33.8974998809526], [21590, 4623.2, 246.1, -23.3270133499756, 4583.25, 283.45, -7.48012121328281, 4678.5, 242.4, -18.896423062982], [21633, 4619.75, 252, -24.2930961154337, 4581.8, 287.65, 7.52095560468783, 4676.6, 244.85, -11.2012885894474], [21674, 4618.3, 255.65, -24.3508387347571, 4581.55, 287.25, 14.0178639047782, 4675.05, 244.95, -12.6019512722079], [21718, 4618.5, 255.8, -23.9261794243321, 4580.75, 287.15, 15.7242749328913, 4675.8, 244.95, -9.19581225502097], [21762, 4619.75, 253.4, -24.1271697147632, 4582.6, 287.15, 20.3236318410924, 4677, 244.85, -2.41965403747024], [21806, 4622.1, 249.85, -25.349815886635, 4586.95, 287.15, 30.8921550107664, 4681, 242.6, 11.9458627899041], [21854, 4625.95, 246.4, -26.0018070909212, 4591.85, 284.95, 45.7373393554891, 4682.95, 240.5, 26.1664978149223], [21907, 4630.4, 243.3, -27.1154084206515, 4596.2, 283.5, 60.1475919063727, 4686.3, 237.35, 41.1675746328929], [21948, 4634.55, 241.5, -26.6964818080737, 4598.7, 280.05, 71.6840618321878, 4690.45, 233.95, 56.1686514508636], [21990, 4639.2, 239.7, -27.1112088491874, 4602.5, 278.25, 85.2003906861301, 4694.55, 231.15, 71.1697282688342], [22034, 4643.65, 238.05, -26.7898851231719, 4606.2, 276.25, 97.3077712545055, 4698.7, 229.55, 86.1708050868049], [22078, 4647.65, 236.65, -25.8674946336728, 4610, 274.25, 109.754228165672, 4703.1, 229.1, 101.171881904776], [22121, 4652, 235.25, -25.4907406976595, 4614.3, 273.85, 122.044009024659, 4707.55, 229.4, 116.172958722746], [22164, 4656.55, 234.6, -25.6253772828159, 4620.4, 274.15, 137.04508584263, 4711.95, 230.25, 131.174035540717], [22205, 4661.65, 234.6, -24.6855989538898, 4627.15, 272.15, 152.0461626606, 4717.7, 230.5, 146.175112358687], [22246, 4668.7, 234.55, -25.1663627540239, 4631.85, 273.7, 166.804405042717, 4724.55, 230.15, 161.176189176658], [22290, 4675.05, 235.55, -23.8586478961207, 4635.85, 271.5, 179.575118237782, 4732.35, 228.8, 176.177265994629], [22334, 4682.1, 234.75, -24.412223851507, 4640.45, 266.85, -165.423804944248, 4737.75, 222.7, -168.821657187401], [22384, 4688.55, 230.95, -24.9776756014221, 4646.1, 262.8, -150.422728126277, 4741.65, 218.3, -153.82058036943], [22426, 4693.2, 224.4, -25.6982311268643, 4651.95, 258.65, -135.421651308306, 4746.85, 213, -138.819503551459], [22470, 4696.9, 216.8, -25.1267153122698, 4657.95, 252.95, -120.420574490336, 4752.2, 208.7, -123.818426733489], [22513, 4701.65, 208.75, -26.6933812720384, 4664.95, 248.2, -105.419497672365, 4755.9, 202.45, -108.878667206627], [22554, 4706.95, 201.2, -30.3686854926506, 4670.5, 244.5, -90.4184208543944, 4758.1, 193.15, -93.8775903886563], [22598, 4710.35, 194.95, -32.7786071472358, 4675.05, 239.65, -75.4173440364238, 4762.1, 183.55, -78.8765135706856], [22642, 4712.75, 189.2, -34.9860550824327, 4679.1, 233.9, -60.4162672184531, 4764.65, 174.05, -63.875436752715], [22682, 4714.8, 183.4, -36.4108788372829, 4683.05, 228.1, -45.4151904004825, 4767.75, 165.65, -48.8743599347443], [22726, 4717.4, 177.3, -38.8690361159632, 4688.25, 223.2, -30.4141135825118, 4770.2, 157.2, -33.8732831167737], [22770, 4719.95, 171.5, -41.0053537073107, 4694.7, 219.25, -15.4130367645412, 4772.8, 151.35, -18.872206298803], [22814, 4722.55, 166.95, -42.9427560567261, 4700.6, 215.9, -0.411959946570552, 4775.55, 146.15, -3.87112948083239], [22858, 4725.7, 163.45, -44.7566783610266, 4705.6, 213.25, 14.5891168714001, 4778.35, 141.15, 11.1299473371383], [22903, 4729.25, 161.2, -46.5187663669352, 4709.95, 211.25, 29.5901936893707, 4780.7, 136.65, 26.1310241551089], [22946, 4733, 159.55, -48.1164228395664, 4713.9, 210.05, 44.5912705073414, 4782.85, 133.15, 41.1321009730795], [22990, 4736.7, 158.65, -49.3012719009202, 4717.65, 209.5, 59.592347325312, 4785.2, 130.95, 56.1331777910502], [23034, 4740.05, 158.5, -49.8367786445281, 4721.1, 209.6, 74.5934241432827, 4788, 130.35, 71.1342546090208], [23078, 4743.1, 159.1, -49.6184605111935, 4724.2, 210.2, 89.5945009612533, 4791.35, 131.3, 86.1353314269915], [23123, 4746.1, 160.6, -48.7071122132647, 4726.85, 211.35, 104.595577779224, 4795.1, 133.65, 101.136408244962], [23166, 4749.05, 162.75, -47.2756033497802, 4729, 213.1, 119.596654597195, 4799.05, 137.2, 116.137485062933], [23210, 4751.95, 165.8, -45.5103337011875, 4730.8, 215.4, 134.597731415165, 4803.1, 141.8, 131.138561880903], [23254, 4755.05, 169.55, -43.5173023294741, 4732.25, 218.4, 149.598808233136, 4807.05, 147.35, 146.139638698874], [23298, 4758.2, 174.1, -41.2881704371785, 4733.35, 222, 164.599885051107, 4810.9, 153.9, 161.140715516845], [23341, 4761.9, 179.1, -39.1753106868341, 4736.7, 224.6, 179.600961869077, 4817.8, 158.55, 176.141792334815], [23387, 4768.25, 181.8, -37.0238319151865, 4738.55, 222.2, -167.809419258408, 4822.95, 158.55, -168.92160901547], [23430, 4774.85, 181.5, -34.5354251698469, 4740.95, 220.7, -158.275359691228, 4828.8, 160.25, -153.980869212643], [23474, 4780.3, 179.4, -31.7880679985706, 4744.65, 218.6, -148.363312738919, 4835.7, 162.2, -138.979792394673], [23518, 4785.95, 176, -29.5981988320789, 4749.15, 213.7, -133.362235920948, 4844.8, 159.35, -123.978715576702], [23561, 4791.4, 171.8, -24.1361570870723, 4752.25, 206.5, -118.361159102978, 4849, 163.15, -108.977638758731], [23603, 4796.7, 167.25, -18.9295833686151, 4754.85, 201.65, -104.124645032688, 4854.5, 167.45, -93.9765619407607], [23646, 4801.1, 164.1, -11.7564940583242, 4757.3, 194.6, -89.1235682147169, 4859.05, 173.45, -78.97548512279], [23686, 4805.45, 162.05, -4.13260516211483, 4758.5, 186.5, -74.1224913967463, 4862.9, 178.95, -63.9744083048194], [23726, 4810.35, 161.1, 4.69791039312362, 4760.15, 178, -59.1214145787756, 4864.7, 186.6, -48.9733314868487], [23769, 4816.2, 161.05, 12.37140971853, 4762.55, 168.9, -44.120337760805, 4866.45, 191.65, -34.0341690849058], [23810, 4822.65, 161.2, 18.8804045049152, 4768.25, 161.05, -29.1192609428343, 4868.4, 195.3, -21.0561503647777], [23854, 4829.85, 161.6, 24.5226404974386, 4774.85, 156.3, -14.1181841248637, 4870.8, 200.05, -7.49607202825131], [23896, 4837.45, 162.05, 32.062341948634, 4784.85, 150, 0.882892693106971, 4872.9, 205.15, 6.59345310084384], [23938, 4846.65, 163.45, 38.2879387668993, 4794.15, 146.05, 15.8839695110776, 4875.9, 210.6, 21.3887096430534], [23982, 4856.05, 165.7, 43.8113576937191, 4804.4, 144.15, 30.8850463290483, 4880.05, 216.7, 36.3897864610241], [24026, 4865.2, 169.6, 49.2399924284505, 4815.85, 144.3, 45.8861231470189, 4883.3, 222.6, 51.3908632789947], [24070, 4874.05, 174.65, 53.9577368877506, 4827.15, 145.3, 60.8871999649895, 4887.4, 228.15, 66.3919400969653], [24119, 4882.4, 180.45, 58.1080873018839, 4838.25, 147.1, 75.8882767829602, 4892.7, 234.6, 81.393016914936], [24162, 4890.7, 186.95, 61.7203431333095, 4849.25, 150.25, 90.8893536009308, 4898.35, 241.5, 96.3940937329066], [24206, 4899, 194.1, 64.9662954823171, 4859.95, 154.85, 105.890430418901, 4903.85, 248.8, 111.395170550877], [24250, 4907.55, 201.7, 67.910851723182, 4870.35, 160.7, 120.891507236872, 4909.3, 256.65, 126.396247368848], [24294, 4916, 210.05, 70.4918031775349, 4880.35, 167.7, 135.892584054843, 4914.9, 265.05, 141.397324186819], [24338, 4924.2, 219.05, 72.6422601988608, 4890.1, 175.6, 150.893660872813, 4920.9, 274.1, 156.398401004789], [24382, 4932.25, 228.9, 74.3663479068346, 4899.55, 184.35, 165.894737690784, 4927.35, 283.75, 171.39947782276], [24422, 4940.8, 239.55, 72.9240422072016, 4908.5, 193.1, -179.104185491245, 4937.6, 287.85, -173.599445359269], [24466, 4950.1, 245.55, 72.3411446829752, 4916.6, 198.45, -164.103108673275, 4946.2, 291.55, -158.598368541299], [24510, 4959.8, 247.25, 72.01072987566, 4924.6, 200.4, -149.102031855304, 4953.05, 287.95, -143.597291723328], [24554, 4968.85, 244.1, 74.4003161078915, 4933.1, 197.75, -134.100955037333, 4959.15, 291.15, -130.074273056294], [24598, 4976.9, 239.65, 76.9386553432324, 4942.9, 193.15, -119.099878219363, 4965.25, 289.5, -117.269288055635], [24639, 4983.85, 235.6, 79.700788545436, 4953.7, 188.15, -104.098801401392, 4971.7, 287.15, -103.955753540459], [24682, 4990.35, 232.25, 82.3390609037532, 4964.45, 183.9, -89.0977245834214, 4978.3, 286.9, -90.077692917047], [24726, 4997.15, 230.65, 83.7343557255468, 4973.95, 181.65, -74.0966477654508, 4985.35, 285.45, -76.2733186957304], [24770, 5004.65, 230.15, 83.9046642761538, 4981.55, 180.9, -59.0955709474802, 4992.6, 284.35, -62.7436515213627], [24814, 5012.45, 230.35, 83.3533722066231, 4988, 181.35, -44.0944941295095, 4999.95, 284.25, -49.4832247237098], [24868, 5020.3, 231.45, 82.456941374176, 4994, 182.7, -29.0934173115389, 5007.55, 285, -36.486680419275], [24910, 5027.8, 233.25, 81.4512360882546, 5000.05, 184.8, -14.0923404935682, 5015.4, 286.6, -23.7487673464433], [24952, 5034.85, 235.4, 80.5160280120823, 5006.35, 187.3, 0.908736324402433, 5023, 287.15, -9.97464672503398], [24994, 5041.6, 236.85, 79.8926198835132, 5012.7, 188.9, 15.9098131423731, 5030.2, 287.15, 5.02643009293667], [25038, 5048.1, 236.9, 79.6372552259379, 5019.1, 189.1, 30.9108899603437, 5037, 287.15, 19.8999652489029], [25080, 5054.35, 235.9, 79.649697967067, 5025.45, 188.25, 45.9119667783144, 5043.55, 287.15, 34.0649053143203], [25123, 5060.3, 234.55, 79.7571505469279, 5031.75, 187, 60.913043596285, 5049.85, 287.15, 47.6947724122666], [25166, 5066.15, 233.5, 79.767848427432, 5037.8, 186.05, 75.9141204142557, 5056.05, 287.15, 60.9800824672821], [25210, 5071.8, 233.05, 79.526276636144, 5043.5, 185.9, 90.9151972322263, 5062.2, 287.15, 74.108766239786], [25254, 5077.45, 233.35, 78.9549981373002, 5048.7, 186.4, 105.916274050197, 5068.35, 287.15, 87.2050264591258], [25298, 5082.95, 233.85, 78.0700051262028, 5053.45, 187.3, 120.917350868168, 5074.55, 287.15, 100.303527863549], [25341, 5088.35, 234.35, 76.9623502686177, 5057.75, 188.2, 135.918427686138, 5080.65, 287.15, 113.364046153064], [25386, 5093.5, 234.6, 75.7585752749446, 5061.75, 188.9, 150.919504504109, 5086.7, 287.15, 126.298275823044], [25427, 5098.55, 234.5, 74.5711567056425, 5065.6, 189.4, 165.92058132208, 5092.6, 287.15, 139.017157341367], [25471, 5103.3, 234.15, 73.4293242204491, 5069.45, 189.75, -179.07834185995, 5098.4, 287.15, 151.483826768134], [25515, 5107.8, 233.8, 72.2835239272712, 5073.15, 190.15, -164.077265041979, 5104.15, 287.15, 163.75046816216], [25558, 5112.1, 233.6, 71.0117945150735, 5076.7, 190.7, -149.076188224009, 5109.9, 287.15, 175.945241223168], [25602, 5116.3, 233.5, 69.4995124143746, 5079.95, 191.5, -134.075111406038, 5115.7, 287.15, -171.777479999735], [25644, 5120.3, 233.45, 67.6494159513137, 5082.8, 192.65, -119.074034588067, 5121.65, 287.15, -159.300277977015], [25686, 5124.25, 233.6, 65.430060359027, 5085.2, 194.15, -104.072957770097, 5127.7, 287.15, -146.568206561376], [25726, 5128.15, 233.8, 62.8409278357642, 5087.2, 196.15, -89.071880952126, 5133.85, 287.15, -133.576273765343], [25770, 5131.75, 234.25, 59.9196999257591, 5088.9, 198.6, -74.0708041341553, 5140.15, 287.15, -120.317185415345], [25813, 5135.3, 234.7, 56.6883058218817, 5090.4, 201.6, -59.0697273161847, 5146.6, 287.15, -106.775007944281], [25854, 5138.75, 235.5, 53.1355019748433, 5091.75, 205.2, -44.068650498214, 5153.2, 287.15, -92.9309780929216], [25897, 5141.9, 236.45, 49.2512375025707, 5093, 209.45, -29.0675736802434, 5159.95, 287.15, -78.7482990558019], [25941, 5144.85, 237.75, 45.0139909966851, 5094.15, 214.45, -14.0664968622728, 5166.8, 287.15, -64.2468281255416], [25982, 5147.85, 239.45, 40.3981068136304, 5095.35, 220.45, 0.934579955697881, 5173.75, 287.15, -49.5879515800899], [26026, 5150.45, 241.75, 35.3968064439151, 5096.7, 227.45, 15.9356567736685, 5180.7, 287.15, -34.8720211739384], [26070, 5152.95, 244.5, 30.5851191676639, 5098.5, 234.75, 30.9367335916392, 5187.15, 287.15, -20.7362383227738], [26114, 5155.35, 247.85, 25.6987251157355, 5100.55, 242.4, 45.9378104096098, 5193.45, 287.15, -7.15544231289964], [26159, 5157.6, 251.55, 20.6318497664073, 5102.75, 250.7, 60.9388872275805, 5199.5, 287.15, 6.05514168956573], [26202, 5159.9, 255.65, 15.3284320632508, 5105.2, 259.75, 75.9399640455511, 5205.1, 287.15, 18.4726983654357], [26246, 5162.2, 260.05, 9.76711616169703, 5108.1, 269.55, 90.9410408635217, 5210.15, 287.15, 29.7865714611034], [26289, 5164.65, 264.95, 3.93125455324205, 5111.6, 279.95, 105.942117681492, 5216.25, 287.15, 44.0190700539353], [26330, 5167.25, 270.4, -0.93098202845117, 5118.55, 288.8, 120.943194499463, 5221.95, 287.15, 59.0201468719059], [26374, 5170.55, 274.55, -0.449001384386787, 5124.95, 287.95, 135.944271317434, 5228.8, 287.15, 74.0212236898766], [26419, 5176.7, 275.6, -0.557273803308817, 5128.5, 288.2, 146.222997869782, 5234.5, 287.15, 88.1350185380073], [26462, 5182.5, 273.95, -0.252086502996036, 5133, 287.6, 154.177212601713, 5239, 287.15, 98.7058505698552], [26506, 5187.8, 270.8, -0.00697019800528587, 5138.25, 287.15, 164.978498199197, 5242.8, 287.15, 107.505137120733], [26550, 5193.75, 267.75, -0.0431202746687018, 5144.5, 287.15, 179.5220264995, 5247.65, 287.1, 119.512194366582], [26593, 5201.2, 265.95, -0.150074367703315, 5151, 287.15, -165.47689668253, 5252.25, 286.85, 134.479677800172], [26643, 5209, 265.55, 0.260145270457212, 5156.7, 286.65, -150.475819864559, 5260.1, 287.15, 149.480754618143], [26686, 5217.35, 266.45, 0.906255842165237, 5163.7, 285.45, -135.474743046588, 5269.1, 287.15, 164.481831436114], [26730, 5225.9, 268.05, 1.55864996551411, 5172.6, 284.3, -120.473666228618, 5277.6, 287.15, 179.482908254084], [26774, 5234.95, 269.4, 1.6043014721837, 5182.05, 284.2, -105.472589410647, 5287.45, 287.15, -165.516014927945], [26818, 5244.6, 270.15, 0.566700501136023, 5192.35, 286.1, -90.4715125926765, 5298, 287.15, -150.514938109974], [26862, 5254.7, 270.55, 0.00355773990346176, 5206.45, 287.15, -75.4704357747058, 5309.35, 287.15, -135.513861292004], [26907, 5266.8, 270.4, -0.000862163467833957, 5218.65, 287.15, -60.4693589567352, 5322.4, 287.15, -120.512784474033], [26951, 5280.1, 269.8, -0.0606489661814602, 5231.65, 287.15, -45.4682821387645, 5335.35, 287.05, -105.511707656062], [26994, 5293.85, 268.9, -0.148034459504741, 5245.55, 287.15, -30.4672053207939, 5348.1, 286.85, -90.5106308380917], [27036, 5308, 268.15, -0.233885800818775, 5259.45, 287.15, -15.4661285028232, 5361.75, 286.7, -75.5095540201211], [27081, 5323.05, 268, -0.122366918753921, 5273.9, 287.15, -0.465051684852579, 5378.5, 286.9, -60.5084772021504], [27122, 5340.25, 268.65, -1.25388067336788, 5289.8, 287.15, 14.5360251331181, 5391.75, 284.9, -45.5074003841798], [27165, 5357, 267.5, -7.69822395132657, 5302.8, 287.15, 29.5371019510887, 5399.75, 274.05, -30.5063235662092], [27206, 5367.55, 262.3, -14.5531075103131, 5313.25, 287.15, 44.5381787690594, 5411.1, 261.75, -15.5052467482385], [27250, 5373.35, 253.55, -20.5738949791245, 5324.2, 286.8, 59.53925558703, 5422.85, 249.8, -0.504169930267858], [27294, 5377.85, 243.7, -25.6509980537585, 5336.5, 284.85, 74.5403324050007, 5431.6, 239.2, 14.4969068877028], [27338, 5382.6, 235.7, -28.5012938714668, 5349.5, 280.2, 89.5414092229713, 5439.85, 231.1, 29.4979837056734], [27392, 5388.45, 230, -31.1780823043359, 5361.2, 274.85, 104.542486040942, 5447.3, 222.75, 44.4990605236441], [27434, 5395.45, 225.6, -35.2866480289665, 5371.75, 271.1, 119.543562858913, 5454.55, 212.5, 59.5001373416147], [27478, 5403.5, 221.8, -41.2885462791621, 5382.85, 269.25, 134.544639676883, 5459.95, 201.55, 74.5012141595854], [27522, 5412.15, 218.15, -48.3338478194732, 5394.8, 268.45, 149.545716494854, 5463.4, 191.35, 89.502290977556], [27566, 5419.95, 215.3, -52.1526051120118, 5403.95, 262.9, 164.546793312825, 5466.45, 182.45, 104.503367795527], [27610, 5426.45, 210.7, -53.2335053981269, 5408.3, 258.3, 179.547870130795, 5470.7, 174.85, 119.504444613497], [27652, 5431, 204.65, -52.8052002737286, 5412.55, 253.1, -165.451053051234, 5475.75, 169.8, 134.505521431468], [27694, 5433.8, 198.5, -50.3830289094309, 5415.7, 245.8, -150.449976233264, 5481.4, 166.4, 149.506598249439], [27738, 5437.1, 191.15, -49.8184186100235, 5421.05, 241.9, -135.448899415293, 5487.15, 163.65, 164.507675067409], [27782, 5441.05, 185.4, -48.8541382509976, 5425.25, 238.05, -120.447822597322, 5492.3, 161.3, 179.50875188538], [27826, 5445.8, 181.75, -47.0109602182995, 5427.75, 233.65, -105.446745779352, 5497.2, 159.15, -165.490171296649], [27871, 5450.85, 179.55, -44.3084078923181, 5428.65, 229.5, -90.445668961381, 5502.2, 157.65, -150.489094478679], [27918, 5455.85, 178.3, -40.8738794976896, 5428.95, 225.6, -75.4445921434103, 5507.55, 157.6, -135.488017660708], [27958, 5460.15, 177.45, -36.9955065652846, 5429.8, 222.35, -60.4435153254397, 5513.15, 159.55, -120.486940842738], [28003, 5464.05, 176.75, -32.7899436510717, 5431.2, 219.75, -45.442438507469, 5518.6, 163.45, -105.485864024767], [28046, 5467.8, 176.7, -28.1955040849147, 5432.65, 217.7, -30.4413616894984, 5523.75, 168.9, -90.4847872067963], [28090, 5471.95, 177.4, -24.0596619160332, 5434.15, 216.45, -15.4402848715277, 5528.15, 174.45, -75.4837103888256], [28134, 5476.65, 179.05, -21.106881558648, 5435.5, 215.6, -0.439208053557101, 5532.85, 178, -60.482633570855], [28175, 5482.15, 180.2, -21.844050150812, 5437.6, 214.9, 14.5618687644135, 5535.75, 175.55, -48.9199826334335], [28218, 5486.6, 180, -23.188959976737, 5441, 214.35, 29.5629455823842, 5538.1, 172.75, -36.233171432152], [28262, 5489.3, 178.3, -23.6903830038955, 5445.35, 214, 44.5640224003548, 5542.8, 171.25, -23.6131131777002], [28306, 5491.9, 175.7, -24.9561102702609, 5450.95, 213.7, 59.5650992183255, 5546.65, 169.15, -10.1063157643658], [28350, 5495.15, 173.05, -27.6371990962733, 5457.35, 213.5, 74.5661760362961, 5550.1, 164.9, 3.58048576739623], [28396, 5498.45, 171.3, -29.80067715394, 5464.3, 213.6, 89.5672528542668, 5554.8, 161.75, 18.5627176154958], [28438, 5502.5, 170.5, -32.2233367819411, 5471.7, 214.4, 104.568329672237, 5558.55, 159.65, 33.5637944334665], [28481, 5507.05, 170.7, -35.4990900065752, 5478.75, 216.4, 119.569406490208, 5562.15, 156.9, 48.5648712514371], [28522, 5511.8, 171.8, -39.3694857808659, 5485.75, 219.25, 134.570483308179, 5565.4, 153.9, 63.5659480694078], [28566, 5516.55, 173.85, -42.6333103627131, 5492.3, 222.3, 149.571560126149, 5568.45, 152.2, 78.5670248873784], [28610, 5520.45, 176.75, -42.2709060931209, 5495.75, 221, 163.290820557027, 5571.7, 152, 93.5681017053491], [28652, 5523.45, 178, -40.3433321239945, 5495.75, 220.8, 169.814094591488, 5575.45, 153.1, 108.56917852332], [28694, 5526, 177.5, -39.0153048130004, 5497.4, 220.6, 173.723396170995, 5580.8, 153, 123.57025534129], [28734, 5529.25, 175.1, -39.41777487108, 5500.5, 219.65, -179.085989144254, 5581.9, 152.7, 132.321835489422], [28778, 5531.15, 172.95, -36.982770384329, 5499.7, 215.55, -168.857189269308, 5584.5, 151.7, 140.163938966592], [28822, 5533.45, 169.4, -34.997240232692, 5502.45, 211.75, -156.301676710832, 5588.15, 151.7, 151.125700592684], [28866, 5536.75, 165.25, -33.1785204532766, 5504.7, 207.55, -142.063578226652, 5591.25, 150.95, 161.338251921746], [28907, 5540.55, 161.2, -30.7537169944265, 5506.75, 203.2, -127.717563401922, 5596.5, 149.8, 174.663715224168], [28950, 5544.95, 157.8, -28.468080379769, 5509, 198.95, -112.716486583952, 5601.05, 149.05, -171.795253137208], [28994, 5549.5, 155.25, -25.622314036729, 5512, 194.4, -97.715409765981, 5606.6, 149.05, -157.261185541764], [29038, 5555, 153.05, -23.0631534333274, 5515.75, 190.2, -82.7143329480104, 5612.4, 149.05, -142.260108723793], [29082, 5561.3, 151.15, -21.1869340901483, 5520.2, 186.5, -67.7132561300397, 5618.05, 148.6, -127.259031905823], [29126, 5568.1, 149.05, -18.985700527228, 5526.6, 180.15, -52.7121793120691, 5624.2, 146.6, -112.257955087852], [29170, 5576.15, 145.2, -18.638479415786, 5531.5, 176.65, -37.7111024940984, 5631.5, 142.95, -97.2568782698813], [29210, 5584, 140.25, -20.5495441722858, 5539.3, 171.95, -22.7100256761278, 5636.85, 135.35, -82.2558014519107], [29254, 5590.2, 134.2, -18.9274168649869, 5546.15, 165, -7.70894885815716, 5645.7, 130.9, -67.25472463394], [29298, 5597.35, 127.1, -18.1672915332892, 5553.25, 159.6, 7.29212795981349, 5653.9, 126.6, -52.2536478159694], [29340, 5604.75, 120.65, -17.4455615209821, 5562, 154.2, 22.2932047777841, 5661.55, 122.9, -37.2525709979987], [29382, 5612.55, 115.35, -16.2635810340846, 5570.85, 149, 37.2942815957548, 5669.65, 120.2, -22.2514941800281], [29423, 5620.9, 111.05, -15.9731416767875, 5578.85, 144.35, 52.2953584137254, 5678.15, 115.9, -7.25041736205745], [29466, 5629.75, 107.8, -15.3297103905972, 5586.8, 140.15, 67.2964352316961, 5686.4, 112.85, 7.7506594559132], [29508, 5638.45, 105.45, -14.3833377345162, 5594.4, 136.6, 82.2975120496667, 5694.45, 110.95, 22.7517362738838], [29550, 5646.85, 103.75, -12.8980106576404, 5601.7, 133.55, 97.2985888676373, 5702.55, 110.45, 37.7528130918545], [29594, 5655.2, 102.75, -10.7597485202559, 5608.75, 130.9, 112.299665685608, 5710.45, 111.55, 52.7538899098251], [29639, 5663.2, 102.55, -7.93925574266234, 5615.6, 128.45, 127.300742503579, 5718.1, 114.2, 67.7549667277958], [29687, 5671.2, 103.05, -4.51509846781053, 5622.3, 126.3, 142.301819321549, 5727.25, 118, 82.7560435457664], [29729, 5680.95, 104.25, -2.65291552850092, 5630.65, 124.65, 157.30289613952, 5736.6, 119.75, 97.7571203637371], [29770, 5691.8, 105.75, -1.58056206873219, 5640.3, 124.55, 172.303972957491, 5745.55, 121.65, 112.758197181708], [29814, 5702.95, 107.3, -1.16300886805749, 5650.7, 125.5, -172.694950224539, 5756.25, 123.35, 127.759273999678], [29858, 5712.9, 108.7, 3.47735618599304, 5661.65, 121.4, -157.693873406568, 5766.8, 127.8, 142.760350817649], [29907, 5723.6, 109, 7.82078718030387, 5670.65, 117.9, -142.692796588598, 5775.65, 132.3, 157.76142763562], [29948, 5734.8, 108.9, 10.1751396082568, 5681.3, 117.7, -127.691719770627, 5784.3, 136.2, 172.76250445359], [29990, 5745.65, 109.25, 14.2333427660478, 5694.2, 115, -112.690642952656, 5793.45, 140.2, -172.236418728439], [30034, 5758.1, 110.05, 17.2467182800187, 5703.85, 112.55, -97.6895661346856, 5803.15, 143.4, -157.235341910468], [30078, 5770.3, 111.5, 19.3108268172776, 5714.5, 112.2, -82.6884893167149, 5812.45, 146.55, -142.234265092498], [30122, 5781.95, 113.5, 21.2362365935893, 5725.85, 113.1, -67.6874124987443, 5821.95, 150.45, -127.233188274527], [30173, 5793.35, 116.4, 23.153923887815, 5737, 114.6, -52.6863356807737, 5831.6, 155.05, -112.232111456557], [30214, 5804.2, 120.15, 25.9713811235031, 5748.45, 115.7, -37.685258862803, 5840.95, 160.8, -97.2310346385859], [30258, 5815.8, 125, 25.8975888990096, 5760.1, 116.9, -22.6841820448324, 5853.6, 162.3, -82.2299578206152], [30302, 5828.1, 128.25, 22.6989214676006, 5771.55, 119.6, -7.68310522686171, 5868.35, 160.1, -67.2288810026446], [30346, 5839.9, 129.2, 20.8168704578722, 5783.75, 124.45, 7.31797159110893, 5882.85, 162.1, -52.2278041846739], [30390, 5852.35, 130.05, 19.3584291459501, 5796.85, 131.25, 22.3190484090796, 5894.95, 165.75, -37.2267273667033], [30441, 5864.7, 132.55, 16.906724596634, 5809.95, 139, 37.3201252270502, 5907.3, 168.6, -22.2256505487326], [30482, 5876.55, 136.95, 13.3673041254621, 5822.6, 147.1, 52.3212020450209, 5921.5, 170.6, -7.224573730762], [30526, 5888.4, 142.9, 8.69697804952132, 5835.1, 155.95, 67.3222788629915, 5936.55, 171.45, 7.77650308720865], [30570, 5899.85, 149.8, 4.34422782980798, 5849.45, 164, 82.3233556809621, 5951.25, 171.7, 22.7775799051793], [30614, 5911.45, 155.3, 4.62408817998759, 5862.65, 163.05, 97.3244324989328, 5967.9, 171.55, 37.7786567231499], [30663, 5927.05, 157.05, 1.04975618518846, 5875.8, 165.1, 112.325509316903, 5983.75, 167.05, 52.7797335411206], [30708, 5943.25, 154.65, -3.26146666335313, 5892.45, 169.7, 127.326586134874, 5998.4, 163.65, 67.7808103590912], [30750, 5959.2, 150.85, -7.38392314248213, 5910.85, 176.2, 142.327662952845, 6012.8, 162.95, 82.7818871770619], [30794, 5974.75, 148.75, -11.471841606129, 5928.75, 182.65, 157.328739770815, 6027.95, 162.5, 97.7829639950325], [30838, 5988.2, 149.7, -10.0741287039916, 5944.5, 178.9, 172.329816588786, 6043.6, 161.3, 112.784040813003], [30882, 6002.15, 150.5, -7.31710424869359, 5955.55, 173.1, -172.669106593243, 6059.1, 159.8, 127.785117630974], [30923, 6016.75, 149.9, -6.80566970989626, 5969.85, 171.3, -157.668029775273, 6073.15, 158.95, 142.786194448944], [30966, 6031.55, 148.1, -5.98625041736471, 5985.25, 169.4, -142.666952957302, 6087.55, 158.7, 157.787271266915], [31006, 6046.85, 145.65, -4.43519315907983, 5999.45, 165.9, -127.665876139331, 6102.1, 157.95, 172.788348084886], [31050, 6063.2, 143.1, -4.36022816266683, 6014.1, 165.05, -112.664799321361, 6116.75, 157.25, -172.210575097144], [31094, 6079.55, 141.2, -5.06583025805366, 6028.85, 166.05, -97.6637225033901, 6131.65, 156.95, -157.209498279173], [31138, 6095.05, 140.75, -5.47515830736029, 6044.35, 167.05, -82.6626456854195, 6146.5, 157.3, -142.208421461202], [31181, 6109.95, 141.65, -4.57968587785085, 6059.45, 167.05, -67.6615688674488, 6161.6, 158.85, -127.207344643232], [31224, 6124.4, 143.85, -2.96478516822853, 6073.9, 166.6, -52.6604920494782, 6176.7, 161.3, -112.206267825261], [31266, 6139.05, 146.95, -2.20852850117103, 6088.3, 167.65, -37.6594152315076, 6191.8, 163.65, -97.2051910072904], [31310, 6153.75, 150.4, -2.54619354221848, 6103.05, 170.75, -22.6583384135369, 6206.9, 166.15, -82.2041141893198], [31354, 6168.45, 154.15, -3.91076070701144, 6118.15, 176, -7.65726159556628, 6221.75, 168.9, -67.2030373713491], [31409, 6183.25, 158.5, -5.77327409571255, 6133.25, 181.9, 7.34381522240437, 6237.55, 171.35, -52.2019605533785], [31451, 6198.9, 161.5, -13.2210914757722, 6148.45, 188.2, 22.344892040375, 6251.25, 164.05, -37.2008837354078], [31494, 6212.8, 162.3, -20.3217047941969, 6165.05, 194.4, 37.3459688583457, 6265.25, 157.3, -22.1998069174372], [31538, 6225.25, 161.15, -27.2256951660035, 6184.55, 198.7, 52.3470456763163, 6277.95, 150.65, -7.19873009946653], [31582, 6234.8, 158.55, -25.9660310164991, 6196.25, 190, 67.3481224942869, 6291, 143.85, 7.80234671850411], [31624, 6245.6, 151.7, -27.92328386588, 6209.25, 186.5, 82.3491993122576, 6302.4, 137.15, 22.8034235364748], [31675, 6254.65, 143.4, -28.2324149844186, 6221.65, 179.65, 97.3502761302282, 6312.95, 130.6, 37.8045003544454], [31716, 6263.85, 134, -29.6501614794712, 6233.9, 172.75, 112.351352948199, 6322.5, 122.35, 52.8055771724161], [31758, 6274.05, 124.25, -31.6951091561308, 6245.05, 166.05, 127.35242976617, 6331.2, 112.85, 67.8066539903867], [31802, 6285.35, 114.9, -35.0280534246752, 6255.95, 161.3, 142.35350658414, 6339.75, 102.6, 82.8077308083574], [31846, 6295.85, 107.55, -36.2244232276825, 6265.2, 154.1, 157.354583402111, 6348.5, 93.05, 97.808807626328], [31900, 6305.75, 100.9, -36.4837008295638, 6274.7, 147.2, 172.355660220081, 6358, 85.65, 112.809884444299], [31942, 6315.1, 94.8, -35.6930004359082, 6283.8, 140.75, -172.643262961948, 6368, 80.25, 127.810961262269], [31986, 6324.15, 89.8, -34.4877270382196, 6292.8, 134.65, -157.642186143977, 6378, 76.15, 142.81203808024], [32030, 6333.25, 85.45, -33.5200490790199, 6301.75, 129.5, -142.641109326007, 6387.85, 72.5, 157.813114898211], [32074, 6342.4, 81.9, -33.1804307930296, 6310.85, 125.7, -127.640032508036, 6397.35, 69.15, 172.814191716181], [32118, 6351.7, 78.9, -33.4048930408752, 6320.15, 123, -112.638955690065, 6406.35, 66.15, -172.184731465848], [32159, 6361.15, 76.8, -33.8644729385584, 6329.35, 121.2, -97.6378788720947, 6415.2, 63.65, -157.183654647877], [32202, 6370.3, 75.5, -34.2403826652062, 6338.4, 120.15, -82.6368020541241, 6423.95, 61.9, -142.182577829907], [32245, 6379.15, 74.8, -32.7793067613312, 6348.1, 115.75, -67.6357252361534, 6433.3, 60.9, -127.181501011936], [32286, 6389.75, 71.75, -34.9624481644008, 6355.05, 111.95, -52.6346484181828, 6441, 51.85, -112.180424193966], [32330, 6398.05, 67.05, -33.778730747701, 6362.85, 104.85, -37.6335716002121, 6450.65, 46.1, -97.1793473759949], [32374, 6406.5, 59.8, -34.420935281776, 6373.4, 100.5, -22.6324947822415, 6461.4, 40.2, -82.1782705580243], [32425, 6415.95, 51.4, -36.9056403550238, 6385.55, 96.65, -7.63141796427083, 6469, 33.95, -67.1771937400536], [32466, 6424.25, 44.6, -36.4130491283653, 6396.3, 89.85, 7.36965885369982, 6478.55, 29.2, -52.176116922083], [32510, 6433.35, 38.55, -36.4130528617909, 6407.6, 83.5, 22.3707356716705, 6488.5, 23.85, -37.1750401041123], [32553, 6443.95, 32.8, -37.0982128921498, 6418.35, 77.9, 37.3718124896411, 6498.65, 17.2, -22.1739632861417], [32594, 6454.55, 27.5, -36.1651026256808, 6425.45, 70.95, 52.3728893076118, 6508.85, 10, -7.17288646817104], [32638, 6464.25, 21.95, -34.3277936871475, 6432.2, 62.45, 67.3739661255824, 6518.35, 3.65, 7.82819034979961], [32686, 6473.4, 15.2, -32.7645434658528, 6439.95, 54.75, 82.375042943553, 6527.6, -1.6, 22.8292671677703], [32730, 6481.85, 7.8, -30.4448757363031, 6447.15, 46.8, 97.3761197615237, 6536.75, -5.8, 37.8303439857409], [32775, 6490.55, -0.15, -29.1311274341298, 6455.55, 40.15, 112.377196579494, 6545.4, -9.85, 52.8314208037115], [32818, 6499.5, -7.5, -28.1862327358459, 6463.25, 34.6, 127.378273397465, 6554.05, -14, 67.8324976216822], [32861, 6508.4, -13.45, -27.394139753367, 6471.3, 29.3, 142.379350215436, 6562.55, -17.95, 82.8335744396528], [32914, 6516.9, -17.95, -26.4206606374857, 6479.15, 24.15, 157.380427033406, 6571.05, -21.45, 97.8346512576235], [32958, 6525.25, -21.2, -24.4090154084684, 6486.2, 18.7, 172.381503851377, 6579.95, -23.8, 112.835728075594], [33002, 6533.4, -23.3, -21.9835444695688, 6492.9, 13.55, -172.617419330652, 6588.8, -25.1, 127.836804893565], [33046, 6541.7, -25, -20.7210122596236, 6500.25, 10.2, -157.616342512682, 6597.3, -26.45, 142.837881711535], [33095, 6549.9, -26.2, -19.807991519781, 6508, 8.2, -142.615265694711, 6605.7, -26.95, 157.838958529506], [33138, 6558.1, -27.1, -19.2502279533635, 6516, 7.45, -127.614188876741, 6613.8, -26.65, 172.840035347477], [33184, 6566.2, -27.1, -18.8114895134226, 6523.95, 7.5, -112.61311205877, 6621.75, -25.75, -172.158887834553], [33226, 6574.3, -26.2, -18.3302642155622, 6531.6, 8.2, -97.6120352407992, 6629.65, -24.25, -157.157811016582], [33270, 6582.2, -24.45, -17.7211587713085, 6539.1, 9.4, -82.6109584228286, 6637.55, -22, -142.156734198611], [33314, 6590.1, -21.9, -16.9577238153327, 6546.45, 11.15, -67.6098816048579, 6645.4, -18.95, -127.155657380641], [33358, 6597.8, -18.55, -16.1021970340779, 6553.7, 13.6, -52.6088047868873, 6653.2, -15.05, -112.15458056267], [33412, 6605.5, -14.7, -15.2732961296162, 6561, 16.8, -37.6077279689167, 6660.9, -10.4, -97.1535037446994], [33458, 6613.05, -10.1, -14.5476698200704, 6568.25, 20.9, -22.606651150946, 6668.45, -5.1, -82.1524269267288], [33502, 6620.55, -4.8, -13.9135637709243, 6575.45, 25.75, -7.60557433297537, 6675.9, 0.85, -67.1513501087581], [33546, 6628.05, 1.15, -13.3214457043065, 6582.6, 31.3, 7.39550248499528, 6683.3, 7.5, -52.1502732907875], [33590, 6635.5, 7.85, -12.7349896497776, 6589.65, 37.55, 22.3965793029659, 6690.6, 14.75, -37.1491964728168], [33634, 6642.85, 15.25, -12.1241104623102, 6596.65, 44.45, 37.3976561209366, 6697.8, 22.7, -22.1481196548462], [33681, 6650.05, 23.35, -11.4733475744828, 6603.55, 51.95, 52.3987329389072, 6705, 31.4, -7.14704283687555], [33722, 6657.25, 32.05, -10.7988589168685, 6610.4, 60.15, 67.3998097568779, 6712.05, 40.75, 7.85403398109509], [33762, 6664.35, 41.5, -10.1311681030529, 6617.2, 69.05, 82.4008865748485, 6719.1, 50.8, 22.8551107990657], [33805, 6671.3, 51.55, -9.49036548366872, 6623.9, 78.6, 97.4019633928192, 6726, 61.5, 37.8561876170364], [33846, 6678.35, 62.3, -8.87844351967851, 6630.6, 88.8, 112.40304021079, 6732.85, 72.85, 52.857264435007], [33890, 6685.2, 73.7, -8.28586040754332, 6637.2, 99.7, 127.40411702876, 6739.6, 84.8, 67.8583412529777], [33939, 6692, 85.7, -7.70205389046726, 6643.75, 111.2, 142.405193846731, 6746.3, 97.35, 82.8594180709483], [33983, 6698.75, 98.35, -7.11763678802256, 6650.25, 123.35, 157.406270664702, 6752.95, 110.55, 97.8604948889189], [34026, 6705.5, 111.65, -6.52675189030076, 6656.65, 136.15, 172.407347482672, 6759.5, 124.4, 112.86157170689], [34070, 6712.05, 125.55, -5.93270980012226, 6663.05, 149.55, -172.591575699357, 6766, 138.85, 127.86264852486], [34113, 6718.6, 140.05, -5.3426892354583, 6669.35, 163.55, -157.590498881386, 6772.4, 153.9, 142.863725342831], [34171, 6725.15, 155.15, -4.76145947727815, 6675.6, 178.15, -142.589422063416, 6778.75, 169.6, 157.864802160802], [34218, 6731.55, 170.85, -4.19182651229703, 6681.8, 193.4, -127.588345245445, 6785.05, 185.85, 172.865878978772], [34258, 6737.9, 187.3, -3.63288426171537, 6687.95, 209.25, -112.587268427474, 6791.25, 202.7, -172.133044203257], [34302, 6744.2, 204.15, -3.08156725619421, 6694.05, 225.7, -97.5861916095038, 6797.4, 220.1, -157.131967385287], [34346, 6750.5, 221.6, -2.53514047855857, 6700.05, 242.7, -82.5851147915331, 6803.45, 238.1, -142.130890567316], [34390, 6756.6, 239.75, -1.99130335190729, 6706, 260.3, -67.5840379735625, 6809.45, 256.7, -127.129813749345], [34433, 6762.7, 258.4, -1.44992140135317, 6711.95, 278.45, -52.5829611555918, 6815.4, 275.85, -112.128736931375], [34474, 6769.25, 276.9, 0.192522729497473, 6720.15, 287.15, -37.5818843376212, 6823.65, 287.5, -97.127660113404], [34518, 6778.55, 288.9, -0.308914759195661, 6725.8, 287.95, -22.5808075196506, 6836.6, 287.35, -82.1265832954333], [34562, 6789, 291.7, -0.583808459951895, 6734.8, 289.25, -7.57973070167992, 6848.15, 288.1, -67.1255064774627], [34606, 6800.6, 286.4, -0.753630828731906, 6747.55, 289.65, 7.42134611629072, 6857.85, 288.2, -52.124429659492], [34664, 6812.9, 276.2, -0.561139651581554, 6761.9, 288.15, 22.4224229342614, 6867.9, 287.15, -37.1233528415214], [34706, 6825.9, 265.8, -0.126471691479376, 6777.05, 287.15, 37.423499752232, 6879.45, 286.9, -22.1222760235508], [34749, 6839.95, 258.4, -0.857824938286525, 6792.25, 286.15, 52.4245765702026, 6891.35, 284.65, -7.12119920558011], [34790, 6853.65, 254.95, -1.74293427841033, 6805.7, 282.9, 67.4256533881733, 6905.1, 279.85, 7.87987761239054], [34834, 6867.25, 254.3, -2.66187670320747, 6818.05, 278.5, 82.4267302061439, 6920, 273.75, 22.8809544303612], [34878, 6880.75, 254.6, -3.60751055821861, 6830.25, 274.9, 97.4278070241146, 6934.5, 268.3, 37.8820312483318], [34926, 6894.1, 253.95, -4.3598378119719, 6843.1, 273.5, 112.428883842085, 6948.15, 265.45, 52.8831080663025], [34966, 6907.05, 252.55, -4.85901392754723, 6856.75, 274.05, 127.429960660056, 6960.9, 265.2, 67.8841848842731], [35010, 6919.7, 251.55, -5.23615108825383, 6870.6, 275.6, 142.431037478026, 6973.35, 266.2, 82.8852617022438], [35053, 6932.4, 251.9, -5.62027009213056, 6883.95, 277.45, 157.432114295997, 6986, 267.4, 97.8863385202144], [35094, 6944.95, 253.55, -6.06809179002366, 6896.75, 279.5, 172.433191113968, 6998.8, 268.65, 112.887415338185], [35138, 6957.45, 256.55, -6.60204521241722, 6909.15, 281.85, -172.565732068062, 7011.6, 270, 127.888492156156], [35181, 6969.85, 260.15, -7.22229901437067, 6921.45, 285, -157.564655250091, 7024.25, 271.95, 142.889568974126], [35224, 6981.8, 264.35, -6.85904570790729, 6935.5, 287.15, -142.56357843212, 7036.7, 274.95, 157.890645792097], [35266, 6994.5, 267.55, -4.77605537543147, 6948.6, 287.15, -127.56250161415, 7050.45, 278.6, 172.891722610068], [35310, 7008.3, 269.4, -2.46338676313328, 6960.6, 287.15, -112.561424796179, 7064.3, 282.65, -172.107200571962], [35354, 7022.55, 270.3, -0.082178781746023, 6973.95, 287.15, -97.5603479782084, 7077.5, 287, -157.106123753991], [35414, 7038.45, 270.7, -0.00868121793934231, 6988.55, 287.15, -82.5592711602377, 7093.85, 287.15, -142.10504693602], [35459, 7055.75, 270.8, 0.00123282965184981, 7004.75, 287.15, -67.5581943422671, 7109.4, 287.15, -127.10397011805], [35502, 7073.65, 270.45, 0.00200519423268193, 7021.8, 287.15, -52.5571175242964, 7125.95, 287.15, -112.102893300079], [35546, 7091.8, 269.8, 0.0120720317646342, 7039.9, 287.15, -37.5560407063258, 7143.95, 287.15, -97.1018164821085], [35590, 7110.35, 269.25, -0.0127596784653312, 7059.05, 287.15, -22.5549638883551, 7162.95, 287.15, -82.1007396641379], [35634, 7129.55, 269.1, -0.00571211297653738, 7079, 287.15, -7.55388707038448, 7182.7, 287.15, -67.0996628461672], [35680, 7149.25, 269.25, 0.00245547540528477, 7099.5, 287.15, 7.44718974758617, 7203.2, 287.15, -52.0985860281966], [35724, 7169.75, 269.55, -0.00321020322222571, 7120.45, 287.15, 22.4482665655568, 7224.3, 287.15, -37.0975092102259], [35766, 7190.95, 269.7, 0.00201800860213617, 7141.9, 287.15, 37.4493433835275, 7245.8, 287.15, -22.0964323922553], [35810, 7212.95, 269.7, 0.00662048394099891, 7163.75, 287.15, 52.4504202014981, 7267.65, 287.15, -7.09535557428465], [35854, 7235.65, 269.65, 0.00684567375725865, 7186, 287.15, 67.4514970194688, 7289.95, 287.15, 7.90572124368599], [35916, 7259, 269.65, 0.00471838728793282, 7208.75, 287.15, 82.4525738374394, 7312.7, 287.15, 22.9067980616566], [35958, 7282.8, 269.75, -0.00744702049214255, 7232.05, 287.15, 97.4536506554101, 7336, 287.15, 37.9078748796273], [36001, 7307, 269.9, -0.00156615258636438, 7255.9, 287.15, 112.454727473381, 7359.95, 287.15, 52.9089516975979], [36042, 7331.55, 270, -0.000544953997877025, 7280.4, 287.15, 127.455804291351, 7384.5, 287.15, 67.9100285155686], [36086, 7356.35, 270.05, 0.00213813994363315, 7305.45, 287.15, 142.456881109322, 7409.55, 287.15, 82.9111053335392], [36130, 7382, 270, -0.973611947625466, 7331, 287.15, 157.457957927293, 7434.3, 285.4, 97.9121821515098], [36176, 7408.5, 268.65, -5.55187294619502, 7356.5, 287.15, 172.459034745263, 7459.7, 277.1, 112.91325896948], [36221, 7433.6, 264.95, -9.96639875647363, 7382.75, 287.15, -172.539888436766, 7486.7, 268.9, 127.914335787451], [36262, 7458.15, 259.5, -13.805377181282, 7410.65, 287.15, -157.538811618795, 7513.15, 261.95, 142.915412605422], [36305, 7483.25, 253.45, -18.7753557018549, 7439.05, 285.3, -142.537734800825, 7537.4, 251.9, 157.916489423392], [36346, 7506.05, 247.2, -18.7832944350923, 7464.75, 276.55, -127.536657982854, 7563.65, 242.95, 172.917566241363], [36390, 7529.25, 238.7, -18.7843930855907, 7488.65, 267.1, -112.535581164884, 7587.65, 233.45, -172.081356940666], [36438, 7552.1, 227.85, -19.2173244100081, 7512, 258.15, -97.5345043469129, 7610.85, 223.7, -157.080280122696], [36479, 7575, 216.1, -20.8735805844366, 7535.6, 251.1, -82.5334275289422, 7632.7, 214.05, -142.079203304725], [36522, 7597.45, 205.15, -21.9752529846641, 7558.85, 242.65, -67.5323507109716, 7653.8, 204.35, -127.078126486754], [36566, 7620.15, 195.5, -23.0775095588967, 7580.75, 234.95, -52.531273893001, 7675.05, 194.75, -112.077049668784], [36610, 7642.25, 187.35, -23.1755989190167, 7601.85, 226.85, -37.5301970750303, 7696.5, 186.3, -97.0759728508131], [36668, 7663.65, 180.35, -21.9843768767251, 7622.35, 218.4, -22.5291202570597, 7718.1, 179.7, -82.0748960328424], [36710, 7684.5, 174.3, -19.9934292766458, 7642.5, 210, -7.52804343908901, 7739.65, 174.65, -67.0738192148718], [36754, 7705.1, 168.95, -17.9688134628781, 7662.45, 202.45, 7.47303337888164, 7760.95, 170.5, -52.0727423969011], [36798, 7725.7, 164.1, -16.536010240725, 7682.5, 196.4, 22.4741101968523, 7781.9, 166.9, -37.0716655789305], [36842, 7746.3, 159.75, -15.8021673070098, 7702.8, 191.95, 37.4751870148229, 7802.35, 163.75, -22.0705887609598], [36886, 7766.8, 156.2, -15.459865946664, 7723, 188.5, 52.4762638327936, 7822.5, 161, -7.0695119429892], [36928, 7787.25, 153.65, -15.1685701813634, 7742.8, 185.75, 67.4773406507642, 7842.45, 158.75, 7.93156487498145], [36970, 7807.35, 152.05, -14.674450143751, 7762.25, 183.55, 82.4784174687349, 7862.3, 157.35, 22.9326416929521], [37014, 7827.15, 151.15, -13.842542173362, 7781.55, 181.85, 97.4794942867055, 7882.05, 157.1, 37.9337185109227], [37058, 7846.65, 150.95, -12.7714339360647, 7800.6, 180.75, 112.480571104676, 7901.55, 157.9, 52.9347953288934], [37102, 7865.85, 151.6, -11.6655889705507, 7819.55, 180.35, 127.481647922647, 7920.9, 159.45, 67.935872146864], [37165, 7885, 152.9, -10.6918167928705, 7838.3, 180.85, 142.482724740617, 7940, 161.65, 82.9369489648347], [37206, 7903.95, 154.8, -9.90495205976658, 7856.9, 182.3, 157.483801558588, 7958.85, 164.5, 97.9380257828053], [37249, 7922.8, 157.6, -9.24694894589467, 7875.4, 184.55, 172.484878376559, 7977.5, 167.9, 112.939102600776], [37290, 7941.5, 161.1, -8.62554378500878, 7893.65, 187.5, -172.514044805471, 7995.95, 172, 127.940179418747], [37334, 7959.9, 165.4, -7.96720267167649, 7911.75, 191.1, -157.5129679875, 8014.2, 176.8, 142.941256236717], [37375, 7978.5, 170.3, -8.15149056749267, 7929.9, 196.35, -142.511891169529, 8032.35, 181.65, 157.942333054688], [37424, 7996.85, 175.75, -8.83550903509906, 7948.3, 202.8, -127.510814351559, 8050.45, 186.9, 172.943409872659], [37466, 8014.85, 181.95, -9.82360738640507, 7966.75, 210.25, -112.509737533588, 8068.45, 192.65, -172.055513309371], [37510, 8032.6, 189.05, -11.0606103840187, 7985.25, 218.55, -97.5086607156174, 8086.45, 198.75, -157.0544364914], [37554, 8049.95, 197.1, -11.6688723757305, 8003.4, 226.75, -82.5075838976468, 8104.4, 205.9, -142.05335967343], [37598, 8067.25, 205.95, -12.1084397627289, 8021.2, 235.35, -67.5065070796761, 8122.25, 213.7, -127.052282855459], [37639, 8084.55, 215.35, -13.6711326895392, 8039.15, 245.65, -52.5054302617055, 8139.8, 221.2, -112.051206037488], [37686, 8101.9, 225.3, -16.1667183948853, 8057.55, 257.55, -37.5043534437348, 8157.15, 228.7, -97.0501292195176], [37726, 8115.35, 236, -10.7797848387126, 8065.75, 257.35, -23.6156996577205, 8173, 236.9, -82.049052401547], [37770, 8125.95, 243.1, -3.52857324489273, 8072, 253.8, -8.61462283974984, 8183.9, 246.9, -67.0479755835763], [37812, 8135.4, 245.5, 2.21308315670857, 8082.6, 254.7, 6.38645397822081, 8190.95, 258.85, -52.0468987656057], [37854, 8145.65, 246.45, 6.06233908725312, 8094.1, 260.55, 21.3875307961914, 8196.55, 271.4, -37.045821947635], [37920, 8157.25, 249.5, 9.69644790597998, 8103.1, 265.9, 36.3886076141621, 8201.9, 282.75, -22.0447451296644], [37964, 8170.2, 255.8, 9.74752050861699, 8113.05, 270.05, 51.3896844321327, 8212.4, 287.15, -7.04366831169373], [38006, 8183.6, 262.3, 7.97037809283578, 8123.2, 272.9, 66.3907612501034, 8224.75, 287.15, 7.95740850627691], [38050, 8193.45, 266.05, 10.5696716006016, 8133.55, 268.15, 81.391838068074, 8237.45, 287.55, 22.9584853242476], [38093, 8203.05, 266.4, 10.5280651807345, 8145.75, 267.85, 96.3929148860447, 8249.5, 287.15, 37.9595621422182], [38134, 8212.7, 264.2, 9.62159846062539, 8157.9, 269.65, 111.169725605587, 8261.1, 287.15, 52.9606389601889], [38187, 8222.55, 261.65, 7.55456259211098, 8169.75, 273.55, 125.65247779181, 8272.15, 287.15, 67.9617157781595], [38232, 8232.6, 260.25, 3.82019940644147, 8181.65, 279.1, 139.847023209527, 8283.35, 285.9, 82.9627925961301], [38274, 8242.8, 261.05, -1.38621747805531, 8193.6, 285.25, 153.759097173432, 8295.2, 282.8, 97.7396033165244], [38318, 8252.35, 263.45, -5.01089071654726, 8204.55, 287.15, 168.111506784439, 8307.1, 278.15, 112.222355504717], [38362, 8262.1, 265.7, -7.55950597684043, 8214.05, 287.15, -176.887416397591, 8318.15, 273.3, 126.4169009255], [38413, 8271.6, 265.95, -9.40294845443804, 8223.55, 287.15, -161.88633957962, 8328, 269.85, 140.328974893543], [38454, 8280.5, 264.15, -10.1136282502127, 8233.25, 287.15, -146.885262761649, 8336.95, 268.65, 153.964198590757], [38498, 8289.2, 261.5, -10.2611045506897, 8242.8, 287.15, -131.884185943679, 8345.3, 268.6, 167.328081337531], [38542, 8297.9, 259.05, -10.3729810905536, 8253.15, 287.15, -116.883109125708, 8353.45, 268.8, -177.670841844498], [38586, 8307.4, 257.65, -10.5872885778297, 8263.2, 287.15, -101.882032307738, 8362.5, 268.6, -162.669765026528], [38630, 8317.6, 257.4, -10.8887244317163, 8272.85, 287.15, -86.8809554897669, 8372.4, 268, -147.668688208557], [38674, 8328.3, 258.2, -11.1254372317587, 8282.9, 287.15, -71.8798786717962, 8383, 267.45, -132.667611390586], [38714, 8339.05, 259.65, -10.8289490933603, 8291.95, 287.15, -56.8788018538256, 8393.9, 267.65, -117.666534572616], [38758, 8349.2, 261.3, -9.85447584279428, 8301.2, 287.15, -41.8777250358549, 8404.3, 269.2, -102.665457754645], [38802, 8359.4, 262.8, -9.54066925154693, 8312.25, 287.15, -26.8766482178843, 8414.75, 269.9, -87.6643809366744], [38846, 8371.1, 262.15, -14.451529047428, 8322.95, 287.15, -11.8755713999136, 8421.95, 261.65, -72.6633041187038], [38890, 8380.35, 258.55, -18.7258114454798, 8333.25, 287.15, 3.125505418057, 8432.55, 253.5, -57.6622273007331], [38934, 8388.55, 252.8, -21.8711703126927, 8345.65, 287.15, 18.1265822360276, 8443.35, 247.9, -42.6611504827625], [38981, 8397, 247.5, -23.7684365732384, 8360.1, 287.15, 33.1276590539983, 8453.35, 246.1, -27.6600736647918], [39022, 8406.35, 244.1, -26.4954801160893, 8374.6, 287.15, 48.1287358719689, 8463.7, 242.7, -12.6589968468212], [39066, 8416.95, 242.75, -30.2665506278804, 8388.45, 287.15, 63.1298126899396, 8474.7, 236.8, 2.34207997114947], [39110, 8428.85, 242.6, -34.9987385625298, 8402.3, 287.15, 78.1308895079102, 8485.1, 229.2, 17.3431567891201], [39162, 8441, 242.35, -38.0974021271146, 8413.3, 285, 93.1319663258809, 8494.75, 221.15, 32.3442336070908], [39204, 8450.15, 241.1, -33.9623220342438, 8414.1, 275.65, 108.133043143852, 8503.75, 215.25, 47.3453104250614], [39246, 8457.7, 235.35, -31.8265338981398, 8418.9, 270.35, 123.134119961822, 8511.45, 212.95, 62.346387243032], [39290, 8462.05, 227.9, -27.9191055632532, 8423.2, 264.05, 138.036746192033, 8517.9, 213.85, 77.3474640610027], [39334, 8465.3, 220.25, -22.4692108943829, 8426.35, 256.8, 153.037823010004, 8522.7, 216.95, 92.3485408789733], [39378, 8470.4, 213.6, -19.2224041314616, 8431, 252.8, 167.963897427856, 8526.15, 219.6, 107.349617696944], [39427, 8476.35, 209.65, -15.3787450460475, 8433.1, 247.65, -177.407045158999, 8529.85, 221.05, 122.350694514915], [39470, 8481.7, 208.5, -9.4164029342922, 8433.6, 239.75, -163.069094112169, 8534.05, 223.1, 137.351771332885], [39514, 8486.15, 208.8, -1.63376665466903, 8434.4, 230.05, -149.016456414964, 8538, 227.1, 152.352848150856], [39558, 8490, 209.2, 7.0111686831262, 8436.7, 220.3, -135.243454331726, 8540.7, 233.1, 167.353924968827], [39602, 8494.4, 209.05, 14.4151273982731, 8440.5, 213.4, -121.744523113737, 8542, 239.5, -177.644998213203], [39646, 8499.25, 209.05, 20.7312143769972, 8445.15, 209, -108.514208750778, 8542.2, 245.75, -162.643921395232], [39689, 8504.7, 210.1, 25.6411092339192, 8449.95, 205.65, -95.5471657674358, 8543.85, 250.75, -147.642844577262], [39730, 8511.1, 211.85, 27.3302382895615, 8455.05, 202.65, -82.8381550632545, 8546.3, 249.75, -140.886110535698], [39774, 8516.75, 211.95, 29.1382533014308, 8460.3, 199.3, -67.8370782452838, 8550, 249.3, -130.267093771788], [39818, 8521.95, 210.05, 31.0706241147358, 8465.85, 195.6, -52.8360014273132, 8554.45, 249, -118.13033473238], [39862, 8527.2, 206.8, 33.0911613450785, 8472.1, 191.8, -37.8349246093425, 8559.45, 248.75, -103.905757793496], [39917, 8532.6, 203.45, 35.2623901614787, 8479, 188.45, -22.8338477913719, 8563.1, 247.9, -93.8776111568967], [39960, 8537.85, 200.7, 37.2346997292358, 8485.5, 185.2, -7.83277097340122, 8566.9, 247.05, -86.2269584035317], [40002, 8543.2, 198.7, 37.488251229541, 8491.3, 182.65, 7.16830584456943, 8573.2, 245.5, -72.908350337656], [40046, 8549.35, 197.9, 35.4917087235753, 8496.95, 181.75, 22.1693826625401, 8581.6, 242.1, -57.9072735196854], [40090, 8555.9, 197.25, 33.8575800483513, 8502.95, 182.55, 37.1704594805107, 8590.15, 241.05, -42.9061967017147], [40134, 8563.1, 197, 32.6465918459506, 8509.4, 184.6, 52.1715362984814, 8596.8, 240.6, -27.9051198837441], [40179, 8569.9, 197.45, 31.7419545977788, 8515.85, 187.1, 67.172613116452, 8603.4, 241.3, -12.9040430657734], [40218, 8576.35, 198.8, 30.9528581215753, 8522.25, 189.85, 82.1736899344226, 8610.5, 242.75, 2.09703375219721], [40262, 8582.55, 201.3, 30.0740544137865, 8528.7, 192.95, 97.1747667523933, 8617.9, 244.6, 17.0981105701679], [40306, 8588.75, 204.75, 28.9781458620622, 8534.95, 196.75, 112.175843570364, 8625.4, 246.85, 32.0991873881385], [40350, 8595.05, 208.85, 27.6478488897465, 8541, 201.6, 127.176920388335, 8632.85, 249.7, 47.1002642061092], [40393, 8601.4, 213.5, 26.2460745950354, 8547.05, 207.4, 142.177997206305, 8640.05, 253.25, 62.1013410240798], [40437, 8607.65, 218.8, 24.9703010752619, 8553.05, 214, 157.179074024276, 8646.95, 257.75, 77.1024178420504], [40478, 8613.85, 224.6, 23.8468470502967, 8559.1, 221.25, 172.180150842247, 8653.75, 263.05, 92.1034946600211], [40522, 8619.9, 231.2, 22.822414576329, 8565.15, 229, -172.818772339783, 8660.45, 269.1, 107.104571477992], [40565, 8625.9, 238.65, 21.8446637595218, 8571.2, 237.3, -157.817695521812, 8667.15, 275.75, 122.105648295962], [40606, 8632.8, 246.7, 18.4362690061378, 8579.2, 244.2, -142.816618703842, 8678, 277.15, 137.106725113933], [40650, 8640.1, 251.7, 18.5360021498714, 8588.4, 244.25, -127.815541885871, 8690.05, 278.35, 152.107801931904], [40699, 8650.35, 253.4, 18.4566105724427, 8598.2, 247.45, -112.8144650679, 8699.9, 281.4, 167.108878749874], [40740, 8661.35, 252.8, 20.4165749644423, 8610.55, 249.7, -97.8133882499297, 8708.6, 286.2, -177.890044432155], [40782, 8673.95, 252.1, 20.6008306769369, 8621.7, 251.2, -82.812311431959, 8717.4, 287.15, -162.888967614184], [40823, 8686.5, 252, 18.2997080348415, 8630.8, 254.9, -67.8112346139884, 8728.25, 287.15, -147.887890796214], [40866, 8697.55, 252.8, 16.2504847664326, 8641.05, 257.95, -52.8850305565464, 8738.85, 286.45, -132.886813978243], [40924, 8708.35, 253.7, 12.6404884445347, 8650.4, 259.65, -38.2553301180739, 8748.45, 281.65, -117.885737160272], [40966, 8717.5, 253.05, 9.0577987124546, 8658.65, 259.95, -23.9162328765534, 8756.95, 275.65, -102.884660342302], [41009, 8723.6, 249.75, 6.29141075590072, 8665.45, 259.15, -9.86195582836567, 8765.35, 270.15, -87.8835835243312], [41050, 8727.2, 244.25, 3.96329939964256, 8671.2, 257.5, 3.91316894833674, 8772.05, 264.5, -72.8825067063605], [41094, 8729.15, 238.45, 2.17674691173696, 8676.15, 255.65, 17.4146965837564, 8778.85, 259.55, -57.8814298883899], [41138, 8731.45, 233.8, -0.954798137171728, 8681.05, 254.25, 30.6480716610047, 8782.5, 252.55, -42.8803530704192], [41181, 8733.45, 230.15, -3.62292551787531, 8685.5, 253.85, 43.6186304159894, 8788.35, 247.3, -27.8792762524486], [41222, 8736.5, 227.65, -7.53826169379321, 8690.5, 254.8, 56.3316028935234, 8792.6, 241.25, -13.1024655329066], [41266, 8740.05, 226.15, -12.4358572200464, 8695.7, 256.85, 68.7921150605281, 8796.15, 234.7, 1.38028665331648], [41310, 8743.75, 225.65, -17.6248862679036, 8700.95, 259.6, 81.005190877183, 8799.45, 228.3, 15.5748320710337], [41354, 8747.3, 225.7, -22.5006407561708, 8706.45, 262.8, 92.9757543268601, 8802.4, 223.05, 29.4869060349384], [41398, 8750.35, 226.25, -26.6816626809679, 8712.2, 266.3, 104.708631405662, 8805.05, 219.6, 43.1221297269614], [41441, 8753.25, 227.35, -30.2815747171075, 8718.15, 269.95, 116.20855207237, 8807.55, 217.75, 56.4860124675131], [41482, 8755.85, 229.35, -33.6505154618537, 8724, 273.95, 127.480152159583, 8809.95, 216.75, 69.5839539415279], [41526, 8758.6, 232.15, -37.0297335061471, 8729.7, 278.45, 142.016775376766, 8812.15, 216.25, 84.5850307594985], [41570, 8761.5, 235.85, -40.5947893945374, 8735.5, 283.6, 157.017852194736, 8813.95, 216.3, 99.5861075774692], [41614, 8764.05, 239.95, -42.4978948445795, 8741.55, 284.5, 172.018929012707, 8815.8, 216.45, 114.58718439544], [41673, 8766.6, 242, -42.9402595263365, 8742.3, 286.5, 176.715922896786, 8818.25, 215.8, 129.58826121341], [41715, 8767.7, 242.9, -41.1562047081919, 8740.25, 285.55, 174.300953062306, 8819.6, 216.2, 144.589338031381], [41758, 8767.55, 242.15, -40.3589210934726, 8740.3, 285.45, 172.269756347441, 8819.9, 217.8, 159.590414849352], [41802, 8767.05, 240.6, -40.0361162335002, 8741.5, 285.65, 177.188786820743, 8819.85, 219.8, 174.591491667322], [41846, 8766.95, 239, -39.1231722694322, 8741.65, 285.25, -177.226060871741, 8820.1, 221.45, -170.407431514707], [41890, 8767.7, 238, -37.8687327310181, 8741, 284.75, -173.474921850564, 8820.9, 222.6, -155.406354696736], [41936, 8769.25, 237.7, -36.5572964178623, 8740.5, 283.85, -169.854827590102, 8823.65, 222.2, -140.405277878766], [41982, 8772.25, 237.3, -35.9462072927078, 8742.1, 282.05, -163.745931593392, 8826.25, 221.05, -126.66402303773], [42026, 8776.25, 236.35, -35.4696524748039, 8744.8, 280.25, -153.535229676379, 8830.9, 218.9, -111.66294621976], [42070, 8781.25, 234.8, -36.1044673712823, 8749.5, 278.85, -141.564235230387, 8834.65, 216.75, -97.9600048595602], [42114, 8785.7, 232.95, -36.1632231451895, 8754.7, 275.6, -127.626140592357, 8838.65, 214.25, -83.9045099158249], [42171, 8790.25, 230.05, -36.5877039426044, 8760.1, 271.95, -112.625063774386, 8843.55, 210, -70.4113917394136], [42219, 8795.05, 226.2, -36.1219108065479, 8766.15, 268.85, -97.6239869564158, 8849.55, 207.95, -55.410314921443], [42260, 8800.45, 221.65, -35.0161749934138, 8770.8, 263.85, -82.6229101384451, 8856.95, 203.5, -40.4092381034724], [42306, 8807.1, 216.25, -34.6411127877146, 8777, 258.3, -67.6218333204745, 8862.85, 199, -25.4081612855017], [42349, 8813.85, 210.45, -33.5800819074921, 8782.45, 252.4, -52.6207565025038, 8869.6, 194.6, -10.4070844675311], [42392, 8820.95, 204.7, -33.2990272815575, 8789.25, 247.95, -37.6196796845332, 8875.75, 191.15, 4.59399235043957], [42435, 8827.7, 199.65, -31.5246129245167, 8796.3, 240.6, -22.6186028665626, 8882.45, 187.75, 19.5950691684102], [42478, 8835.35, 194.3, -30.7107122370894, 8801.45, 236.8, -7.61752604859191, 8890.2, 184.05, 34.5961459863809], [42522, 8842.85, 190.15, -29.6572515060559, 8807.25, 232.8, 7.38355076937873, 8899, 180.55, 49.5972228043515], [42566, 8851.25, 186.7, -29.0354346370599, 8814.95, 228.15, 22.3846275873494, 8906.6, 177.25, 64.5982996223222], [42610, 8860.15, 183.2, -28.4927673916832, 8825.3, 222.6, 37.38570440532, 8914.9, 174, 79.5993764402928], [42654, 8869.95, 179.25, -28.1731644849493, 8832.9, 218.4, 52.3867812232907, 8925.2, 168.95, 94.6004532582634], [42695, 8879.45, 175.1, -26.8444989415972, 8842, 212.5, 67.3878580412613, 8935.7, 165.1, 109.601530076234], [42738, 8889.4, 170.25, -26.1404443397538, 8852.05, 207.85, 82.3889348592319, 8945.3, 162.1, 124.602606894205], [42782, 8898.6, 165.4, -24.3231079936055, 8861.05, 202, 97.3900116772026, 8954.95, 159.55, 139.603683712175], [42823, 8907.8, 160.6, -22.2847961494944, 8869.9, 195.9, 112.391088495173, 8964.75, 157.05, 154.604760530146], [42866, 8917.7, 155.75, -20.8148226054799, 8878.8, 190.75, 127.392165313144, 8974.5, 154.4, 169.605837348117], [42921, 8927.9, 151.35, -19.0022173584487, 8886.9, 185.3, 142.393242131115, 8984.3, 151.75, -175.393085833913], [42963, 8938.65, 147.7, -18.3073939737533, 8896, 182.05, 157.394318949085, 8994, 149.6, -160.392009015942], [43006, 8948.95, 144.85, -16.2897875886336, 8907.1, 176.55, 172.395395767056, 9004.25, 148.15, -145.390932197971], [43050, 8960.2, 142.1, -14.2782381071464, 8915.55, 172.65, -172.603527414974, 9015.55, 147.2, -130.389855380001], [43092, 8971.15, 140.15, -12.1099018741388, 8926.45, 168.55, -157.602450597003, 9026.35, 147.1, -115.38877856203], [43134, 8982.95, 138.35, -10.5036089073249, 8937.15, 165.3, -142.601373779032, 9038.15, 146.6, -100.387701744059], [43179, 8995, 136.75, -9.32501065249043, 8947.2, 162.75, -127.600296961062, 9049.9, 145.9, -85.3866249260888], [43222, 9006.75, 135.65, -8.59717872267031, 8958.8, 161.1, -112.599220143091, 9061.2, 145.6, -70.3855481081182], [43266, 9018.5, 135.1, -8.00651565269613, 8971.05, 160.7, -97.5981433251203, 9072.65, 146.45, -55.3844712901475], [43310, 9030, 135.15, -5.72124406650005, 8983.05, 158.05, -82.5970665071497, 9084.65, 147.85, -40.3833944721769], [43354, 9042.8, 135.4, -4.70335125482825, 8994.9, 158.1, -67.595989689179, 9097.1, 149.7, -25.3823176542063], [43398, 9055.95, 136.05, -4.18671533142206, 9007.7, 158.45, -52.5949128712084, 9109.9, 150.95, -10.3812408362356], [43447, 9069.75, 137.4, -4.9619466295078, 9020.05, 160.9, -37.5938360532378, 9123.15, 151.95, 4.61983598173504], [43490, 9083.2, 139.55, -6.1865651574718, 9033.2, 164.45, -22.5927592352671, 9136.15, 153.3, 19.6209127997057], [43534, 9096.15, 142.4, -7.4753472316154, 9046.75, 168.85, -7.59168241729646, 9149.1, 155.4, 34.6219896176763], [43578, 9109.1, 146.05, -8.78499789011173, 9060.3, 173.95, 7.40939440067419, 9162.1, 158.2, 49.623066435647], [43622, 9121.55, 150.75, -10.2401251939327, 9073.8, 179.75, 22.4104712186448, 9175.2, 161.45, 64.6241432536176], [43672, 9134, 156.25, -12.063658935109, 9087.35, 186.4, 37.4115480366155, 9188.25, 164.85, 79.6252200715883], [43714, 9146.75, 162.5, -14.8190071031865, 9100.75, 193.3, 52.4126248545861, 9202.1, 166.5, 94.6262968895589], [43758, 9160.65, 167.4, -22.3215412800393, 9115.4, 200.7, 67.4137016725568, 9214.5, 160, 109.62737370753], [43802, 9173.5, 169.7, -30.3692095787929, 9133.9, 207.6, 82.4147784905274, 9225.55, 153.9, 124.6284505255], [43845, 9183.85, 169.4, -31.000334036015, 9149.2, 203.3, 97.4158553084981, 9238.5, 149.65, 139.629527343471], [43886, 9194.25, 164.7, -30.4009982617579, 9159, 197.45, 112.416932126469, 9250.1, 143.95, 154.630604161441], [43937, 9203.1, 156.4, -29.330405250666, 9168.1, 191.1, 127.418008944439, 9260.9, 139, 169.631680979412], [43978, 9210.6, 145.75, -30.7144107819851, 9176.9, 182.35, 142.41908576241, 9266.85, 128.9, -175.367242202617], [44022, 9217.75, 134, -32.3250442125913, 9186.95, 174.1, 157.420162580381, 9273.35, 119.4, -160.366165384647], [44066, 9226.05, 122.25, -34.8651674420706, 9196.6, 168, 172.421239398351, 9279.7, 110.1, -145.365088566676], [44110, 9234.55, 111.9, -36.1930739261605, 9205.55, 160.9, -172.577683783678, 9287.1, 101.25, -130.364011748705], [44153, 9243.1, 103.55, -36.2669448984843, 9213.2, 153.75, -157.576606965707, 9295.55, 93.35, -115.362934930735], [44200, 9251.2, 97.45, -34.598114403817, 9219.85, 145.1, -142.575530147737, 9304.3, 86.8, -100.361858112764], [44242, 9259.05, 92.6, -32.2144003802599, 9225.8, 136.35, -127.574453329766, 9313.2, 81.3, -85.3607812947934], [44286, 9266.95, 88.15, -30.3280998167351, 9232.1, 129.15, -112.573376511796, 9321.95, 76.6, -70.3597044768227], [44330, 9274.65, 83.45, -29.621254243589, 9239.65, 124.15, -97.5722996938249, 9330.15, 72.7, -55.3586276588521], [44374, 9282.45, 79, -29.8174778724727, 9248, 120.8, -82.5712228758543, 9337.8, 69.35, -40.3575508408814], [44427, 9290.4, 75.5, -30.2777111686003, 9256.3, 118.4, -67.5701460578836, 9345.2, 66.45, -25.3564740229108], [44469, 9298.3, 73.1, -30.5934005291335, 9264, 116.45, -52.569069239913, 9352.65, 64, -10.3553972049402], [44510, 9306.1, 71.8, -30.4611409182684, 9271.2, 114.85, -37.5679924219423, 9360.25, 62.5, 4.64567961303049], [44554, 9313.65, 71.25, -29.8411659736359, 9278.2, 113.6, -22.5669156039717, 9367.95, 62.1, 19.6467564310011], [44598, 9320.9, 71.6, -28.9776565326716, 9285.05, 112.9, -7.56583878600102, 9375.65, 62.75, 34.6478332489718], [44642, 9328.25, 72.5, -28.2144068182273, 9291.95, 113.15, 7.43523803196962, 9383.25, 64.15, 49.6489100669424], [44689, 9334.75, 74.15, -25.2377315510344, 9299.95, 108.9, 22.4363148499403, 9391.15, 65.9, 64.6499868849131], [44733, 9342.95, 73.8, -23.373679471662, 9305.8, 107.95, 37.4373916679109, 9400.15, 67.2, 79.6510637028837], [44777, 9351.65, 72.5, -22.1101364189863, 9312.15, 107.85, 52.4384684858815, 9408.5, 68.7, 94.6521405208544], [44818, 9359.7, 71.55, -20.2504997109048, 9320.2, 106.05, 67.4395453038522, 9416.25, 70.6, 109.653217338825], [44862, 9368.55, 70.9, -18.8373718421006, 9328.55, 105.1, 82.4406221218228, 9424.6, 72.3, 124.654294156796], [44926, 9378.25, 70.8, -17.9154753932827, 9336.65, 105.3, 97.4416989397935, 9433.6, 74, 139.655370974766], [44970, 9388.3, 71.65, -16.8321444582796, 9344.25, 106, 112.442775757764, 9442.95, 76.15, 154.656447792737], [45014, 9397.8, 73.6, -15.939665442203, 9352.65, 107.1, 127.443852575735, 9452.05, 78.7, 169.657524610708], [45058, 9407, 76.4, -15.0809296520467, 9361.5, 108.95, 142.444929393705, 9461.2, 82.05, -175.341398571322], [45102, 9416.05, 79.95, -14.4421256381429, 9370.4, 111.8, 157.446006211676, 9470.45, 86.05, -160.340321753351], [45146, 9424.75, 84.3, -13.3310401610223, 9379.1, 114.9, 172.447083029647, 9479.65, 91.05, -145.33924493538], [45194, 9433.35, 89.4, -11.7774964622102, 9389.2, 117.5, -172.551840152383, 9488.8, 96.7, -130.33816811741], [45242, 9441.75, 93.8, -7.44057794979954, 9396.8, 115.8, -157.550763334412, 9498.7, 102.5, -115.337091299439], [45286, 9451.65, 96.45, -4.73760293103906, 9404.3, 116.15, -142.549686516441, 9508.2, 107.55, -100.336014481469], [45330, 9461.45, 97.9, -1.28111780291902, 9413.15, 114.45, -127.548609698471, 9516.95, 112.15, -85.334937663498], [45374, 9471.85, 98.5, 1.93070399182904, 9422.3, 112.9, -112.5475328805, 9525.55, 116.4, -70.3338608455273], [45439, 9482.65, 98.8, 5.28274425189288, 9431.5, 111.05, -97.5464560625294, 9534.3, 120.55, -55.3327840275567], [45483, 9494.4, 99.35, 7.82584942250158, 9441.45, 111.05, -82.5453792445588, 9543.2, 125, -40.331707209586], [45526, 9507.25, 100.65, 7.74470470197516, 9451.65, 111.1, -67.5443024265881, 9555.45, 125.2, -25.3306303916154], [45570, 9520.15, 101.3, 6.91116126532693, 9464.2, 112.15, -52.5432256086175, 9567.55, 124.65, -10.3295535736447], [45614, 9533.45, 101.1, 4.42735963635295, 9476.6, 113.85, -37.5421487906469, 9579.75, 121.85, 4.6715232443259], [45680, 9545.4, 99.9, 1.77775751553723, 9489.75, 115.95, -22.5410719726762, 9594.45, 119.2, 19.6726000622965], [45721, 9557.55, 98.3, -2.57131137361693, 9504.2, 118.65, -7.53999515470558, 9608.65, 114, 34.6736768802672], [45762, 9570.1, 96.65, -8.46589259769062, 9519.6, 122.2, 7.46108166326506, 9622.4, 106.9, 49.6747536982378], [45806, 9582.35, 95.15, -14.9186785868355, 9536.05, 126.6, 22.4621584812357, 9637.1, 99.7, 64.6758305162085], [45849, 9594.6, 93.65, -20.3268367195614, 9556.1, 126.85, 37.4632352992064, 9651.25, 91.6, 79.6769073341791], [45890, 9609.55, 89.8, -28.6284655872841, 9573.6, 126.4, 52.464312117177, 9664.25, 76.9, 94.6779841521498], [45943, 9623.4, 83.05, -36.1161239870679, 9590, 120.55, 67.4653889351476, 9674.35, 59, 109.67906097012], [45984, 9635.55, 73.05, -41.5359466864696, 9607.05, 114.05, 82.4664657531183, 9685.95, 44.15, 124.680137788091], [46025, 9646.9, 60.7, -46.3867508712972, 9626.15, 107.7, 97.4675425710889, 9697.8, 32.5, 139.681214606062], [46066, 9657.75, 48.65, -49.5863832508551, 9643.65, 98.1, 112.46861938906, 9709.1, 21.25, 154.682291424032], [46110, 9669.25, 37.8, -51.871308771376, 9657.45, 88.6, 127.46969620703, 9720.25, 8.6, 169.683368242003], [46154, 9679.9, 28.3, -51.0591813462324, 9663.95, 76.75, 142.470773025001, 9729.15, -3.9, -175.315554940026], [46198, 9689.8, 17.6, -51.6590682166146, 9672.3, 65.8, 157.471849842972, 9736.7, -15.65, -160.314478122056], [46242, 9698.3, 6.3, -50.918804821676, 9679.45, 54.45, 172.472926660942, 9744.8, -26, -145.313401304085], [46286, 9706.05, -5.5, -49.5262563115299, 9686.8, 43.8, -172.525996521087, 9753.75, -34.6, -130.312324486114], [46330, 9713.9, -16.95, -48.1465395025159, 9694.9, 34.5, -157.524919703117, 9763.35, -41.85, -115.311247668144], [46374, 9722.1, -26.75, -45.5205702982492, 9701.4, 25.05, -142.523842885146, 9773.2, -48, -100.310170850173], [46418, 9730.4, -34.65, -41.6886419358433, 9706.5, 14.95, -127.522766067175, 9783.05, -53.15, -85.3090940322025], [46466, 9738.85, -41.25, -37.0826666729377, 9710.5, 4.9, -112.521689249205, 9792.8, -57.25, -70.3080172142319], [46506, 9747.15, -47.25, -32.329719926206, 9714.6, -4.45, -97.520612431234, 9802.35, -59.95, -55.3069403962612], [46550, 9755.15, -52.85, -27.738255733577, 9719.4, -12.85, -82.5195356132634, 9811.3, -61.2, -40.3058635782906], [46594, 9763.25, -58.15, -23.9991683677026, 9724.95, -19.9, -67.5184587952927, 9819.45, -61.95, -25.3047867603199], [46638, 9771.45, -62.5, -20.4737920010029, 9730.55, -26.2, -52.5173819773221, 9827.15, -62.3, -10.3037099423493], [46697, 9779.75, -65.9, -16.7955039538482, 9735.9, -32.15, -37.5163051593514, 9834.75, -62, 4.69736687562137], [46738, 9787.55, -68.3, -12.7037091595755, 9741.25, -37.9, -22.5152283413808, 9842.1, -60.65, 19.698443693592], [46782, 9795.15, -69.9, -8.22693762724591, 9746.8, -43.45, -7.51415152341012, 9849.2, -58.25, 34.6995205115627], [46826, 9802.6, -70.75, -3.61272167368895, 9752.55, -48.5, 7.48692529456052, 9855.85, -55, 49.7005973295333], [46870, 9810.05, -70.9, 0.888579786117859, 9758.6, -52.8, 22.4880021125312, 9862.2, -51.2, 64.7016741475039], [46911, 9817.75, -70.35, 4.16849498988949, 9765, -55.25, 37.4890789305018, 9868.3, -47.7, 79.7027509654746], [46960, 9825.4, -69.1, 6.57656952978656, 9771.7, -56.05, 52.4901557484725, 9874.45, -44.2, 94.7038277834452], [47002, 9833.15, -67.15, 8.49814002498209, 9778.55, -55.55, 67.4912325664431, 9880.7, -40.3, 109.704904601416], [47046, 9840.55, -64.4, 10.1840350486153, 9785.5, -54.05, 82.4923093844137, 9887, -35.85, 124.705981419387], [47090, 9847.5, -60.8, 12.6141003390362, 9792.6, -52.7, 97.4933862023844, 9893.2, -30.2, 139.707058237357], [47134, 9854.4, -56.25, 15.3229409240164, 9799.7, -51.15, 112.494463020355, 9899.3, -23.85, 154.708135055328], [47200, 9861.1, -51, 17.9084364557906, 9806.8, -48.8, 127.495539838326, 9905.3, -16.95, 169.709211873298], [47238, 9868.3, -45.1, 19.1281671377904, 9813.65, -44.3, 142.496616656296, 9911.6, -10.35, -175.289711308731], [47281, 9875.55, -38.55, 19.3809300291526, 9820.5, -38, 157.497693474267, 9918.15, -3.6, -160.28863449076], [47322, 9882.8, -31.4, 19.1210963470276, 9827.2, -30.3, 172.498770292238, 9924.9, 3.55, -145.28755767279], [47366, 9888.9, -24.4, 22.6215586695539, 9836.6, -28.25, -172.500152889792, 9931.9, 11.4, -130.286480854819], [47410, 9896.5, -17.9, 25.6892819919815, 9843.35, -26.3, -157.657832845178, 9938.65, 19.5, -115.285404036848], [47469, 9904.3, -12.45, 28.5796738128149, 9851.1, -23.45, -142.656756027207, 9944.15, 27.2, -100.284327218878], [47510, 9911.95, -8, 32.3323937905098, 9859.95, -21.7, -127.655679209236, 9948.85, 34.55, -85.283250400907], [47554, 9920.25, -3.55, 35.6361430936472, 9868.35, -19.3, -112.654602391266, 9953.25, 41.55, -70.2821735829364], [47597, 9929.45, 1.8, 36.7401898443269, 9877.3, -15.95, -97.6535255732951, 9961.65, 46.95, -55.2810967649657], [47638, 9939.6, 7.35, 36.1082237603288, 9885.35, -9.95, -82.6524487553244, 9969.15, 51.15, -40.2800199469951], [47701, 9949.45, 12.2, 35.5388300749146, 9893.85, -3.5, -67.875638035506, 9977.4, 56.15, -25.2789431290245], [47743, 9958.6, 16.65, 35.2326868379604, 9902.7, 2.75, -53.392885848644, 9986.55, 61.95, -10.2778663110538], [47786, 9967.05, 22.05, 35.4053289826864, 9912.05, 9.2, -39.1983404299326, 9995.7, 68.65, 4.49896867653293], [47828, 9975.25, 28.85, 35.0856223244578, 9921.4, 16.1, -25.2862664646857, 10005.45, 75.15, 18.9817769511504], [47870, 9983.3, 36.8, 33.8527470598866, 9930.2, 24.15, -11.6510427709791, 10016.05, 81.7, 33.1764096443866], [47913, 9991.8, 45.35, 31.419143045189, 9938.4, 34.15, 1.71283997159059, 10027.05, 88.35, 47.088601450311], [47961, 9999.5, 53.5, 31.1806815342191, 9947.3, 40.15, 15.7952585194041, 10037.75, 94.9, 60.7239729425812], [48002, 10007.7, 60.1, 32.3857881722822, 9956.85, 44.05, 30.7963353373747, 10046.9, 101.2, 74.0880328454389], [48046, 10017.25, 65.25, 32.7679617160535, 9965.8, 49.9, 45.7974121553454, 10054.65, 107.1, 87.1861802595134], [48090, 10027.8, 69.3, 30.3176278464735, 9974.15, 55.95, 60.798488973316, 10063.3, 108.1, 102.187257077484], [48134, 10037.65, 71.5, 28.3247258428358, 9982.25, 60.8, 75.7995657912867, 10073.4, 109.95, 117.188333895455], [48194, 10047.25, 73, 26.4963990612083, 9990.35, 65.7, 90.8006426092573, 10083.05, 111.9, 132.189410713425], [48238, 10056.25, 74.6, 25.08867844143, 9999.25, 70.05, 105.801719427228, 10092.25, 113.6, 147.190487531396], [48282, 10064.45, 76.75, 23.6157833983071, 10007.8, 74.75, 120.802796245199, 10101.9, 115.9, 162.191564349367], [48325, 10072.2, 80.2, 21.8528841230782, 10016.6, 80.05, 135.579606964741, 10112.05, 118.35, 176.968375068909], [48366, 10080.1, 84.8, 19.2294377996328, 10025.15, 86.45, 150.062359150964, 10122.55, 120.45, -168.548872744868], [48410, 10088.15, 90.3, 15.6584285693916, 10033.5, 94.4, 164.256904568681, 10133.3, 122.4, -154.35432732715], [48457, 10096.35, 96.25, 11.2911162063395, 10042, 104.2, 178.168978532586, 10143.85, 124.5, -140.442253363245], [48499, 10103.3, 102.05, 9.63328101261912, 10048.6, 109.15, -171.088558808792, 10153.45, 126.95, -126.807029671221], [48542, 10109, 106.35, 9.4397025949851, 10054.9, 110.55, -159.958389806561, 10160.35, 128.05, -112.590972297134], [48582, 10114.25, 107.9, 10.0390126198291, 10060.75, 111.35, -147.290427561748, 10165.9, 129.95, -99.4109524468649], [48626, 10119.65, 107.2, 11.0521295157873, 10066.25, 110.5, -135.469119704201, 10170.35, 130.85, -88.3786460306675], [48670, 10125.85, 105.25, 10.94412334007, 10071.65, 111.3, -123.758651178194, 10174.05, 131.1, -79.6872782724671], [48712, 10131.65, 103.4, 11.056488083134, 10076.75, 111.3, -112.505569932982, 10178, 131.1, -71.9274294330759], [48754, 10137, 102.05, 11.5840390219078, 10081.55, 110.9, -102.338443086858, 10182.35, 131.6, -63.0105706240018], [48798, 10142.05, 101.75, 11.8753750589066, 10086.25, 111, -92.6079045819966, 10186.65, 132.1, -53.7512323204226], [48842, 10146.65, 102.45, 12.1269466942638, 10091.05, 110.5, -83.0334116017317, 10191.4, 132.1, -44.2882588948255], [48886, 10150.65, 103.35, 12.6015097509951, 10095.65, 110.1, -73.6494510317741, 10196.55, 132.65, -33.6569926520297], [48930, 10154.8, 104.65, 12.8721561598872, 10100.25, 110.4, -64.4522312771587, 10201.5, 133.55, -22.8642869314664], [48971, 10159.25, 106.05, 12.2186373961336, 10104.85, 112.1, -55.4380361956601, 10206.3, 134.1, -12.4112413272369], [49014, 10163.8, 107.45, 10.5383485484733, 10109.35, 115.1, -46.6032235962833, 10211.2, 134.05, -2.22312261402126], [49058, 10168.4, 108.95, 8.27428952524127, 10114.05, 119, -33.2669474318853, 10217.85, 134.1, 12.0916622631621], [49102, 10173.6, 110.9, 5.85995925601288, 10121.8, 123.55, -18.2658706139146, 10224.65, 134.1, 27.0927390811328], [49146, 10180.75, 112.75, 4.04889717832194, 10130.6, 125.85, -3.26479379594397, 10233.2, 133.1, 42.0938158991034], [49210, 10189.15, 114.2, 2.85272166260285, 10137.6, 127.9, 11.7362830220267, 10241.85, 133.1, 57.0948927170741], [49250, 10196.85, 114.9, 2.11618558725567, 10145.3, 128.25, 26.7373598399973, 10249.85, 132.1, 72.0959695350447], [49294, 10204.7, 114.8, 0.960218244587579, 10154.95, 130.35, 41.738436657968, 10259.3, 132.1, 87.0970463530153], [49338, 10214.15, 114.45, -0.375020033135556, 10165.5, 131.25, 56.7395134759386, 10269.2, 130.55, 102.098123170986], [49382, 10225.6, 113.75, -2.74265525011212, 10176.4, 133, 71.7405902939092, 10280, 128.05, 117.099199988957], [49426, 10237.1, 113.1, -2.94169600128273, 10188.4, 132.95, 86.7416671118799, 10291.6, 127.65, 132.100276806927], [49470, 10250.4, 112.45, -5.97208394881463, 10201.65, 134.85, 101.742743929851, 10305.45, 124, 147.101353624898], [49514, 10263.95, 111.4, -8.00841379821897, 10216.3, 134.1, 116.743820747821, 10319.95, 119.5, 162.102430442869], [49558, 10278.6, 109.25, -10.8602428357641, 10232.1, 133.1, 131.744897565792, 10335.1, 113.35, 177.103507260839], [49602, 10293.75, 105.8, -13.1167901227323, 10249, 133.1, 146.745974383762, 10349.75, 109.6, -167.89541592119], [49646, 10308.7, 102.25, -14.7254926034229, 10266, 132.5, 161.747051201733, 10365.05, 106.5, -152.89433910322], [49705, 10324.4, 98.65, -17.56774228769, 10282.15, 131.55, 176.748128019704, 10380.6, 100.35, -137.893262285249], [49746, 10340.15, 94.4, -22.5108560446643, 10298.2, 127.6, -168.250795162326, 10394.8, 87.55, -122.892185467278], [49789, 10355, 88.3, -27.1757476009838, 10314.95, 123.55, -153.249718344355, 10408.65, 75.45, -107.891108649308], [49830, 10368.75, 79.9, -29.8504380920773, 10330.75, 116, -138.248641526384, 10422.1, 63.6, -92.8900318313369], [49871, 10382.1, 69.55, -32.826851424648, 10348.5, 111.9, -123.247564708414, 10436.4, 55.2, -77.8889550133663], [49916, 10395.25, 60.35, -36.0698997339588, 10367.15, 107.75, -108.246487890443, 10449.9, 47.45, -62.8878781953956], [49958, 10407.3, 53.9, -35.4874019580196, 10381.2, 97.25, -93.2454110724724, 10463.3, 38.7, -47.886801377425], [50002, 10419.9, 46.35, -35.1681976561785, 10390.35, 88.9, -78.2443342545017, 10476.9, 27.95, -32.8857245594543], [50043, 10433.15, 37.25, -36.8537618973379, 10403.75, 78.65, -63.2432574365311, 10487.3, 16.05, -17.8846477414837], [50086, 10446.05, 26.5, -38.9006996224333, 10416.5, 70.75, -48.2421806185604, 10497.45, 5.45, -2.88357092351304], [50130, 10457.45, 16, -39.4975131113578, 10429.35, 61.8, -33.2411038005898, 10508.9, -3.7, 12.1175058944576], [50174, 10468.85, 5.8, -39.8939451924908, 10442.2, 53.9, -18.2400269826191, 10521.05, -11.95, 27.1185827124283], [50215, 10480.45, -2.95, -39.8849714405362, 10454.15, 46.3, -3.2389501646485, 10532.95, -19.5, 42.1196595303989], [50258, 10492.1, -10.15, -39.3913722696434, 10465.4, 38.45, 11.7621266533221, 10544.7, -26.65, 57.1207363483695], [50302, 10503.8, -15.95, -38.6766526093248, 10475.95, 31.15, 26.7632034712928, 10556.45, -33.25, 72.1218131663402], [50346, 10514.75, -21.1, -35.6908404075673, 10485.15, 20.3, 41.7642802892634, 10568.35, -39.4, 87.1228899843108], [50390, 10525.8, -27.9, -33.1035071828619, 10493.05, 11.8, 56.7653571072341, 10580.35, -45, 102.123966802281], [50434, 10536.55, -35.85, -31.7360118275739, 10502.75, 5.25, 71.7664339252047, 10591.55, -49.65, 117.125043620252], [50477, 10547.05, -43.35, -30.570262784298, 10513.85, -1.35, 86.7675107431754, 10602.15, -53.5, 132.126120438223], [50518, 10557.7, -49.8, -28.5589145636634, 10524, -9.05, 101.768587561146, 10613.05, -57.5, 147.127197256193], [50562, 10569.5, -55.8, -27.5359914670874, 10533.7, -14.35, 116.769664379117, 10624.5, -61.65, 162.128274074164], [50606, 10581.05, -60.55, -26.1495885459231, 10543, -19.6, 131.770741197087, 10635.8, -65.15, 177.129350892135], [50650, 10592.1, -64.05, -24.1273962717583, 10552.6, -25.2, 146.771818015058, 10647, -67.45, -167.869572289895], [50694, 10602.95, -66.7, -21.7597710446954, 10562.05, -30.2, 161.772894833029, 10658.2, -68.6, -152.868495471924], [50750, 10613.55, -68.8, -19.4451973184677, 10571.45, -34.3, 176.773971650999, 10669.25, -68.8, -137.867418653953], [50794, 10624.1, -70.35, -17.4351266277694, 10581.1, -37.2, -168.22495153103, 10679.95, -68.25, -122.866341835983], [50838, 10634.75, -71.2, -15.7190601013204, 10590.85, -39.1, -153.223874713059, 10690.4, -67.15, -107.865265018012], [50882, 10645.3, -71.3, -14.1614483469108, 10600.5, -40.2, -138.222797895089, 10700.7, -65.5, -92.8641882000414], [50926, 10655.8, -70.55, -12.6416745298913, 10610, -40.65, -123.221721077118, 10710.85, -63.25, -77.8631113820708], [50995, 10666.15, -68.95, -11.0637006104605, 10619.35, -40.5, -108.220644259148, 10720.9, -60.35, -62.8620345641002], [51038, 10676.4, -66.6, -9.3574164252194, 10628.65, -39.7, -93.2195674411769, 10730.85, -56.5, -47.8609577461295], [51082, 10686.65, -63.65, -8.48036813976656, 10638.25, -37.3, -78.2184906232063, 10740.65, -52.6, -32.8598809281589], [51126, 10696.85, -60, -8.16406739821594, 10648.1, -33.6, -63.2174138052356, 10750.45, -48.3, -17.8588041101882], [51170, 10706.85, -55.65, -8.23735384812465, 10658.15, -28.85, -48.216336987265, 10760.3, -43.6, -2.85772729221759], [51214, 10716.55, -50.4, -7.6943561117926, 10668, -24.05, -33.2152601692943, 10770.2, -37.85, 12.1433495257531], [51263, 10726.05, -44.15, -6.90290076924281, 10677.5, -18.95, -18.2141833513237, 10780.05, -31.35, 27.1444263437237], [51306, 10735.6, -37.3, -6.17519951536729, 10686.9, -13.15, -3.21310653335303, 10789.8, -24.25, 42.1455031616943], [51350, 10745.15, -29.85, -5.78854248708132, 10696.35, -6.2, 11.7879702846176, 10799.45, -16.65, 57.146579979665], [51394, 10754.7, -21.9, -5.75318727771383, 10705.8, 1.8, 26.7890471025883, 10808.85, -8.5, 72.1476567976356], [51438, 10764.15, -13.25, -5.86995391938583, 10715.25, 10.7, 41.7901239205589, 10818.1, 0.15, 87.1487336156063], [51514, 10773.5, -3.95, -5.954209549482, 10724.5, 20.15, 56.7912007385296, 10827.35, 9.45, 102.149810433577], [51558, 10782.85, 6.05, -5.88621045910812, 10733.6, 30.15, 71.7922775565002, 10836.5, 19.55, 117.150887251548], [51602, 10791.95, 16.7, -5.64754505483734, 10742.65, 40.6, 86.7933543744708, 10845.6, 30.4, 132.151964069518], [51646, 10800.9, 28, -5.31512292340579, 10751.55, 51.6, 101.794431192441, 10854.6, 42, 147.153040887489], [51690, 10809.7, 40.05, -4.99087780595811, 10760.4, 63.25, 116.795508010412, 10863.5, 54.25, 162.154117705459], [51753, 10820.25, 52.05, -8.44943513335429, 10769.85, 75.6, 131.796584828383, 10875.8, 59.85, 177.15519452343], [51798, 10830.85, 61.75, -14.1353854184204, 10780.25, 80.45, 146.797661646353, 10883, 54.55, -167.843728658599], [51838, 10838.7, 64.65, -16.7476284982863, 10787.7, 80.95, 161.798738464324, 10891.65, 49.65, -152.842651840629], [51882, 10843.9, 60.5, -16.6558946639425, 10793.5, 79.15, 176.583854381563, 10900.2, 47.2, -137.841575022658], [51926, 10847.85, 51.2, -16.990701374421, 10801.95, 75.55, -168.415068800467, 10905.2, 44, -122.840498204687], [51970, 10851.25, 40, -16.8705937086201, 10810.6, 69.5, -153.413991982496, 10910, 39.35, -107.839421386717], [52033, 10856.25, 28.95, -17.6481839447968, 10818.5, 62.95, -138.412915164525, 10915.15, 32.2, -92.838344568746], [52079, 10863.75, 19.4, -20.9896244062921, 10826.95, 59.4, -123.411838346555, 10921.25, 23.2, -77.8372677507754], [52122, 10871.75, 12.45, -24.2141050813018, 10834.4, 54.8, -108.410761528584, 10927, 13.15, -62.8361909328047], [52163, 10879.2, 7.6, -26.4011028714368, 10841.2, 49.25, -93.4096847106135, 10933.35, 3.55, -47.8351141148341], [52206, 10886, 3.45, -27.2034713714821, 10847.5, 43.8, -78.4086078926428, 10940.1, -3.75, -32.8340372968634], [52265, 10892.25, -0.4, -27.0869769472195, 10854.05, 38.9, -63.4075310746722, 10946.9, -8.5, -17.8329604788928], [52308, 10898.2, -4.1, -27.0399607156335, 10861.05, 35.3, -48.4064542567015, 10953.55, -11.85, -2.83188366092214], [52350, 10904.2, -7.3, -27.6241795801491, 10868.5, 33.1, -33.4053774387309, 10960.05, -14.75, 12.1691931570485], [52394, 10910.6, -9.9, -29.5385417305352, 10876, 32.05, -18.4043006207603, 10966.75, -19.35, 27.1702699750191], [52438, 10917.95, -12.35, -33.6641830104446, 10884.25, 31.25, -3.40322380278961, 10971.55, -26.8, 42.1713467929898], [52503, 10924.55, -14.7, -36.8211890506398, 10893, 30.85, 11.597853015181, 10976.4, -31.5, 57.1724236109604], [52546, 10930.2, -16.5, -39.0442332024418, 10901.65, 30.9, 26.5989298331517, 10982.1, -34.3, 72.1735004289311], [52592, 10935.7, -17.25, -40.9305224581602, 10910.05, 31.25, 41.6000066511223, 10987.9, -36.25, 87.1745772469017], [52634, 10942.15, -17.55, -43.8786792867965, 10920.2, 31, 56.601083469093, 10995.35, -41.2, 102.175654064872], [52678, 10949.75, -18.2, -44.1937493795584, 10929.65, 26.15, 71.6021602870636, 11001.95, -44.1, 117.176730882843], [52752, 10957.5, -21, -43.6042436992225, 10935.25, 21.9, 86.6032371050342, 11009, -48.25, 132.177807700814], [52794, 10964.5, -25.75, -43.858197393124, 10941.95, 18.2, 101.604313923005, 11016.15, -53.05, 147.178884518784], [52836, 10970.75, -31.45, -43.8855156552677, 10948, 13.85, 116.605390740976, 11022.5, -57.75, 162.179961336755], [52878, 10975.75, -37.4, -41.3697609140543, 10950, 6.6, 131.606467558946, 11028.05, -62.1, 177.181038154726], [52923, 10980.3, -44.25, -38.9733607669721, 10951.95, -0.05, 146.607544376917, 11032.95, -65.6, -167.817885027304], [52967, 10984.8, -51.35, -37.1223695857806, 10955.45, -5.95, 161.608621194887, 11037.75, -68.2, -152.816808209333], [53025, 10989.25, -57.5, -34.9987209285321, 10958.35, -11, 176.609698012858, 11042.7, -70.05, -137.815731391362], [53066, 10993.7, -62.25, -32.0616342348243, 10960.6, -16.55, -168.389225169171, 11047.55, -71, -122.814654573392], [53110, 10997.95, -65.35, -28.3349937568208, 10962.1, -22.4, -153.388148351201, 11052.5, -71.15, -107.813577755421], [53154, 11002.25, -67.3, -24.1601898804468, 10963.15, -28.3, -138.38707153323, 11057.35, -70.55, -92.8125009374506], [53194, 11006.4, -68.5, -20.00678139207, 10964.5, -33.6, -123.385994715259, 11062.05, -69.1, -77.8114241194799], [53256, 11010.4, -69.4, -16.34013480859, 10966.5, -37.6, -108.384917897289, 11066.3, -66.85, -62.8103473015093], [53298, 11014.4, -70.05, -13.2127572716244, 10969.1, -40.15, -93.383841079318, 11070.05, -63.85, -47.8092704835386], [53342, 11018.6, -69.9, -10.354099157141, 10971.9, -41.8, -78.3827642613474, 11073.55, -60.4, -32.808193665568], [53386, 11022.8, -68.9, -7.53257558699454, 10974.55, -42.9, -63.3816874433767, 11076.85, -56.4, -17.8071168475974], [53430, 11027.2, -67.05, -5.55689605922063, 10977.45, -42.6, -48.3806106254061, 11080.2, -52.6, -2.8060400296267], [53500, 11031.35, -64.4, -3.96351156273173, 10980.6, -41.25, -33.3795338074354, 11083.65, -48.4, 12.1950367883439], [53542, 11035.5, -60.95, -2.53364595163437, 10984.05, -39, -18.3784569894648, 11087.2, -43.55, 27.1961136063146], [53586, 11039.2, -56.7, -0.364759582364301, 10987.5, -36.75, -3.37738017149416, 11090.7, -37.45, 42.1971904242852], [53630, 11042.1, -51.95, 4.63192094703813, 10991.85, -38.9, 11.6236966464765, 11094.45, -30.6, 57.1982672422559], [53674, 11046.1, -48.05, 9.40777317204402, 10993.1, -40.8, 17.888295191125, 11097.9, -23.45, 72.1993440602265], [53718, 11050.05, -44.95, 12.9073012616696, 10995.65, -40.8, 21.8265997837291, 11099.5, -17, 87.2004208781972], [53771, 11053.3, -42.55, 16.7037622110179, 10998.5, -41.4, 27.6558245843712, 11099.65, -11.05, 102.201497696168], [53811, 11056.1, -40.3, 20.6097524784544, 11001.05, -41.95, 33.4046095193687, 11098.9, -5.15, 117.202574514138], [53854, 11060.05, -37.55, 22.3166191175478, 11003.7, -42.35, 38.373859826452, 11102.35, -1.85, 131.537408649837], [53898, 11064.55, -35.45, 23.7275537458777, 11007.85, -43, 46.115499260973, 11104.1, -0.7, 137.614176822673], [53942, 11068.75, -35.1, 24.8852160302315, 11012.2, -43.95, 55.2106874716659, 11107, 0, 142.494833918048], [54007, 11072.75, -36.05, 25.9251026700176, 11016.7, -43.95, 64.6402821391073, 11110.25, 1.45, 149.425452071827], [54050, 11077.05, -36.95, 25.5944290855797, 11021.2, -43.95, 74.2450209611649, 11113.95, 0.4, 157.203896519408], [54094, 11080.8, -37.8, 24.7917218161232, 11025.35, -42.85, 83.4821298380354, 11118.65, 0.2, 166.225710672395], [54138, 11084.35, -38.2, 23.1118489962555, 11029.3, -41.9, 92.1894560619336, 11123.25, -1.8, 175.791630055595], [54181, 11087.2, -38.7, 22.1916525197447, 11033.05, -41.9, 100.01723751835, 11128.9, -2.8, -172.434953575334], [54257, 11090.85, -38.8, 19.3612404935817, 11035.8, -38.9, 107.323970440692, 11133.95, -4.4, -160.905494372336], [54298, 11094.1, -38.5, 17.1114795899477, 11039.6, -36.25, 116.019996954347, 11138.8, -5.7, -149.370908031847], [54342, 11097.45, -37.9, 15.2224528173411, 11044.35, -33.9, 126.966599496809, 11143.75, -6.85, -138.065859959533], [54385, 11101.65, -36.7, 12.4100372719265, 11047.9, -30.15, 137.624379600668, 11149.2, -7.85, -126.985782343858], [54426, 11105.9, -35.25, 9.41794728408619, 11052.35, -25.7, 149.680337976612, 11154.55, -8.75, -116.126198272735], [54504, 11110.2, -33.25, 5.76282609041629, 11056.75, -19.85, 163.858965172332, 11159.95, -9.45, -105.482719924628], [54544, 11114.5, -30.7, 1.93667271248106, 11061.85, -13.25, 178.593622349388, 11165.2, -9.75, -95.051046795647], [54586, 11117.5, -27.8, 1.79975021078726, 11066.8, -12.3, -168.849404247669, 11170.45, -9.05, -84.8269639619328], [54630, 11121.7, -25.6, 0.759320024856726, 11072.2, -10.3, -154.941013272324, 11175.95, -8.9, -71.706888498141], [54674, 11127.4, -24.35, -0.677570188047715, 11078.85, -7.7, -139.939936454353, 11183.2, -8.9, -56.7058116801703], [54718, 11134.6, -23.8, -1.35888339132673, 11087.55, -6.4, -124.938859636382, 11190.85, -8.85, -41.7047348621997], [54769, 11143.85, -23.8, -2.87321786430892, 11096.45, -3.55, -109.937782818412, 11198.4, -8.7, -26.703658044229], [54813, 11153.1, -23.5, -3.6764552826908, 11104.2, -1.6, -94.9367060004409, 11207.15, -8.2, -11.7025812262584], [54854, 11161.95, -22.6, -4.19672450994289, 11113.3, 0.1, -79.9356291824703, 11215.95, -7.35, 3.29849559171226], [54898, 11170.2, -20.7, -2.89219706882686, 11121.4, -0.85, -64.9345523644997, 11224.75, -6.1, 18.2995724096829], [54942, 11178.85, -19.25, -0.665192305033148, 11129.8, -3, -49.933475546529, 11233.65, -4.2, 33.3006492276535], [55004, 11188.4, -18.95, 1.42201697658987, 11138.35, -4.1, -34.9323987285584, 11242.2, -1.55, 48.3017260456242], [55046, 11198.1, -19.1, 3.67026580401913, 11146.6, -4.9, -19.9313219105877, 11250.4, 1.75, 63.3028028635948], [55090, 11207.55, -18.95, 6.80088098891454, 11156.2, -6.65, -4.93024509261708, 11258.2, 5.45, 78.3038796815655], [55134, 11217.95, -18.3, 9.51137896142936, 11165.25, -7.4, 10.0708317253536, 11266.45, 9.5, 93.3049564995361], [55178, 11228.4, -16.45, 12.0442352450626, 11173.85, -7.65, 25.0719085433242, 11274.8, 13.85, 108.306033317507], [55254, 11238.25, -13.6, 14.8205962130696, 11183.2, -7.75, 40.0729853612949, 11282.95, 18.6, 123.307110135477], [55294, 11247.95, -10.1, 18.5961318695893, 11195.6, -7.9, 55.0740621792655, 11291.5, 24.3, 138.308186953448], [55338, 11259.6, -5.55, 20.9336557106707, 11205.55, -7.55, 70.0751389972362, 11302.5, 29.5, 153.309263771419], [55379, 11272.1, -2.4, 17.0499061064111, 11214.15, -6.75, 85.0762158152068, 11310.85, 22.85, 168.310340589389], [55422, 11281.2, -4.05, 13.9077915441216, 11222.45, -6, 100.077292633177, 11323.25, 18.9, -176.68858259264], [55466, 11289.6, -9.05, 10.4806571064759, 11231.35, -5.2, 115.078369451148, 11334.15, 13.75, -161.687505774669], [55523, 11298.05, -15.15, 6.56532460069489, 11241.2, -4.5, 130.079446269119, 11342.45, 7.1, -146.686428956699], [55566, 11305.4, -21.25, 2.86657916365377, 11250.9, -4.55, 145.080523087089, 11352.9, 0.5, -131.685352138728], [55610, 11312.2, -26.4, -1.86313898089892, 11260.95, -5, 160.08159990506, 11364.55, -8.4, -116.684275320757], [55654, 11319.85, -30.55, -7.15398983056484, 11271.95, -5.1, 175.082676723031, 11375.6, -18.1, -101.683198502787], [55698, 11328.5, -34.1, -13.0435285873438, 11283.85, -4, -169.916246458999, 11384.85, -27.4, -86.6821216848161], [55772, 11337.25, -37.15, -19.6120303230036, 11296.15, -1.7, -154.915169641028, 11393.5, -36.4, -71.6810448668455], [55816, 11345.65, -39.35, -26.4267661850278, 11309, 0.95, -139.914092823057, 11401.6, -45, -56.6799680488748], [55858, 11354.25, -40.7, -33.2110300028464, 11322.2, 3.8, -124.913016005087, 11408.7, -52.85, -41.6788912309042], [55902, 11362.5, -41.2, -38.867872816221, 11334.9, 6.05, -109.911939187116, 11415.45, -58.8, -26.6778144129336], [55946, 11369.8, -40.05, -41.1616895249199, 11345.95, 3.4, -94.9108623691455, 11422, -63.05, -11.6767375949629], [55990, 11377.25, -41.05, -41.7907235742928, 11353.55, 0.75, -79.9097855511748, 11429.65, -67.2, 3.32433922300773], [56048, 11383.7, -44.55, -41.1183673016647, 11358.55, -2.15, -64.9087087332042, 11437, -70.6, 18.3254160409784], [56090, 11389.15, -49.65, -40.6776752022944, 11364.35, -6.2, -49.9076319152336, 11442.85, -73.7, 33.326492858949], [56134, 11394.35, -55.65, -40.409137152455, 11370.85, -10.3, -34.9065550972629, 11448.5, -76.4, 48.3275696769197], [56178, 11400.1, -61.35, -39.5238567623359, 11376.2, -14.7, -19.9054782792923, 11454.2, -79.05, 63.3286464948903], [56222, 11406.35, -65.8, -37.0935595568749, 11380.1, -20.85, -4.90440146132162, 11460.45, -81.6, 78.329723312861], [56283, 11413.8, -70.05, -35.5921731844327, 11384.15, -23.95, 10.096675356649, 11467.5, -83.6, 93.3308001308316], [56326, 11420.8, -72.65, -32.78593201517, 11387.65, -27.85, 25.0977521746197, 11474.8, -83.95, 108.331876948802], [56369, 11427.15, -73.95, -28.69906406274, 11391.2, -32.6, 40.0988289925903, 11482.1, -82.35, 123.332953766773], [56410, 11433.25, -74.65, -23.9252277218581, 11394.5, -37, 55.099905810561, 11489.3, -79.1, 138.334030584744], [56454, 11439.55, -75, -19.8773047585254, 11398.35, -40, 70.1009826285316, 11495.85, -75.25, 153.335107402714], [56529, 11445.95, -74.8, -16.3377198774446, 11402.65, -41.95, 85.1020594465022, 11501.85, -71.05, 168.336184220685], [56570, 11452.25, -73.7, -12.9997647140419, 11407.05, -43.25, 100.103136264473, 11507.6, -66.45, -176.662738961345], [56614, 11458.65, -71.75, -9.67034635353699, 11411.3, -44, 115.104213082444, 11513.15, -61.35, -161.661662143374], [56659, 11464.9, -68.9, -6.16674012286378, 11415.65, -44.4, 130.105289900414, 11518.5, -55.5, -146.660585325403], [56702, 11470.9, -65.5, -2.42538348586823, 11420.2, -44.35, 145.106366718385, 11523.65, -48.7, -131.659508507433], [56775, 11476.95, -61.3, 1.43524572918872, 11424.95, -43.7, 160.107443536355, 11528.45, -41.1, -116.658431689462], [56818, 11482.7, -56.55, 5.25514059230128, 11429.9, -42.4, 175.108520354326, 11533, -32.9, -101.657354871491], [56862, 11488.55, -51.05, 8.91867069841879, 11435, -40.3, -169.890402827703, 11537.3, -24.25, -86.6562780535207], [56906, 11494.4, -44.9, 12.3944279716852, 11440.25, -37.3, -154.889326009733, 11541.35, -15.1, -71.65520123555], [56950, 11500.2, -38.05, 15.736199283759, 11445.65, -33.6, -139.888249191762, 11545.2, -5.55, -56.6541244175794], [57026, 11506.05, -30.4, 18.3105478524811, 11452.9, -28.1, -124.887172373791, 11549.3, 3.75, -41.6530475996088], [57066, 11512.8, -22.5, 22.1286306813435, 11461, -24.6, -109.886095555821, 11555.25, 13.7, -26.6519707816381], [57110, 11521.2, -14.35, 25.2747258813275, 11468.6, -20.15, -94.88501873785, 11562, 23.9, -11.6508939636675], [57154, 11530.3, -6.1, 28.4974449860544, 11477.85, -14.4, -79.8839419198794, 11568.5, 34.75, 3.35018285430318], [57198, 11539.95, 2.55, 31.4092595609687, 11487.35, -7.5, -64.8828651019087, 11575.3, 46.15, 18.3512596722738], [57284, 11550.1, 12.35, 32.9249871124675, 11496.8, 1.55, -49.8817882839381, 11582.7, 57.2, 33.3523364902445], [57325, 11560.35, 23.45, 33.4252482608516, 11506.5, 12.5, -34.8807114659674, 11591.4, 68.55, 48.3534133082151], [57366, 11571.3, 36.15, 32.7179085479798, 11516.5, 25.05, -19.8796346479968, 11604.25, 81.4, 63.3544901261857], [57410, 11583.3, 50.1, 30.9821965575774, 11529.1, 39.15, -4.87855783002616, 11617.95, 92.5, 78.3555669441564], [57454, 11594.75, 62.5, 35.4289390773501, 11545.25, 44.65, 10.1225189879445, 11631.2, 105.8, 93.356643762127], [57521, 11608.5, 73.25, 37.2237503360935, 11559.05, 52, 25.1235958059151, 11640.1, 113.55, 104.935021776377], [57564, 11621, 78.8, 34.8529299503518, 11569.7, 58.6, 40.1246726238858, 11649.95, 114.5, 118.257366367097], [57606, 11632.6, 79.35, 29.9569474203245, 11577.65, 63.25, 55.1257494418564, 11665.1, 113.65, 133.258443185067], [57650, 11644.2, 76.95, 26.2080142861529, 11586.9, 68.25, 70.1268262598271, 11681.6, 114.85, 148.259520003038], [57694, 11656.8, 75.9, 24.3909775377771, 11599.35, 75.3, 85.1279030777977, 11693.6, 118.05, 163.260596821009], [57769, 11669.45, 78.05, 22.076474992238, 11612.3, 82.05, 100.128979895768, 11705.15, 119.7, 178.261673638979], [57810, 11680.35, 82.3, 19.3886391776887, 11625.1, 87.75, 115.130056713739, 11720.2, 121.2, -166.73724954305], [57852, 11691, 88.25, 15.4613175743273, 11637.4, 94.35, 130.13113353171, 11736.8, 121.8, -151.736172725079], [57894, 11702.75, 94.7, 9.64445639894316, 11649.5, 103.85, 145.13221034968, 11752.45, 121.3, -136.735095907109], [57937, 11713.8, 100.45, 6.88885765440869, 11663.75, 108.35, 160.133287167651, 11767, 120.85, -121.734019089138], [57978, 11726.5, 103.45, 4.97452413880927, 11676.05, 112, 175.134363985622, 11780.7, 121.1, -106.732942271167], [58020, 11740.5, 104.65, 1.17775758485388, 11689.95, 119.8, -169.864559196408, 11793.75, 121.95, -91.7318654531969], [58062, 11754.95, 105.9, -4.03236784507242, 11705.35, 130, -154.863482378437, 11807.2, 122.8, -76.7307886352262], [58138, 11769, 108.95, -8.86112108683718, 11720.25, 139.75, -139.862405560466, 11821.1, 124.05, -61.7297118172556], [58182, 11782.05, 114.15, -12.259443930555, 11735.25, 147.45, -124.861328742496, 11834.95, 125.8, -46.7286349992849], [58226, 11794.7, 120.95, -14.4689910635682, 11749.4, 154.1, -109.860251924525, 11848.85, 128.45, -31.7275581813143], [58270, 11807.25, 128.6, -16.0884613909971, 11763, 160.85, -94.8591751065546, 11862.6, 132.15, -16.7264813633436], [58314, 11819.8, 136.35, -18.0310760239586, 11776.85, 169, -79.8580982885839, 11875.9, 136.8, -1.72540454537299], [58380, 11832.3, 143.95, -20.8247093185353, 11791.4, 179.1, -64.8570214706133, 11888.6, 142.15, 13.2756722725977], [58422, 11844.6, 152, -23.3402289365674, 11806.15, 189.85, -49.8559446526426, 11901, 148.9, 28.2767490905683], [58466, 11856.8, 161, -25.4252418314073, 11820.3, 200.8, -34.854867834672, 11913.2, 156.65, 43.2778259085389], [58510, 11869.1, 171, -26.9731257021003, 11833.65, 211.75, -19.8537910167013, 11925.3, 165.15, 58.2789027265096], [58554, 11881.6, 181.85, -28.912042607281, 11846.75, 223.5, -4.8527141987307, 11937.05, 173.6, 73.2799795444802], [58625, 11894.05, 193.4, -30.9535074001794, 11859.7, 235.85, 10.1483626192399, 11948.55, 182.6, 88.2810563624509], [58666, 11905.95, 205.6, -31.9508056468246, 11872.2, 248.3, 25.1494394372106, 11960.25, 193.35, 103.282133180422], [58710, 11917.65, 218.15, -32.1430836346312, 11884.35, 261.05, 40.1505162551812, 11972.1, 205.9, 118.283209998392], [58754, 11929.05, 231.4, -31.7654993909852, 11896.1, 274.3, 55.1515930731519, 11984, 219.85, 133.284286816363], [58798, 11940.35, 245.25, -31.1291190729519, 11909.25, 287.15, 70.1526698911225, 11995.9, 234.8, 148.285363634333], [58842, 11950.75, 258.1, -23.2497824229472, 11917.9, 288.5, 85.1537467090932, 12010, 248.95, 163.286440452304], [58912, 11962.9, 266, -15.6769711018703, 11922.85, 290.25, 97.5660281697827, 12023.75, 261.95, 178.287517270275], [58954, 11975.05, 269.9, -8.5330252887916, 11929.65, 290.5, 109.313637013649, 12034.8, 274.7, -166.711405911755], [58998, 11986.75, 271.85, -1.05970375812715, 11939.9, 289.1, 124.31471383162, 12045.4, 287.15, -151.710329093784], [59042, 12002.85, 272.5, 0.00198155960439589, 11951.65, 287.15, 139.315790649591, 12056.9, 287.15, -136.709252275813], [59086, 12020.05, 271.65, 0.0270428460503607, 11964.6, 287.1, 154.316867467561, 12069.65, 287.15, -121.708175457843], [59130, 12036.5, 269.15, 0.628018673234751, 11978.55, 286, 169.317944285532, 12082.6, 287.15, -106.707098639872], [59200, 12051, 265.75, 2.33436198581002, 11993.5, 282.95, -175.680978896497, 12096.05, 287.15, -91.7060218219014], [59244, 12064.15, 262.6, 4.9376740453248, 12008.6, 278.25, -160.679902078527, 12111.7, 287.15, -76.7049450039308], [59286, 12077.45, 260.6, 7.5538096297649, 12024.25, 273.35, -145.678825260556, 12127.6, 287.05, -61.7038681859601], [59330, 12091.95, 259.35, 9.03784753671233, 12039.95, 270.25, -130.677748442586, 12142.25, 286.5, -46.7027913679895], [59374, 12106.9, 258.55, 8.83797383093473, 12055.1, 270, -115.676671624615, 12157.25, 285.85, -31.7017145500188], [59434, 12122.1, 258.3, 7.27711398126484, 12070.15, 271.9, -100.675594806644, 12172.4, 284.95, -16.7006377320482], [59478, 12137.35, 259.2, 5.17906213937166, 12085, 274.65, -85.6745179886737, 12187.5, 283.9, -1.69956091407754], [59522, 12152.45, 261.1, 3.28778366375783, 12099.5, 277.6, -70.673441170703, 12202.55, 283.55, 13.3015159038931], [59566, 12167.05, 263.65, 2.22724789115671, 12113.95, 280.7, -55.6723643527324, 12217.45, 284.75, 28.3025927218638], [59610, 12181.3, 266.75, 1.72836005035683, 12128.45, 283.95, -40.6712875347617, 12233.65, 287.15, 43.3036695398344], [59671, 12196.55, 270.2, 0.00338958335986825, 12146.05, 287.15, -25.6702107167911, 12250.2, 287.15, 58.304746357805], [59714, 12212.9, 272.7, -0.00498314536055471, 12163.8, 287.15, -10.6691338988204, 12267.75, 287.15, 73.3058231757757], [59754, 12230.6, 273.35, 0.00328697981492093, 12180.95, 287.15, 4.33194291915022, 12286.4, 287.15, 88.3068999937463], [59798, 12248.95, 272.35, -0.00686456179002445, 12199.65, 287.15, 19.3330197371209, 12304.95, 287.15, 103.307976811717], [59841, 12268.15, 270.4, -0.000748687814220074, 12219.35, 287.15, 34.3340965550915, 12323.6, 287.15, 118.309053629688], [59913, 12288.3, 268.45, -0.0505963723965907, 12239.4, 287.15, 49.3351733730622, 12342.35, 287.05, 133.310130447658], [59956, 12308.8, 267.2, -0.10725257710002, 12259.3, 287.15, 64.3362501910328, 12361.25, 286.95, 148.311207265629], [59998, 12329.35, 267.05, -0.0140444729003599, 12279.1, 287.15, 79.3373270090034, 12381.15, 287.1, 163.3122840836], [60042, 12350.35, 268, -0.0105181534222677, 12299.6, 287.15, 94.3384038269741, 12404.2, 287.15, 178.31336090157], [60042, 12350.35, 268, -0.0105181534222677, 12299.6, 287.15, 94.3384038269741, 12404.2, 287.15, 178.31336]];
#endinitclip
Symbol 94 Button
on (release) {
getURL ("http://www.box10.com/?utm_source=brandedgames&utm_medium=box10ATV2&utm_url=" + _root._url, "_blank");
}
Symbol 145 MovieClip Frame 1
_parent.shad.gotoAndStop(1);
Symbol 145 MovieClip Frame 21
gotoAndPlay (1);
Symbol 148 MovieClip Frame 1
this.stop();
Instance of Symbol 109 MovieClip "mc_hit" in Symbol 148 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 171 MovieClip [lib_bike_body] Frame 1
this.stop();
Symbol 171 MovieClip [lib_bike_body] Frame 2
CGP.playSound(CGP.snd_expl, 100);
Symbol 171 MovieClip [lib_bike_body] Frame 13
this.stop();
Symbol 174 MovieClip [lib_wheel] Frame 1
#initclip 28
Object.registerClass("lib_wheel", CWheel);
#endinitclip
Instance of Symbol 173 MovieClip "mc_crush_test" in Symbol 174 MovieClip [lib_wheel] Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 185 MovieClip [lib_sparkle] Frame 2
this.removeMovieClip();
Symbol 206 MovieClip Frame 20
this.removeMovieClip();
stop();
Symbol 211 MovieClip Frame 10
stop();
Symbol 215 MovieClip Frame 14
stop();
Instance of Symbol 211 MovieClip in Symbol 216 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Instance of Symbol 211 MovieClip in Symbol 216 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Symbol 216 MovieClip Frame 10
stop();
Symbol 238 MovieClip Frame 11
stop();
Instance of Symbol 211 MovieClip in Symbol 239 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Instance of Symbol 211 MovieClip in Symbol 239 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Symbol 239 MovieClip Frame 10
stop();
Symbol 240 MovieClip [lib_car2] Frame 1
#initclip 20
Object.registerClass("lib_car2", CCrushObject);
#endinitclip
this.miracleLibName = "lib_car2_hit";
this.crushSpeed = 2.5;
this.stop();
Symbol 240 MovieClip [lib_car2] Frame 2
this.endCrumple();
CGP.playSound(CGP.snd_crush_small, 100);
Symbol 240 MovieClip [lib_car2] Frame 3
this.endCrush();
CGP.playSound(CGP.snd_crush, 100);
Symbol 244 MovieClip [lib_car2_hit] Frame 1
this.stop();
Instance of Symbol 211 MovieClip in Symbol 251 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Instance of Symbol 211 MovieClip in Symbol 251 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Symbol 251 MovieClip Frame 10
stop();
Instance of Symbol 211 MovieClip in Symbol 256 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Instance of Symbol 211 MovieClip in Symbol 256 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Symbol 256 MovieClip Frame 10
stop();
Symbol 257 MovieClip [lib_car3] Frame 1
#initclip 21
Object.registerClass("lib_car3", CCrushObject);
#endinitclip
this.miracleLibName = "lib_car3_hit";
this.crushSpeed = 2.5;
this.stop();
Symbol 257 MovieClip [lib_car3] Frame 2
this.endCrumple();
CGP.playSound(CGP.snd_crush_small, 100);
Symbol 257 MovieClip [lib_car3] Frame 3
this.endCrush();
CGP.playSound(CGP.snd_crush, 100);
Symbol 261 MovieClip [lib_car3_hit] Frame 1
this.stop();
Symbol 275 MovieClip Frame 6
this.stop();
this.swapDepths(1000);
this.removeMovieClip();
Symbol 278 MovieClip [lib_car1] Frame 1
#initclip 22
Object.registerClass("lib_car1", CCrushObject);
#endinitclip
this.miracleLibName = "lib_car1_hit";
this.stop();
Symbol 278 MovieClip [lib_car1] Frame 2
this.endCrumple();
CGP.playSound(CGP.snd_crush_small, 100);
Symbol 278 MovieClip [lib_car1] Frame 3
this.endCrush();
CGP.playSound(CGP.snd_crush, 100);
Symbol 282 MovieClip [lib_car1_hit] Frame 1
this.stop();
Symbol 285 MovieClip [lib_smoke] Frame 27
this.removeMovieClip();
Symbol 305 MovieClip [mc_bonus_repair_gr] Frame 1
#initclip 23
Object.registerClass("mc_bonus_repair_gr", CBonusRepair);
#endinitclip
Symbol 344 MovieClip [mc_bonus_score_minus_gr] Frame 1
#initclip 24
Object.registerClass("mc_bonus_score_minus_gr", CBonusTakeAwayScores);
#endinitclip
Symbol 383 MovieClip [mc_bonus_score_plus_gr] Frame 1
#initclip 25
Object.registerClass("mc_bonus_score_plus_gr", CBonusAddScores);
#endinitclip
Symbol 390 MovieClip [lib_bonus_damage] Frame 1
#initclip 26
Object.registerClass("lib_bonus_damage", CBonusDamage);
#endinitclip
Symbol 391 MovieClip [lib_boom] Frame 13
this.removeMovieClip();
Instance of Symbol 211 MovieClip in Symbol 398 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Instance of Symbol 211 MovieClip in Symbol 398 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Symbol 398 MovieClip Frame 10
stop();
Instance of Symbol 211 MovieClip in Symbol 403 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Instance of Symbol 211 MovieClip in Symbol 403 MovieClip Frame 1
on (press) {
this.gotoAndPlay(2);
_root.lamp1_parts.gotoAndPlay(2);
}
Symbol 403 MovieClip Frame 10
stop();
Symbol 404 MovieClip [lib_car5] Frame 1
#initclip 27
Object.registerClass("lib_car5", CCrushObject);
#endinitclip
this.miracleLibName = "lib_car5_hit";
this.crushSpeed = 2.5;
this.stop();
Symbol 404 MovieClip [lib_car5] Frame 2
this.endCrumple();
CGP.playSound(CGP.snd_crush_small, 100);
Symbol 404 MovieClip [lib_car5] Frame 3
this.endCrush();
CGP.playSound(CGP.snd_crush, 100);
Symbol 408 MovieClip [lib_car5_hit] Frame 1
this.stop();
Symbol 415 MovieClip Frame 86
gotoAndPlay ("loop");
Symbol 425 MovieClip Frame 172
gotoAndPlay ("loop");
Symbol 449 Button
on (release) {
gotoAndPlay (2);
}
Symbol 452 Button
on (release) {
gotoAndStop (21);
}
Symbol 455 Button
on (release) {
_root.gotoAndStop("hiScores");
}
Symbol 457 Button
on (release) {
play();
}
Symbol 462 Button
on (press) {
_parent.gotoAndPlay(11);
}
Symbol 486 Button
on (release) {
getURL ("http://www.box10.com/?utm_source=brandedgames&utm_medium=box10ATV&utm_url=" + _root._url, "_blank");
}
Symbol 494 Button
on (release) {
_root.level = myLev - 1;
_parent._parent._parent.gotoAndPlay(16);
}
Symbol 496 MovieClip Frame 1
myLev = Number(substring(_name, 2, 2));
num = myLev;
if (_root.levelMax >= myLev) {
nextFrame();
} else {
stop();
}
Symbol 497 MovieClip Frame 18
stop();
Symbol 498 MovieClip Frame 1
stop();
Symbol 498 MovieClip Frame 10
stop();
Symbol 498 MovieClip Frame 20
gotoAndStop (1);
Symbol 501 MovieClip Frame 14
stop();
Symbol 501 MovieClip Frame 26
_root.gameStart();
Symbol 502 MovieClip Frame 10
stop();
Symbol 502 MovieClip Frame 20
_root.gameStart();
Symbol 504 MovieClip Frame 1
stop();
Symbol 506 MovieClip Frame 1
stop();
Symbol 508 MovieClip Frame 1
stop();
Symbol 515 Button
on (press) {
this._parent.soundOff();
this.gotoAndStop(2);
}
Symbol 516 Button
on (press) {
this._parent.soundOn();
this.gotoAndStop(1);
}
Symbol 517 MovieClip Frame 1
this.stop();
Symbol 519 Button
on (press) {
this._parent._parent.soundOff();
this.gotoAndStop(2);
}
Symbol 522 Button
on (press) {
this._parent._parent.soundOn();
this.gotoAndStop(1);
}
Symbol 524 MovieClip Frame 1
stop();
Symbol 524 MovieClip Frame 2
stop();
Instance of Symbol 524 MovieClip in Symbol 525 MovieClip Frame 1
onClipEvent (load) {
if (this._parent._parent.stopSoundFlag) {
this.gotoAndStop(2);
}
}
Symbol 543 Button
on (release) {
play();
}
Symbol 544 MovieClip Frame 15
stop();
Symbol 544 MovieClip Frame 30
_parent.gotoAndStop("main");
Symbol 551 MovieClip Frame 1
stop();
Symbol 665 MovieClip [lifebar] Frame 1
#initclip 30
Object.registerClass("lifebar", CIndicator);
#endinitclip
Symbol 665 MovieClip [lifebar] Frame 100
stop();
Symbol 666 MovieClip [progressbar_mc] Frame 1
#initclip 29
Object.registerClass("progressbar_mc", CIndicator);
#endinitclip
stop();
Symbol 667 MovieClip Frame 1
this.stop();
Symbol 678 Button
on (release) {
this._parent._parent._parent._parent.nextLevel();
}
Symbol 684 MovieClip Frame 18
stop();
Symbol 688 MovieClip Frame 14
stop();
Symbol 688 MovieClip Frame 26
_root.gotoAndStop(2);
Symbol 693 MovieClip Frame 1
this.onEnterFrame = function () {
dot._x = (_root.mc_level.mc._x + _root.mc_level.mc.mc_car.body._x) * 0.3;
dot._y = ((_root.mc_level.mc._y + _root.mc_level.mc.mc_car.body._y) * 0.3) - 18;
mapz._x = _root.mc_level.mc._x * 0.3;
mapz._y = (_root.mc_level.mc._y * 0.3) - 18;
};
Symbol 713 Button
on (release) {
_root.name = name;
_root.score = _parent._parent._parent.scores;
_root.gotoAndStop("hiScores");
}
Symbol 717 Button
on (release) {
this._parent._parent._parent._parent.replay();
}
Symbol 724 MovieClip Frame 18
stop();
Symbol 728 MovieClip Frame 14
stop();
Symbol 728 MovieClip Frame 26
_root.gotoAndStop(2);
Symbol 737 MovieClip Frame 18
stop();
Symbol 741 MovieClip Frame 14
stop();
Symbol 741 MovieClip Frame 26
_root.gotoAndStop(2);
Symbol 745 Button
on (release) {
this._parent._parent.newGame();
}
Symbol 749 Button
on (release) {
this._parent._parent.replay();
}
Symbol 752 Button
on (release) {
gotoAndPlay (10);
}
Symbol 754 MovieClip Frame 9
stop();
Symbol 754 MovieClip Frame 18
this._parent._parent.resume();
Symbol 755 MovieClip Frame 8
this._parent.resume();
Symbol 756 MovieClip Frame 10
stop();
Symbol 756 MovieClip Frame 20
_root.gameStart();
Symbol 759 Button
on (press) {
this._parent.pauseGame();
}
Symbol 761 Button
on (press) {
this._parent.resume();
}
Symbol 762 MovieClip Frame 1
this.stop();
Symbol 772 Button
on (release) {
getURL ("http://www.box10.com/racing-games.html?utm_source=brandedgames&utm_medium=box10ATV", "_blank");
}
Symbol 775 Button
on (release) {
_root.newGame();
}
Symbol 777 MovieClip Frame 18
stop();
Symbol 781 MovieClip Frame 14
stop();
Symbol 781 MovieClip Frame 26
_root.gotoAndStop(2);