diff --git a/Java/Project_Models/Cognitive_Model/Action.java b/Java/Project_Models/Cognitive_Model/Action.java new file mode 100644 index 0000000..66c778a --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/Action.java @@ -0,0 +1,26 @@ +public abstract class Action { + + + +Integer priority; //Priority of the Task +Integer delay; //Potential Delay before starting the task +Integer taskTime; //How long should the task take +boolean taskComplete; //Is the task completed? +int actionType; + +public Action(int actionType, int delay){ + this.actionType = actionType; + this.delay = delay; +} + +public int getType(){ + return actionType; +} + + +public Integer getDelay(){ + return delay; +} + + +} diff --git a/Java/Project_Models/Cognitive_Model/Main.java b/Java/Project_Models/Cognitive_Model/Main.java new file mode 100644 index 0000000..ad362e5 --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/Main.java @@ -0,0 +1,60 @@ +import java.io.BufferedWriter; +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import java.net.SocketException; +import java.util.Arrays; + +import javax.swing.BorderFactory; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.OverlayLayout; +import javax.swing.SwingConstants; +import javax.swing.border.Border; + +public class Main { + public static void main(String[] args) { + + + //Encapsulation (or lack thereof) Test + Model m = new Model(); + MindQueue q = m.getQueue(); + Action a = new Vision(); + System.out.println(q.pop()); + q.push(a); + MindQueue q2 = m.getQueue(); + System.out.println(q2.pop()); + + + try(XPlaneConnect xpc = new XPlaneConnect()) + { + Action b = new Vision(); + // Ensure connection established. + m = new Model(xpc); + m.activate(); + m.push(b); + while(m.isActive() && !m.isEmpty()) { + float[] array = m.next(); + if(array != null){ + System.out.println(array[0]); + } else { + System.out.println("no dice"); + // System.out.println(xpc.getDREF(null)"); + } + + } + + } + catch (SocketException ex) + { + System.out.println("Unable to set up the connection. (Error message was '" + ex.getMessage() + "'.)"); + } + catch (IOException ex) + { + System.out.println("Something went wrong with one of the commands. (Error message was '" + ex.getMessage() + "'.)"); + + } + System.out.println("Exiting"); + } + +} diff --git a/Java/Project_Models/Cognitive_Model/MindQueue.java b/Java/Project_Models/Cognitive_Model/MindQueue.java new file mode 100644 index 0000000..3cd48cb --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/MindQueue.java @@ -0,0 +1,40 @@ + + +import java.util.LinkedList; + +public class MindQueue { + + LinkedList q; + + public MindQueue () { + q = new LinkedList(); + } + + public void push(Action e){ + q.add(e); + } + + + public Action removeEvent(Action e){ + Action temp = e; + q.remove(e); + return temp; + } + + public Action pop() { + Vision v = new Vision(); + if(q.isEmpty()) { + return v; + } + return q.remove(); + } + + public boolean isEmpty(){ + return q.isEmpty(); + } + + + + + +} diff --git a/Java/Project_Models/Cognitive_Model/Model.java b/Java/Project_Models/Cognitive_Model/Model.java new file mode 100644 index 0000000..224ea6d --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/Model.java @@ -0,0 +1,83 @@ +import java.io.IOException; + +// import gov.nasa.xpc.XPlaneConnect; + +public class Model { + + private MindQueue q; + boolean modelActive; + XPlaneConnect xpc; + + public Model() { + q = new MindQueue(); + modelActive = false; + } + + public Model(XPlaneConnect xpc) { + q = new MindQueue(); + modelActive = false; + this.xpc = xpc; + } + + + + public MindQueue getQueue() { + return q; + } + + public float[] next(){ + Action temp = q.pop(); + System.out.println("Type of Action: " + temp.getType()); + float[] returnArray = null; + if(temp.getType() == 1){ + System.out.println("in next if statement"); + Vision tempV = (Vision) temp; + + //execute delay + try { + Thread.sleep(tempV.getDelay()); // Using the action's Built in Delay + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + + String dref = "sim/cockpit2/gauges/indicators/airspeed_kts_pilot"; + try { + returnArray = xpc.getDREF(dref); + + } catch (IOException e) { + // TODO: handle exception + } + + } + q.push(temp); + return returnArray; + + } + + public boolean isEmpty(){ + return q.isEmpty(); + } + + public void push(Action a){ + q.push(a); + } + + public void activate() { + modelActive = true; + } + + public void establishConnection(XPlaneConnect newXPC){ + this.xpc = newXPC; + } + + public void deactivate(){ + modelActive = false; + } + + public boolean isActive(){ + return modelActive; + } + +} diff --git a/Java/Project_Models/Cognitive_Model/Process.java b/Java/Project_Models/Cognitive_Model/Process.java new file mode 100644 index 0000000..4dcf8de --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/Process.java @@ -0,0 +1,9 @@ +public class Process { + + + public Process(){ + + } + + +} diff --git a/Java/Project_Models/Cognitive_Model/Tests.java b/Java/Project_Models/Cognitive_Model/Tests.java new file mode 100644 index 0000000..17344e0 --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/Tests.java @@ -0,0 +1,17 @@ +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class Tests { + + MindQueue m = new MindQueue(); + + @Test + public void test1() { + Integer i = 1; + Action a = new Vision(); + m.push(a); + assertEquals(i, m.pop()); + } + +} diff --git a/Java/Project_Models/Cognitive_Model/Vision.java b/Java/Project_Models/Cognitive_Model/Vision.java new file mode 100644 index 0000000..65bfb21 --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/Vision.java @@ -0,0 +1,15 @@ +import java.util.Map; +import java.util.TreeMap; + +public class Vision extends Action { + + + public Vision(){ + super(1,1000); + } + +public Vision(int delay){ + super(1,delay); +} + +} \ No newline at end of file diff --git a/Java/Project_Models/Cognitive_Model/XPlaneConnect.java b/Java/Project_Models/Cognitive_Model/XPlaneConnect.java new file mode 100644 index 0000000..fd3d41a --- /dev/null +++ b/Java/Project_Models/Cognitive_Model/XPlaneConnect.java @@ -0,0 +1,954 @@ +//NOTICES: +// Copyright (c) 2013-2018 United States Government as represented by the Administrator of the +// National Aeronautics and Space Administration. All Rights Reserved. +// +// DISCLAIMERS +// No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, +// EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE +// SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT +// SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO +// THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY +// GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, +// SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. +// FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY +// SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS." +// +// Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES +// GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF +// RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, +// EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR +// RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD +// HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY +// PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER +// SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT. + +// package gov.nasa.xpc; + +// import gov.nasa.xpc.discovery.Beacon; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.lang.AutoCloseable; +import java.net.*; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; + +/** + * Represents a client that can connect to and interact with the X-Plane Connect plugin. + * + * @author Jason Watkins + * @version 0.1 + * @since 2015-03-31 + */ +public class XPlaneConnect implements AutoCloseable +{ + private static int clientNum; + private DatagramSocket socket; + private InetAddress xplaneAddr; + private int xplanePort; + + /** + * Gets the port on which the client receives data from the plugin. + * + * @return The incoming port number. + */ + public int getRecvPort() { return socket.getLocalPort(); } + + /** + * Gets the port on which the client sends data to X-Plane. + * + * @return The outgoing port number. + */ + public int getXPlanePort() { return xplanePort; } + + /** + * Sets the port on which the client sends data to X-Plane + * + * @param port The new outgoing port number. + * @throws IllegalArgumentException If {@code port} is not a valid port number. + */ + public void setXPlanePort(int port) + { + if(port < 0 || port >= 0xFFFF) + { + throw new IllegalArgumentException("Invalid port (must be non-negative and less than 65536)."); + } + xplanePort = port; + } + + /** + * Gets the hostname of the X-Plane host. + * + * @return The hostname of the X-Plane host. + */ + public String getXPlaneAddr() { return xplaneAddr.getHostAddress(); } + + /** + * Sets the hostname of the X-Plane host. + * + * @param host The new hostname of the X-Plane host machine. + * @throws UnknownHostException {@code host} is not valid. + */ + public void setXplaneAddr(String host) throws UnknownHostException + { + xplaneAddr = InetAddress.getByName(host); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using default ports and assuming X-Plane is running on the + * local machine. + * + * @throws SocketException If this instance is unable to bind to the default receive port. + */ + public XPlaneConnect() throws SocketException + { + this(100); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class with the specified timeout using default ports and + * assuming X-Plane is running on the local machine. + * + * @param timeout The time, in milliseconds, after which read attempts will timeout. + * @throws SocketException If this instance is unable to bind to the default receive port. + */ + public XPlaneConnect(int timeout) throws SocketException + { + this.socket = new DatagramSocket(0); + this.xplaneAddr = InetAddress.getLoopbackAddress(); + this.xplanePort = 49009; + this.socket.setSoTimeout(timeout); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using the specified ports and X-Plane host. + * + * @param xpHost The network host on which X-Plane is running. + * @param xpPort The port on which the X-Plane Connect plugin is listening. + * @param port The local port to use when sending and receiving data from XPC. + * @throws java.net.SocketException If this instance is unable to bind to the specified port. + * @throws java.net.UnknownHostException If the specified hostname can not be resolved. + */ + public XPlaneConnect(String xpHost, int xpPort, int port) + throws java.net.SocketException, java.net.UnknownHostException + { + this(xpHost, xpPort, port, 100); + } + + + /** + * Initializes a new instance of the {@code XPlaneConnect} class from a received discovery Beacon + * @param beacon The beacon received from {@code XPlaneConnectDiscovery} + * @throws SocketException If this instance is unable to bind to the specified port. + */ + public XPlaneConnect(Beacon beacon) throws SocketException { + this.socket = new DatagramSocket(0); + this.xplaneAddr = beacon.getXplaneAddress(); + this.xplanePort = beacon.getPluginPort(); + this.socket.setSoTimeout(100); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using the specified ports, hostname, and timeout. + * + * @param xpHost The network host on which X-Plane is running. + * @param xpPort The port on which the X-Plane Connect plugin is listening. + * @param port The port on which the X-Plane Connect plugin is sending data. + * @param timeout The time, in milliseconds, after which read attempts will timeout. + * @throws java.net.SocketException If this instance is unable to bind to the specified port. + * @throws java.net.UnknownHostException If the specified hostname can not be resolved. + */ + public XPlaneConnect(String xpHost, int xpPort, int port, int timeout) + throws java.net.SocketException, java.net.UnknownHostException + { + this.socket = new DatagramSocket(port); + this.xplaneAddr = InetAddress.getByName(xpHost); + this.xplanePort = xpPort; + this.socket.setSoTimeout(timeout); + } + + /** + * Closes the underlying socket. + */ + public void close() + { + if(socket != null) + { + socket.close(); + socket = null; + } + } + + /** + * Read data from the X-Plane plugin. This method will read whatever data is available and return it. + * + * @return The data send from X-Plane. + * @throws IOException If the read operation fails + */ + private byte[] readUDP() throws IOException + { + byte[] buffer = new byte[65536]; + DatagramPacket packet = new DatagramPacket(buffer, buffer.length); + try + { + socket.receive(packet); + return Arrays.copyOf(buffer, packet.getLength()); + } + catch (SocketTimeoutException ex) + { + return new byte[0]; + } + } + + /** + * Send the given data to the X-Plane plugin. + * + * @param buffer The data to send. + * @throws IOException If the send operation fails. + */ + private void sendUDP(byte[] buffer) throws IOException + { + DatagramPacket packet = new DatagramPacket(buffer, buffer.length, xplaneAddr, xplanePort); + socket.send(packet); + } + + /** + * Pauses or unpauses X-Plane. + * + * @param pause {@code true} to pause the simulator; {@code false} to un-pause. + * @throws IOException If the command cannot be sent. + */ + public void pauseSim(boolean pause) throws IOException + { + // S I M U LEN VAL + byte[] msg = {0x53, 0x49, 0x4D, 0x55, 0x00, 0x00}; + msg[5] = (byte)(pause ? 0x01 : 0x00); + sendUDP(msg); + } + + /** + * Pauses, unpauses, or switches the pause state of X-Plane. + * + * @param pause {@code 1} to pause the simulator, {@code 0} to unpause, or {@code 2} to switch. + * @throws IllegalArgumentException If the values of {@code pause} is not a valid command. + * @throws IOException If the command cannot be sent. + */ + public void pauseSim(int pause) throws IOException + { + if(pause < 0 || (pause > 2 && pause < 100) || (pause > 119 && pause < 200) || pause > 219) + { + throw new IllegalArgumentException("pause must be a value in the range [0, 2], [100, 119], or [200, 219]."); + } + + // S I M U LEN VAL + byte[] msg = {0x53, 0x49, 0x4D, 0x55, 0x00, 0x00}; + msg[5] = (byte)pause; + sendUDP(msg); + } + + /** + * Requests a single dref value from X-Plane. + * + * @param dref The name of the dref requested. + * @return A byte array representing data dependent on the dref requested. + * @throws IOException If either the request or the response fails. + */ + public float[] getDREF(String dref) throws IOException + { + return getDREFs(new String[] {dref})[0]; + } + + /** + * Requests several dref values from X-Plane. + * + * @param drefs An array of dref names to request. + * @return A multidimensional array representing the data for each requested dref. + * @throws IOException If either the request or the response fails. + */ + public float[][] getDREFs(String[] drefs) throws IOException + { + //Preconditions + if(drefs == null || drefs.length == 0) + { + throw new IllegalArgumentException("drefs must be a valid array with at least one dref."); + } + if(drefs.length > 255) + { + throw new IllegalArgumentException("Can not request more than 255 DREFs at once."); + } + + //Convert drefs to bytes. + byte[][] drefBytes = new byte[drefs.length][]; + for(int i = 0; i < drefs.length; ++i) + { + drefBytes[i] = drefs[i].getBytes(StandardCharsets.UTF_8); + if(drefBytes[i].length == 0) + { + throw new IllegalArgumentException("DREF " + i + " is an empty string!"); + } + if(drefBytes[i].length > 255) + { + throw new IllegalArgumentException("DREF " + i + " is too long (must be less than 255 bytes in UTF-8). Are you sure this is a valid DREF?"); + } + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETD".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(drefs.length); + for(byte[] dref : drefBytes) + { + os.write(dref.length); + os.write(dref, 0, dref.length); + } + sendUDP(os.toByteArray()); + + //Read response + byte[] data = readUDP(); + if(data.length == 0) + { + throw new IOException("No response received."); + } + if(data.length < 6) + { + throw new IOException("Response too short"); + } + float[][] result = new float[drefs.length][]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + int cur = 6; + for(int j = 0; j < result.length; ++j) + { + result[j] = new float[data[cur++]]; + for(int k = 0; k < result[j].length; ++k) //TODO: There must be a better way to do this + { + result[j][k] = bb.getFloat(cur); + cur += 4; + } + } + return result; + } + + public void sendDREF(String dref, float value) throws IOException + { + sendDREF(dref, new float[] {value}); + } + + /** + * Sends a command to X-Plane that sets the given DREF. + * + * @param dref The name of the X-Plane dataref to set. + * @param value An array of floating point values whose structure depends on the dref specified. + * @throws IOException If the command cannot be sent. + */ + public void sendDREF(String dref, float[] value) throws IOException + { + sendDREFs(new String[] {dref}, new float[][] {value}); + } + + /** + * Sends a command to X-Plane that sets the given DREF. + * + * @param drefs The names of the X-Plane datarefs to set. + * @param values A sequence of arrays of floating point values whose structure depends on the drefs specified. + * @throws IOException If the command cannot be sent. + */ + public void sendDREFs(String[] drefs, float[][] values) throws IOException + { + //Preconditions + if(drefs == null || drefs.length == 0) + { + throw new IllegalArgumentException(("drefs must be non-empty.")); + } + if(values == null || values.length != drefs.length) + { + throw new IllegalArgumentException("values must be of the same size as drefs."); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DREF".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + for(int i = 0; i < drefs.length; ++i) + { + String dref = drefs[i]; + float[] value = values[i]; + + if (dref == null) + { + throw new IllegalArgumentException("dref must be a valid string."); + } + if (value == null || value.length == 0) + { + throw new IllegalArgumentException("value must be non-null and should contain at least one value."); + } + + //Convert drefs to bytes. + byte[] drefBytes = dref.getBytes(StandardCharsets.UTF_8); + if (drefBytes.length == 0) + { + throw new IllegalArgumentException("DREF is an empty string!"); + } + if (drefBytes.length > 255) + { + throw new IllegalArgumentException("dref must be less than 255 bytes in UTF-8. Are you sure this is a valid dref?"); + } + + ByteBuffer bb = ByteBuffer.allocate(4 * value.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (int j = 0; j < value.length; ++j) + { + bb.putFloat(j * 4, value[j]); + } + + //Build and send message + os.write(drefBytes.length); + os.write(drefBytes, 0, drefBytes.length); + os.write(value.length); + os.write(bb.array()); + } + sendUDP(os.toByteArray()); + } + + /** + * Gets the control surface information for the specified airplane. + * + * @param ac The aircraft to get control surface information for. + * @return An array containing control surface data in the same format as {@code sendCTRL}. + * @throws IOException If the command cannot be sent or a response cannot be read. + */ + public float[] getCTRL(int ac) throws IOException + { + // Send request + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETC".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(ac); + sendUDP(os.toByteArray()); + + // Read response + byte[] data = readUDP(); + if(data.length == 0) + { + throw new IOException("No response received."); + } + if(data.length < 31) + { + throw new IOException("Response too short"); + } + + // Parse response + float[] result = new float[7]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + result[0] = bb.getFloat(5); + result[1] = bb.getFloat(9); + result[2] = bb.getFloat(13); + result[3] = bb.getFloat(17); + result[4] = bb.get(21); + result[5] = bb.getFloat(22); + result[6] = bb.getFloat(27); + return result; + } + + /** + * Sends command to X-Plane setting control surfaces on the player ac. + * + * @param values

An array containing zero to six values representing control surface data as follows:

+ *
    + *
  1. Latitudinal Stick [-1,1]
  2. + *
  3. Longitudinal Stick [-1,1]
  4. + *
  5. Rudder Pedals [-1, 1]
  6. + *
  7. Throttle [-1, 1]
  8. + *
  9. Gear (0=up, 1=down)
  10. + *
  11. Flaps [0, 1]
  12. + *
  13. Speedbrakes [-0.5, 1.5]
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @throws IOException If the command cannot be sent. + */ + public void sendCTRL(float[] values) throws IOException + { + sendCTRL(values, 0); + } + + /** + * Sends command to X-Plane setting control surfaces on the specified ac. + * + * @param values

An array containing zero to six values representing control surface data as follows:

+ *
    + *
  1. Latitudinal Stick [-1,1]
  2. + *
  3. Longitudinal Stick [-1,1]
  4. + *
  5. Rudder Pedals [-1, 1]
  6. + *
  7. Throttle [-1, 1]
  8. + *
  9. Gear (0=up, 1=down)
  10. + *
  11. Flaps [0, 1]
  12. + *
  13. Speedbrakes [-0.5, 1.5]
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @param ac The ac to set. 0 for the player's ac. + * @throws IOException If the command cannot be sent. + */ + public void sendCTRL(float[] values, int ac) throws IOException + { + //Preconditions + if(values == null) + { + throw new IllegalArgumentException("ctrl must no be null."); + } + if(values.length > 7) + { + throw new IllegalArgumentException("ctrl must have 7 or fewer elements."); + } + if(ac < 0 || ac > 9) + { + throw new IllegalArgumentException("ac must be non-negative and less than 9."); + } + + //Pad command values and convert to bytes + int i; + int cur = 0; + ByteBuffer bb = ByteBuffer.allocate(26); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(i = 0; i < 6; ++i) + { + if(i == 4) + { + if(i >= values.length) + { + bb.put(cur, (byte)-1); + } + else + { + bb.put(cur, (byte)values[i]); + } + cur += 1; + } + else if (i >= values.length) + { + bb.putFloat(cur, -998); + cur+= 4; + } + else + { + bb.putFloat(cur, values[i]); + cur += 4; + } + } + bb.put(cur++, (byte) ac); + bb.putFloat(cur, values.length == 7 ? values[6] : -998); + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("CTRL".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Gets position information for the specified airplane. + * + * @param ac The aircraft to get position information for. + * @return An array containing control surface data in the same format as {@code sendPOSI}. + * @throws IOException If the command cannot be sent or a response cannot be read. + */ + public double[] getPOSI(int ac) throws IOException + { + // Send request + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETP".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(ac); + sendUDP(os.toByteArray()); + + // Read response + byte[] data = readUDP(); + if(data.length == 0) + { + throw new IOException("No response received."); + } + if(data.length < 34) + { + throw new IOException("Response too short"); + } + + // Parse response + double[] result = new double[7]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(int i = 0; i < 7; ++i) + { + result[i] = bb.getFloat(6 + 4 * i); + } + return result; + } + + /** + * Sets the position of the player ac. + * + * @param values

An array containing position elements as follows:

+ *
    + *
  1. Latitude (deg)
  2. + *
  3. Longitude (deg)
  4. + *
  5. Altitude (m above MSL)
  6. + *
  7. Roll (deg)
  8. + *
  9. Pitch (deg)
  10. + *
  11. True Heading (deg)
  12. + *
  13. Gear (0=up, 1=down)
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @throws IOException If the command can not be sent. + */ + public void sendPOSI(double[] values) throws IOException + { + sendPOSI(values, 0); + } + + /** + * Sets the position of the specified ac with double precision coordinates. + * + * @param values

An array containing position elements as follows:

+ *
    + *
  1. Latitude (deg)
  2. + *
  3. Longitude (deg)
  4. + *
  5. Altitude (m above MSL)
  6. + *
  7. Roll (deg)
  8. + *
  9. Pitch (deg)
  10. + *
  11. True Heading (deg)
  12. + *
  13. Gear (0=up, 1=down)
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @param ac The ac to set. 0 for the player ac. + * @throws IOException If the command can not be sent. + */ + public void sendPOSI(double[] values, int ac) throws IOException + { + //Preconditions + if(values == null) + { + throw new IllegalArgumentException("posi must no be null."); + } + if(values.length > 7) + { + throw new IllegalArgumentException("posi must have 7 or fewer elements."); + } + if(ac < 0 || ac > 255) + { + throw new IllegalArgumentException("ac must be between 0 and 255."); + } + + //Pad command values and convert to bytes + int i; + ByteBuffer bb = ByteBuffer.allocate(40); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(i = 0; i < values.length; ++i) + { + if(i<3) /* lat/lon/height as double */ + { + bb.putDouble(values[i]); + } + else + { + bb.putFloat((float)values[i]); + } + } + for(; i < 7; ++i) + { + bb.putFloat(-998); + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("POSI".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(ac); + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Reads X-Plane data + * + * @return The data read. + * @throws IOException If the read operation fails. + */ + public float[][] readData() throws IOException + { + byte[] buffer = readUDP(); + ByteBuffer bb = ByteBuffer.wrap(buffer); + int cur = 5; + int len = bb.get(cur++); + float[][] result = new float[bb.get(len)][9]; + for(int i = 0; i < len; ++i) + { + for(int j = 0; j < 9; ++j) + { + result[i][j] = bb.getFloat(cur); + cur += 4; + } + } + return result; + } + + /** + * Sends data to X-Plane + * + * @param data The data to send. + * @throws IOException If the command cannot be sent. + */ + public void sendDATA(float[][] data) throws IOException + { + //Preconditions + if(data == null || data.length == 0) + { + throw new IllegalArgumentException("data must be a non-null, non-empty array."); + } + + //Convert data to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * 9 * data.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(int i = 0; i < data.length; ++i) + { + int rowStart = 9 * 4 * i; + float[] row = data[i]; + if(row.length != 9) + { + throw new IllegalArgumentException("Rows must contain exactly 9 items. (Row " + i + ")"); + } + + bb.putInt(rowStart, (int) row[0]); + for(int j = 1; j < row.length; ++j) + { + bb.putFloat(rowStart + 4 * j, row[j]); + } + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DATA".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Selects what data X-Plane will export over UDP. + * + * @param rows The row numbers to select. + * @throws IOException If the command cannot be sent. + */ + public void selectDATA(int[] rows) throws IOException + { + //Preconditions + if(rows == null || rows.length == 0) + { + throw new IllegalArgumentException("rows must be a non-null, non-empty array."); + } + + //Convert data to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * rows.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(int i = 0; i < rows.length; ++i) + { + bb.putInt(i * 4, rows[i]); + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DSEL".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Sets a message to be displayed on the screen in X-Plane at the default screen location. + * + * @param msg The message to display. Should not contain any newline characters. + * @throws IOException If the command cannot be sent. + */ + public void sendTEXT(String msg) throws IOException + { + sendTEXT(msg, -1, -1); + } + + /** + * Sets a message to be displayed on the screen in X-Plane at the specified coordinates. + * + * @param msg The message to display. Should not contain any newline characters. + * @param x The number of pixels from the right edge of the screen to display the text. + * @param y The number of pixels from the bottom edge of the screen to display the text. + * @throws IOException If the command cannot be sent. + */ + public void sendTEXT(String msg, int x, int y) throws IOException + { + //Preconditions + if(msg == null) + { + msg = ""; + } + + //Convert drefs to bytes. + byte[] msgBytes = msg.getBytes(StandardCharsets.UTF_8); + if(msgBytes.length > 255) + { + throw new IllegalArgumentException("msg must be less than 255 bytes in UTF-8."); + } + + ByteBuffer bb = ByteBuffer.allocate(8); + bb.order(ByteOrder.LITTLE_ENDIAN); + bb.putInt(0, x); + bb.putInt(4, y); + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("TEXT".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + os.write(msgBytes.length); + os.write(msgBytes); + sendUDP(os.toByteArray()); + } + + /** + * Sets the camera view in X-Plane. + * + * @param view The view to use. + * @throws IOException If the command cannot be sent. + */ + public void sendVIEW(ViewType view) throws IOException + { + ByteBuffer bb = ByteBuffer.allocate(4); + bb.order(ByteOrder.LITTLE_ENDIAN); + bb.putInt(view.getValue()); + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("VIEW".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Adds, removes, or clears a set of waypoints. If the command is clear, the points are ignored + * and all points are removed. + * + * @param op The operation to perform. + * @param points An array of values representing points. Each triplet in the array will be + * interpreted as a (Lat, Lon, Alt) point. + * @throws IOException If the command cannot be sent. + */ + public void sendWYPT(WaypointOp op, float[] points) throws IOException + { + //Preconditions + if(points.length % 3 != 0) + { + throw new IllegalArgumentException("points.length should be divisible by 3."); + } + if(points.length / 3 > 255) + { + throw new IllegalArgumentException("Too many points. Must be less than 256."); + } + + //Convert points to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * points.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(float f : points) + { + bb.putFloat(f); + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("WYPT".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(op.getValue()); + os.write(points.length / 3); + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Send a command to X-Plane. + * + * @param comm The name of the X-Plane command to send. + * @throws IOException If the command cannot be sent. + */ + public void sendCOMM(String comm) throws IOException + { + //Preconditions + if(comm == null || comm.length() == 0) + { + throw new IllegalArgumentException(("comm must be non-empty.")); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("COMM".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + + //Convert comm to bytes. + byte[] commBytes = comm.getBytes(StandardCharsets.UTF_8); + if (commBytes.length == 0) + { + throw new IllegalArgumentException("COMM is an empty string!"); + } + if (commBytes.length > 255) + { + throw new IllegalArgumentException("comm must be less than 255 bytes in UTF-8. Are you sure this is a valid comm?"); + } + + //Build and send message + os.write(commBytes.length); + os.write(commBytes); + sendUDP(os.toByteArray()); + } + + + /** + * Sets the port on which the client will receive data from X-Plane. + * + * @param port The new incoming port number. + * @throws IOException If the command cannot be sent. + */ + public void setCONN(int port) throws IOException + { + if(port < 0 || port >= 0xFFFF) + { + throw new IllegalArgumentException("Invalid port (must be non-negative and less than 65536)."); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("CONN".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write((byte) port); + os.write((byte) (port >> 8)); + sendUDP(os.toByteArray()); + + int soTimeout = socket.getSoTimeout(); + socket.close(); + socket = new DatagramSocket(port); + socket.setSoTimeout(soTimeout); + readUDP(); // Try to read response + } +} diff --git a/Java/Project Models/Model-1/.idea/compiler.xml b/Java/Project_Models/Model-1/.idea/compiler.xml similarity index 100% rename from Java/Project Models/Model-1/.idea/compiler.xml rename to Java/Project_Models/Model-1/.idea/compiler.xml diff --git a/Java/Project Models/Model-1/.idea/copyright/profiles_settings.xml b/Java/Project_Models/Model-1/.idea/copyright/profiles_settings.xml similarity index 100% rename from Java/Project Models/Model-1/.idea/copyright/profiles_settings.xml rename to Java/Project_Models/Model-1/.idea/copyright/profiles_settings.xml diff --git a/Java/Project Models/Model-1/.idea/libraries/Java.xml b/Java/Project_Models/Model-1/.idea/libraries/Java.xml similarity index 100% rename from Java/Project Models/Model-1/.idea/libraries/Java.xml rename to Java/Project_Models/Model-1/.idea/libraries/Java.xml diff --git a/Java/Project Models/Model-1/.idea/misc.xml b/Java/Project_Models/Model-1/.idea/misc.xml similarity index 100% rename from Java/Project Models/Model-1/.idea/misc.xml rename to Java/Project_Models/Model-1/.idea/misc.xml diff --git a/Java/Project Models/Model-1/.idea/modules.xml b/Java/Project_Models/Model-1/.idea/modules.xml similarity index 100% rename from Java/Project Models/Model-1/.idea/modules.xml rename to Java/Project_Models/Model-1/.idea/modules.xml diff --git a/Java/Project Models/Model-1/.idea/vcs.xml b/Java/Project_Models/Model-1/.idea/vcs.xml similarity index 100% rename from Java/Project Models/Model-1/.idea/vcs.xml rename to Java/Project_Models/Model-1/.idea/vcs.xml diff --git a/Java/Project Models/Model-1/BasicOperation.iml b/Java/Project_Models/Model-1/BasicOperation.iml similarity index 100% rename from Java/Project Models/Model-1/BasicOperation.iml rename to Java/Project_Models/Model-1/BasicOperation.iml diff --git a/Java/Project Models/Model-1/content/Rudder Pedals.png b/Java/Project_Models/Model-1/content/Rudder Pedals.png similarity index 100% rename from Java/Project Models/Model-1/content/Rudder Pedals.png rename to Java/Project_Models/Model-1/content/Rudder Pedals.png diff --git a/Java/Project Models/Model-1/content/Yoke Symbol.png b/Java/Project_Models/Model-1/content/Yoke Symbol.png similarity index 100% rename from Java/Project Models/Model-1/content/Yoke Symbol.png rename to Java/Project_Models/Model-1/content/Yoke Symbol.png diff --git a/Java/Project Models/Model-1/src/Main.java b/Java/Project_Models/Model-1/src/Main.java similarity index 98% rename from Java/Project Models/Model-1/src/Main.java rename to Java/Project_Models/Model-1/src/Main.java index 653d17c..006e594 100644 --- a/Java/Project Models/Model-1/src/Main.java +++ b/Java/Project_Models/Model-1/src/Main.java @@ -25,8 +25,7 @@ import java.awt.*; */ public class Main { - public static void main(String[] args) - { + public static void main(String[] args) { System.out.println("X-Plane Connect example program"); System.out.println("Setting up simulation..."); JFrame frame = new JFrame(); @@ -198,7 +197,7 @@ public class Main String drefHDGBug = "sim/cockpit/autopilot/heading_mag"; String drefAltitude = "sim/cockpit2/gauges/indicators/altitude_ft_pilot"; - File file = new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project Models/Model-1/src/output"); + File file = new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project_Models/Model-1/src/output"); if (!file.exists()) { file.createNewFile(); } @@ -346,7 +345,7 @@ public class Main } } else if(value2[0] > 0 && value[0] > bugged) { - if(ctrl1[1] > -0.15f){ + if(ctrl1[1] > -0.15f) { xpc.sendCTRL(rollLeft); } } @@ -540,7 +539,7 @@ class yokePosition extends JComponent { Graphics2D g2 = (Graphics2D) g; try { - final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project Models/Model-1/content/Yoke Symbol.png")); + final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project_Models/Model-1/content/Yoke Symbol.png")); Image scaledImage = image.getScaledInstance(xBound, yBound, Image.SCALE_DEFAULT); g.drawImage(scaledImage, 0, 0, getFocusCycleRootAncestor()); @@ -612,7 +611,7 @@ class rudderPosition extends JComponent { int textWidth = g.getFontMetrics().stringWidth("Roll Right"); g.drawString("Yaw Right", xBound - textWidth, yBound/2); try { - final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project Models/Model-1/content/Rudder Pedals.png")); + final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project_Models/Model-1/content/Rudder Pedals.png")); Image scaledImage = image.getScaledInstance(xBound, yBound, Image.SCALE_DEFAULT); g.drawImage(scaledImage, 0, 0, getFocusCycleRootAncestor()); } catch (IOException e) { diff --git a/Java/Project Models/Model-1/src/XPlaneConnect.java b/Java/Project_Models/Model-1/src/XPlaneConnect.java similarity index 100% rename from Java/Project Models/Model-1/src/XPlaneConnect.java rename to Java/Project_Models/Model-1/src/XPlaneConnect.java diff --git a/Java/Project Models/Model-1/src/legacy output b/Java/Project_Models/Model-1/src/legacy output similarity index 100% rename from Java/Project Models/Model-1/src/legacy output rename to Java/Project_Models/Model-1/src/legacy output diff --git a/Java/Project Models/Model-1/src/output b/Java/Project_Models/Model-1/src/output similarity index 96% rename from Java/Project Models/Model-1/src/output rename to Java/Project_Models/Model-1/src/output index cd4008d..69fffe8 100644 --- a/Java/Project Models/Model-1/src/output +++ b/Java/Project_Models/Model-1/src/output @@ -159145,4 +159145,6071 @@ [Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] [Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] [Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] -[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] \ No newline at end of file +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ][Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149286] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149240] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149179] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149174] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149340] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149563] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149534] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149209] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149261] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149543] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149907] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150777] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150377] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149337] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149095] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148444] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147709] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146387] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143879] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140350] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135971] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130991] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125970] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117257] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111613] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110095] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108454] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106724] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108614] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113037] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115720] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118362] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121509] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124129] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130260] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133070] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136388] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139713] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142347] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146798] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148008] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149275] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149899] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150790] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153475] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154416] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155533] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156637] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157375] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158080] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158875] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160089] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161224] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162695] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165462] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166236] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167243] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168112] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168207] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168235] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167690] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167490] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167186] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167032] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167374] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168387] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169802] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171302] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175669] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176718] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177465] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178191] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179088] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180334] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180588] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181038] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181442] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181606] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181684] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182644] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188079] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187651] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186456] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185709] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185347] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185586] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186355] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187537] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189637] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191780] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193023] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192829] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189507] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188160] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188336] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189754] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192074] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195000] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198356] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201164] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203274] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205048] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.238264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.244721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.252510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.261423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.273142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.288236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.308255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.335138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.371185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.417783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.478164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.553463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.645590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.755391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.886506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.038837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.216197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.418843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.651389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.915593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.215937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.534746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.911011] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.280798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.731091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.211962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.740267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.320644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.938295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.589903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.288979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.120329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.017889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.911636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.937901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.043282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.221455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.411474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.532959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.803453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.051025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.479477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.964874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.545105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.028965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.670086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.406281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.137455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.129341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.260147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.349236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.599609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.961411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.348427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.952637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.634056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.391953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.005600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.838242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.682434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.712982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.826019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.809326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.007843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.312065] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.427216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.435326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.472336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.580788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.893181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.252243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.931847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.464607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.145325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.666008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.272743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.892990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.397339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.873123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.611374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.128525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.755280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.316879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.121429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.787430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.617752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.216492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.972122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.685623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.229965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.998291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.926041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.621277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.310486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.741684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.218582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.750031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.267563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.877075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.472626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.964340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.454453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.913712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.296814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.709610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.140518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.710388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.381668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.043106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.528809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.932480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.476700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.986176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.209595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.514801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.673431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.885468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.104858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.050842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.039886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.902039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.819214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.758209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.736725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.518677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.289551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.063873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.774841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.435059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.034424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.628845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.282410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.675354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.832336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.142242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.408813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.826904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.127502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.337158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.571198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.851318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.084656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.195251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.174744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.062744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.989166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.884918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.698975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.423340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.112457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.726593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.389374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.853668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.287231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.650269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.984894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.331665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.552185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.831665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.051147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.233063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.303497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.309418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.370209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.314667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.260162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.107819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.937164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.781158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.516388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.266449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.931458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.605713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.185303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.696228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.185455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.656342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.063080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.462616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.863708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.213562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.469055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.761261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.046997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.307007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.541687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.753357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.944336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.115631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.269501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.404877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.526520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.634094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.731018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.817871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.897217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.971191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.042786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.114044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.187439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.266510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.353149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.449829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.552521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.678894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.824097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.988922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.177063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.389832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.631012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.900482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.192291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.505707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.830811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.179352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.553192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.972687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.409698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.867737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.390930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.948517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.585419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.216888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.897675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.665131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.443329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.274078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.129150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.984802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.987091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.990845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.003143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.102875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.250275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.435150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.748962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.183044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.512604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.894775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.418945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.782715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.219330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.803802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.393768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.112915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.977112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.815338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.694275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.567841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.509460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.549316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.587219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.804932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.919800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.095093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.357880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.739899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.113861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.502808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.874664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.383209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.931000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.575714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.020142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.572662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.213898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.800659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.544556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.249634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.178955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.013245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.005524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.941589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.118958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.126862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.092102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.198975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.150787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.063934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.021210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.075378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.140808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.919739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.507263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.365051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.455444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.694702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.025879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.113525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.151917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.204529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.533752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.522766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.634155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.696228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.742920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.801453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.786499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.072083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.528564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.921265] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.217285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.414001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.530273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.552368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.803467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.023315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.086182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.104980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.208496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.197083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.319336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.306274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.254089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.106506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.929993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.706116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.553040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.337341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.044617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.654358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.229004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.835632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.344666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.879028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.367432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.903809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.297119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.640991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.057190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.517639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.908142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.302368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.522278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.921631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.163574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.401062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.724609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.123474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.245972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.375854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.354370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.372986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.620178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.735779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.743652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.668518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.683960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.530273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.226318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.865662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.386597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.880493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.393005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.865967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.228943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.568359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.848877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.130615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.384338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.615845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.813232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.953430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.075500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.176636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.217285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.233948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.227600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.203308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.148560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.082581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.985962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.849915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.672363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.469727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.251282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.038086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.770081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.516357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.220886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.909668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.529358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.170715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.808777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.388611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.996277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.586182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.169006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.730591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.291748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.822510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.349731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.872070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.358337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.854431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.347717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.820496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.327271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.780762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.243835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.688049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.136169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.625305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.138123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.633728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.105957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.629517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.126770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.689209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.211670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.780334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.361450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.921326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.487122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.067993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.695496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.318909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.944519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.602234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.265625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.968811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.657837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.376404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.168274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.974792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.778625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.610596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.471130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.363525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.310120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.273865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.270447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.302124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.363281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.397888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.539917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.750305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.933655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.112549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.350830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.585327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.831421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.089722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.435791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.827087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.261108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.785889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.293030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.912659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.479858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.027527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.660034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.283691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.948425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.801208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.623169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.417847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.263184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.246399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.214844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.218506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.311829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.330322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.461975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.529175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.652588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.724304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.865662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.011963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.241821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.393555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.657104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.943115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.182312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.471375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.755554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.077759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.471985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.845154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.291931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.803833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.253052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.688232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.222046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.781067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.245667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.891113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.621338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.225464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.943665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.556519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.284424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.869141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.468079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.032349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.803772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.722778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.370728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.104858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.725403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.402100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.005493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.651123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.225708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.773682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.414368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.972107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.517151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.048157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.621948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.146362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.677429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.220459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.790222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.479187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.193970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.838196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.541565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.985291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.612976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.154236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.602234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.034058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.615540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.210938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.048584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.625183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.095459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.492920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.895508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.315491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.649414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.040955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.302307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.621704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.844788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.118774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.301636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.432922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.596191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.086731] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.200500] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.270264] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.327271] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.333618] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.524170] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.670837] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.700562] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.644897] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.545715] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.439941] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.287903] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.873352] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.743286] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.509155] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.136475] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.579590] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.177002] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.730835] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.247925] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.646118] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.969971] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.396606] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.741089] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.924072] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.297119] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.357788] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.376587] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.384155] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.274170] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.956055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.681519] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.313599] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.867920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.215332] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.426758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.543945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.570801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.464966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.240601] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.874512] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.367065] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.749878] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.982422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.081177] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.104126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.078979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.877930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.391724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.911621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.448853] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.730713] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.734497] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.797729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.884277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.087158] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.864502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.586426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.499146] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.097046] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.222839] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.282776] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.642029] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.012634] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.224426] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.527283] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.266052] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.054932] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.183594] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.836060] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.203979] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.698914] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.313843] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.036194] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.592407] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.117554] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.621460] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.097534] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.328979] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.411865] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.823792] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.472534] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.800354] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.549438] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.547974] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.560547] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.658264] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.668335] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.043762] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.420044] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.609680] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.445129] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.618042] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.853699] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.159790] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.475830] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.243713] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.100769] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.144226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.187988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.428528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.896790] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.580322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.532959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.656189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.086853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.749084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.641968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.783264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.279663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.129028] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.218811] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.602905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.194641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.005554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.078979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.363708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.888123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.554749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.633850] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.143433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.660461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.574890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.581421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.729919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.312378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.237244] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.354858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.751404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.142517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.202576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.870850] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.569763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.672424] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.291077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.815979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.612610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.233704] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.278137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.394470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.464111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.287354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.376465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.812012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.820923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.101929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.346924] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.948730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.181885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.500000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.193848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.478271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.135132] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.469849] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.835693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.609497] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.149414] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.056763] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.407715] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.997803] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.379761] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.535278] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.644287] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.714844] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.656616] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.294434] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.929810] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.984985] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.996582] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.107910] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.315552] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.965332] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.558594] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.134644] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.778931] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.650146] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.915283] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1289.904175] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.008179] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.124634] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.469971] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.613892] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.509399] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.458252] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.229126] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.642944] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.923950] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.101318] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.980713] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.723389] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.428223] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.940918] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.266724] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.313599] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.536011] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.200439] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.593628] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.689575] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.554565] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.307617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.266846] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.327759] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.321777] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.187744] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.109863] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.265137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.257080] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.033691] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.534058] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.892212] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.964233] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.799316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.556152] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.053223] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.373901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.442993] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.187988] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.860352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.349731] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.757813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.985840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.075562] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.015137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.805420] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.441284] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.913940] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.263062] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.425171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.452393] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.352295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.054810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.600464] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.913696] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.167358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.233765] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.108276] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.780273] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.305054] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.498169] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.267578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.700073] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.086914] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.649292] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.334595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.352417] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.062744] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.638794] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.865845] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.837280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.787109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.695801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.960449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.639648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.949951] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.244019] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.725464] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.952271] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.913086] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.787842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.492432] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.756226] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.195801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.872314] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.120972] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.537842] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.376221] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.687866] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.515259] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.168579] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.508545] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.815918] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.666748] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.145264] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.138306] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.467285] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.159180] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.069092] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.040405] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.004761] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.681763] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.208008] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.927979] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.080933] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.624268] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.879517] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.904297] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.993896] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.266846] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.361450] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.653320] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.987366] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.678894] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.749817] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.457703] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.536743] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.893066] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.129578] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.388916] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.875122] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.188660] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.925110] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.317322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.005493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.394714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.683655] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.302612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.158081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.811707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.487915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.866882] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.121216] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.186401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.228027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.757080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.702332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.122314] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.883423] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.226624] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.072510] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.287415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.994751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.195007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.866455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.046936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.583740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.643555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.000000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.838135] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.223633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.022827] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.296204] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.125061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.241333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.652222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.994080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.826660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.632141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.736694] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.685974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.869507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.390686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.154358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.075500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.319153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.773682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.895325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.190308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.901184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.701721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.354431] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.763672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.377502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.057495] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.669312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.514648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.923950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.043457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.694214] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.196533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.190308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.360718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.162231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.467407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.040039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.261230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.133911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.436035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.345215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.786011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.695923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.449341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.343140] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.893188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.958130] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.949829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.592285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.928467] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.806519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.355591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.585693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.871460] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.316895] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.577637] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.553955] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.601563] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.775391] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.703247] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.147217] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.236328] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.220459] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.448120] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.620850] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.969116] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.995483] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.613281] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.080444] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.579346] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.899780] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.410522] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.049683] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.050293] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1483.003418] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.725342] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.193604] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1502.682861] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1509.018677] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1515.031616] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1520.669800] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1526.271851] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.879639] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.391846] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1542.587524] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.724976] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.694336] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.488892] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.903931] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.151489] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1570.487305] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1574.676880] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.697510] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1582.477661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.992188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.628662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.168701] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1596.389771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1599.465454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.370239] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.118286] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1607.710815] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.165039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1612.455566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.592163] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.629272] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1618.410522] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1620.096558] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1621.598877] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1622.960815] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1624.179810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1625.246948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.153687] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.919678] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.607056] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.051025] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.342651] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.461060] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.422729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.225952] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.848511] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.255005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.440796] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1625.312134] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1623.940674] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1622.256470] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1619.965942] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.322632] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.535522] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1609.675171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1606.211792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.477295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1598.617676] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1594.387451] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.068115] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.013062] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1581.535889] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.392944] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.793335] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.022339] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.330566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.128052] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1553.072021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.592773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1541.705200] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.990967] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.308105] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.613892] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.604248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1506.621948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1499.001709] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.518311] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.471558] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1464.285400] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.974487] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.504639] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.903198] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.487427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.790283] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.376953] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.384644] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.150635] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.193726] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.281250] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.609375] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.443481] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.744629] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.084717] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.679932] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.465942] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.388794] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.599487] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.179688] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.704102] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.480835] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.339844] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.639893] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.972778] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.243042] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.832275] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.806519] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.979004] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.729004] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.715454] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.630981] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.966614] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.979492] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.301453] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.345154] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.315430] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.184204] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.510071] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.109802] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.537964] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.718384] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.744324] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.350586] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.825317] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.554016] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.040466] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.077759] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.361694] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.323303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.820435] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.068420] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.922913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.099182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.682495] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.577698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.006592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.609863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.387329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.496460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.116455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.989441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.817780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.291809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.480042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.676941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.609863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.017975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.062469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.414551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.752441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.288116] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.468323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.318481] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.051605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.929657] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.633026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.145111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.605927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.985901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.347321] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.529175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.046753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.392242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.261536] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.954254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.154816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.518951] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.698914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.232605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.032196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.058075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.926178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.561462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.871033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.087708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.246826] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.522949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.855896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.327820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.738953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.990601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.685791] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.674683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.199768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.294861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.116394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.056396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.640137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.571289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.926208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.525818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.887451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.313110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.549683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.598083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.653625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.546753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.181396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.659241] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.617676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.533875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.745605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.421509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.443359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.524475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.451294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.624573] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.439514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.260498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.174072] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.182007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.342651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.844482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.573975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.678833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.836304] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.002441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.494019] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.370605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.342407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.834229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.790161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.979370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.667603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.955566] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.922729] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.543823] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.549072] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.116943] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.054321] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.974243] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.574341] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.306396] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.372681] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.992676] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.565063] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.412231] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.721924] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.880493] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.438354] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.309326] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.068481] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.502930] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.518555] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.311401] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.875000] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.487183] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.411255] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.689453] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.773315] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.921753] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.725952] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.708130] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.913940] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.377441] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.955933] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.270508] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.280640] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.791260] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.933594] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.677368] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.962891] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.775391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.253784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.339600] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.142578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.452148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.215454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.337280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.316528] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.753784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.614014] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.311279] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.898682] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.270508] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.432373] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.342163] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.441650] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.167725] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.471436] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.365234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.975830] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.961060] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.220703] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.168579] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.562622] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.123657] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.057373] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.473022] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.032227] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.527954] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.280518] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.440430] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.242798] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.039917] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.486938] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.352783] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.529541] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.600586] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.377319] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.173340] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.995239] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.965210] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.008057] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.164551] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.654419] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.615356] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.883240] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.083923] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.437866] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.365540] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.835938] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.240112] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.958923] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.664795] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.705078] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.119019] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.933228] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.155396] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.528992] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.131104] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.426941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.597778] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.669312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.925110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.117249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.769531] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.407898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.878845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.830200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.293213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.882568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.315613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.353851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.483185] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.638367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.131439] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.922180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.674927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.663940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.470093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.892487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.629303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.466064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.873749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.679962] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.416779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.187653] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.674103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.072540] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.307831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.448151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.744812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.371155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.394867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.570068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.761322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.841461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.570923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.378571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.397369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.933472] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.301758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.483490] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.839447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.243500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.124237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.435608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.496155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.061890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.489075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.454956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.150269] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.855255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.344788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.045349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.927643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.301025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.932159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.022705] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.208130] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.707703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.021912] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.873840] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.714905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.970642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.848083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.322693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.950989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.088440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.145020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.515686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.207764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.925232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.217834] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.699341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.007446] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.429626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.295227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.097412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.627686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.343933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.872437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.149414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.537964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.945251] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.209229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.421692] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.208313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.069092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.016907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.695190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.477173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.134033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.195618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.826294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.281677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.785645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.484863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.906372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.010620] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.826782] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.337036] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.833862] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.182007] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.896362] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.359253] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.984863] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.398315] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.205200] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.880493] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.799316] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.463013] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.608398] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.487671] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.216797] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.495483] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.573608] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.676392] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.422241] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.892090] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.248047] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.268311] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.016357] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.628784] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.026001] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.976196] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.871338] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.240479] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.404785] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.313110] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.802124] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.961182] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.593994] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.178833] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.421021] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.345215] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.996582] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.259521] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.136841] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.591431] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.726563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.574341] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.141968] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.223022] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.007813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.809204] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.909790] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.677979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.290771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.599365] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.697998] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.410767] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.778931] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.497925] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.032104] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.121948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.885620] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.713013] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.089355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.013062] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.611938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.089355] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.286255] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.832764] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.569214] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.631714] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.872681] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.211792] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.819946] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.919434] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.396362] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.105835] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.853394] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.495117] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.315796] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.034058] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.425537] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.427734] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.665771] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.133423] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.977295] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.953796] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.318298] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.481567] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.500000] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.684998] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.156128] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.485229] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.248596] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.409546] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.945984] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.716553] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.608521] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.513306] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.448669] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.162476] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.100525] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.448059] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.450317] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.740112] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.206604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.713928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.267273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.176086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.282593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.940369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.233398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.255310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.739929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.067902] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.416565] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.778961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.524933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.949463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.314606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.545013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.280762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.614044] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.668243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.212677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.938019] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.696533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.976349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.803528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.617416] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.521515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.199020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.338699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.839310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.593826] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.355515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.005493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.716049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.220352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.470764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.717331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.818512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.746017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.633072] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.307465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.905685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.321075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.444382] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.399628] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.780106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.625488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.891281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.901352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.395554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.831879] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.582703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.419434] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.304108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.239410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.067139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.206909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.618652] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.228516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.781250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.445618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.835419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.428619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.753174] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.841980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.993073] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.617218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.271088] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.392120] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.973969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.207703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.531006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.784607] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.351501] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.877319] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.430847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.002563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.315613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.438232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.374878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.677856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.532593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.745911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.151062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.151428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.679016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.315735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.519592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.260193] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.872009] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.352173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.786255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.066040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.809509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.321045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.257629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.494873] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.968506] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.659546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.028259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.992859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.437500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.294250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.646667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.106689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.510681] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.590393] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.544983] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.847290] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.814514] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.649963] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.095703] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.574707] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.514771] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.182739] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.042603] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.529541] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.625244] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.871948] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.579834] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.728882] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.083252] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.124756] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.841919] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.510010] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.054565] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.371216] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.590454] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.922363] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.979736] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.368408] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.741455] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.949707] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.157959] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.877075] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.748291] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.205200] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.459839] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.220215] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.542480] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.485596] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.005249] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.151978] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.907593] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.240479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.162842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.686768] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.750244] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.365967] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.845825] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.710327] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.644653] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.679565] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.262939] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.494751] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.067139] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.285645] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.080078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.321167] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.873901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.717651] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.383057] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.567261] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.086182] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.416382] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.353149] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.140747] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.910400] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.527100] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.854370] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.744019] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.511597] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.857910] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.613831] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.569580] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.022095] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.647827] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.583618] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.273315] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.283020] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.179199] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.823425] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.292358] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.935364] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.384460] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.622620] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.876160] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.827393] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.903503] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.714294] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.294495] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.959167] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.534363] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.100891] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.396790] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.703857] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.906860] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.527222] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.879761] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.072571] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.289246] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.164917] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.235107] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.517273] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.404968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.957306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.402679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.235046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.708740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.793762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.067719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.021667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.847321] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.509552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.543610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.477600] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.232605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.848358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.623627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.140015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.810471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.614136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.374939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.659409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.154297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.954208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.480545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.858482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000001] [Flaps: 0.000000] [Data Ref: 14.150362] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150358] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150351] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150239] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150136] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150187] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150564] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150868] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150463] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150228] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150406] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150675] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151945] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151555] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151190] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149994] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149751] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149300] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148333] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146585] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143970] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140157] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135596] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121572] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117933] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115013] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112377] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110676] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108207] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107755] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109319] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113878] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116549] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119136] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124948] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128140] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138282] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143615] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145536] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146977] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149069] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149486] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150820] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153417] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154469] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155663] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156863] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157851] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158559] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159333] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160367] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161507] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164975] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165806] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166176] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166496] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167118] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167689] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168574] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168759] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167389] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167097] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166909] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170978] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172696] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175848] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177142] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178159] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179123] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180058] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181182] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182357] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182659] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183054] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183599] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183488] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183891] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185351] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187408] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189560] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188587] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187383] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186607] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186608] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187389] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189060] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191274] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193576] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194716] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192300] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190042] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189542] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192101] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195215] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199267] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202621] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205692] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208219] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209660] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211040] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.221649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.235017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.238413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.239064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.243039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.244708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.248577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.251565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.256633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.261666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.269017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.277295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.284800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.296814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.308266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.325600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.335583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.366691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.373505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.418431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.426617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.494806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.506737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.596842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.614889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.717158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.743242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.890738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.915012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.055384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.080963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.238129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.267727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.471846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.508410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.738979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.777180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.986302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.073183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.315945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.368010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.669577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.720694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.091612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.153965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.566038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.944876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.003830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.456984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.541277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.984354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.079943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.661436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.749949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.353853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.449942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.124889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.250847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.999784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.132248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.946737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.084520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.955965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.099333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.041162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.205074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.040266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.225168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.305658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.481762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.492144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.655268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.653660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.856728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.898605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.080093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.156586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.394505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.818180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.041210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.227970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.466213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.708458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.949070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.537502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.814098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.485695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.779934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.274281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.583096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.059521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.336617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.184650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.495579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.254227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.609352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.333145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.662064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.782253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.122826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.293556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.639614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.043724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.422359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.868427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.259163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.191486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.597805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.027725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.371025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.969269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.381775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.094254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.550278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.335709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.782303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.075020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.564507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.588669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.047890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.503738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.001709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.510391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.039009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.568527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.603683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.631042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.710899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.878250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.948883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.243622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.445580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.680336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.779366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.334869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.830933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.656494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.239754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.990150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.481445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.288010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.903015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.898232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.534996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.812447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.409042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.062439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.713959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.726501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.290512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.111389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.246170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.506866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.197266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.008392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.732193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.072281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.177521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.553665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.684280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.115921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.949432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.638184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.353424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.204239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.031738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.672760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.337723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.208786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.997849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.415939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.280014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.759903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.713867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.401520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.116989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.046432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.592926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.598007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.565887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.542816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.124939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.760468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.289001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.192993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.755325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.815979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.473724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.873810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.599319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.364136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.829346] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.707184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.359756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.517868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.376633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.981293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.056885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.194046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.107239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.715103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.593964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.153275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.604263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.131912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.698044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.387970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.712097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.266876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.422318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.629745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.937546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.085129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.493744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.301941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.042419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.538757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.721954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.228027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.794159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.598328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.047852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.613922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.613922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.669189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.303040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.902008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.430908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.502686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.039154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.039154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.607422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.137848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.676025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.676025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.533630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.080475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.556732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.032806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.685822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.270752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.910217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.476715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.063660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.500641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.966309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.385437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.871399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.871399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.520966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.520966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.520966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.819122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.226990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.226990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.158478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.653961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.130890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.093872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.481415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.415558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.857971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.288483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.723999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.247528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.773376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.236755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.236755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.729218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.205750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.666229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.666229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.133850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.810028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.476288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.360657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.280884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.800720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.599457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.302856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.919647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.306396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.523834] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.830719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.884094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.171112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.171326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.290253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.439331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.350647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.245239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.006409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.864990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.750793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.483368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.154053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.772430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.320435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.546051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.926056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.351379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.668762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.950897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.988617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.105164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.139740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.131195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.042358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.906982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.721680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.510651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.352875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.060394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.799835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.435181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.044525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.583801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.147766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.605621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.038849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.479645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.897736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.256989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.595459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.917847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.200897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.446533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.774567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.976013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.159546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.314636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.427307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.523010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.606415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.675232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.732971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.792542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.844452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.893951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.944336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.003754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.077332] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.171936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.272064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.382233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.524628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.675415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.852905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.059418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.302063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.566772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.835236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.170929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.496185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.901855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.340790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.784027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.312744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.920166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.584412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.225952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.956543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.745361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.561401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.437500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.381073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.332642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.353424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.456268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.636322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.903900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.176270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.457092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.857269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.224030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.671204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.137115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.722626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.464417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.179810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.843048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.614685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.543671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.567688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.463593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.785828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.069061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.294678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.766785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.353607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.754608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.163147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.914490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.766327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.485870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.204620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.174866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.948120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.927399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.624664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.624146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.489990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.606476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.576080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.397827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.601959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.622772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.712646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.040375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.215607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.414673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.895874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.365692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.390167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.691254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.831055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.947021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.423889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.024841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.597473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.641968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.227722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.767334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.119263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.418335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.988159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.539429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.802002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.177795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.819397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.418335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.049438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.863403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.193237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.774902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.040161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.472229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.626831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.720154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.564697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.837158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.854187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.231079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.649780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.862732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.275085] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.682983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.853271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.951965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.931274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.714294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.722107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.589661] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.696777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.686096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.495605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.347961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.988892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.817749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.554077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.904236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.479980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.199890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.790527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.359436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.640259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.235535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.607910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.033386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.335144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.502014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.783752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.234863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.429993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.759583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.743774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.590820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.391968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.140076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.081177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.742310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.404175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.213745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.759766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.171997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.753601] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.105896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.500305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.822083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.002014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.325684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.477417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.689941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.842896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.922607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.974487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.027527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.013672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.889282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.703674] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.537292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.306274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.982605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.677734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.338257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.001099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.643066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.254150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.862244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.468811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.985718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.576172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.164307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.721680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.271362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.773987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.244202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.776001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.232544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.651245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.087036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.529297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.933655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.367371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.790161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.244263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.697205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.106262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.574829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.021851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.533264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.055908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.559692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.079590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.610718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.203430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.771484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.374512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.968140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.630737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.306641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.973145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.754761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.540649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.222717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.990906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.772095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.628052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.552551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.468628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.301636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.268860] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.195496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.187683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.185364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.217712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.319885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.551147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.686157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.921082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.178711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.513672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.995911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.357056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.895996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.309814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.790466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.405640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.973755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.761536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.871338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.835327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.457825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.487549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.381226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.471313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.509949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.672119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.931274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.210388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.260803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.341309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.678955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.895691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.289185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.588318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.112427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.633728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.076172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.268127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.927002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.644409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.554077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.328430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.868652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.610107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.226440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.352295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.941467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.790527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.610413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.485474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.726807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.413513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.144104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.102356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.990662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.673584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.558594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.756104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.417664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.267029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.479980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.573059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.628235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.497253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.434326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.531433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.830383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.997070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.390564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.797546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.652588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.684387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.552612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.869385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.648376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.736206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.432922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.223022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.867004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.501587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.554688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.600098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.253845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.000610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.577637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.309570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.934631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.734985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.656616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.567566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.132385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.693665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.315002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.773987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.494751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.811523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.154541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.653381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.108582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.402954] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.567261] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.895203] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.817749] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.134644] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.438599] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.733765] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.896790] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.032959] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.012451] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.080811] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.253662] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.061279] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.889404] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.692871] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.287476] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.871338] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.405884] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.968018] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.441162] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.968994] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.313232] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.565308] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.642944] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.790894] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.931519] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.873413] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.746582] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.598267] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.332153] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.053101] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.634399] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.040527] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.406616] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.606934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.699463] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.677246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.533936] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.285156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.899414] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.389526] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.729980] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.975220] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.062012] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.919189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.815063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.505005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.108154] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.566406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.901978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.347046] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.353149] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.418945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.260986] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.108521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.795166] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.297974] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.639160] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.590698] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.653137] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.671387] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.807556] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.318176] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.405701] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.261108] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.999329] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.668213] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.404846] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.568359] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.947388] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.393250] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.435913] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.335510] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.858337] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.810303] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.834229] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.746277] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.695435] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.669006] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.377258] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.000549] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.714966] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.633972] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.241455] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.425232] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.390991] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.604431] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.081238] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.809265] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.535828] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.019897] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.815796] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.745605] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.370178] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.772217] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.578369] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.739807] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.029053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.565552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.453064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.469971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.765076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.391235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.302551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.560425] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.133728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.046387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.254700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.676514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.414551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.433105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.777466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.325012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.236084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.176941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.667114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.410889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.395508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.642090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.078369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.436646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.624512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.320862] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.687256] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.137024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.450317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.320679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.650146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.294739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.354736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.408691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.246521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.249756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.759644] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.835205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.622803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.812134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.378418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.046997] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.943848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.848145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.499146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.930664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.226929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.387085] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.385254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.654541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.163208] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.090820] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.987427] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.284180] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.119141] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.241333] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.703247] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.287354] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.557251] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.219482] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.475220] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.999023] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.765747] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.698486] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.528320] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.268066] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.741821] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.484619] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.782349] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.098633] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.656372] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.440063] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.120239] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.904541] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.112427] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.233398] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.145020] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.541138] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.906128] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.613770] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.979126] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.248413] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.099976] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.705200] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.134399] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.305786] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.507568] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.681274] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.781006] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.349365] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.902222] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.312134] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.827393] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.041382] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.124268] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.001465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.228760] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.427368] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.395020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.177490] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.224487] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.984375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.541626] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.821411] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.706421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.547607] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.979980] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.175537] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.170898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.958252] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.540283] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.932007] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.089844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.064453] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.856567] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.250854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.506958] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.637085] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.488159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.138306] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.342529] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.645630] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.688477] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.539429] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.708130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.769287] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.699463] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.390869] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.634033] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.895752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.210938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.973633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.786621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.506592] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.345581] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.910156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.273926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.916626] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.867310] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.504761] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.945557] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.353149] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.041260] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.620728] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.898438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.528809] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.554199] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.948853] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.011841] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.309082] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.935181] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.449951] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.081177] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.288696] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.358398] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.134399] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.704834] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.243652] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.517456] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.222290] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.459717] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.348022] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.360596] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.245605] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.000122] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.693604] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.229126] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.918091] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.922119] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.280518] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.452454] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.873474] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.184814] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.987976] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.289795] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.483032] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.431458] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.154053] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.739441] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.211121] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.781067] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.296082] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.382385] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.865112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.666077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.033569] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.358093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.184631] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.423584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.533630] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.608643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.694397] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.834106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.752991] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.384094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.395508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.081848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.358948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.301575] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.849915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.984070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.767456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.202332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.316956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.328796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.199707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.765442] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.556335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.790039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.874817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.214783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.054016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.318726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.741821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.563477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.607971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.470276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.873413] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.974854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.681030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.160461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.703674] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.942566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.555664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.903137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.098999] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.452820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.677673] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.527283] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.920105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.208618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.788086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.255981] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.937012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.463745] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.494507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.487549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.286987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.659668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.103027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.490601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.847412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.150757] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.214722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.391846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.191772] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.105713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.393311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.254517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.865479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.819946] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.546265] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.548462] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.907715] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.640015] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.570435] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.125488] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.459595] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.628296] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.424805] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.629883] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.406372] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.241333] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.597900] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.179443] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.002441] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.649292] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.132935] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.522339] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1467.733398] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1474.477173] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.216553] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.173828] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.293335] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1500.119995] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.989746] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1512.105957] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.093506] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.144409] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.673828] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1539.841187] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.633179] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1549.833618] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.575928] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.639282] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.060181] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.821777] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.745361] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1576.475830] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.040161] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.164307] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.271240] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.079468] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.883911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1594.492920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1597.124268] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1599.349487] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1601.213379] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.837402] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.960571] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1604.967285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.653564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.945679] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.914673] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.530151] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1604.841675] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.526978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.020264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1600.208740] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1598.039551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1595.534668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1592.667603] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.352661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.534546] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1581.843506] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.546265] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.917847] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.677002] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.663208] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.674316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.356079] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1546.792358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.853760] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.454834] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1527.442993] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1520.642578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.190918] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.274780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.702881] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.965698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.469116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.444702] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.746460] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.752319] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.568481] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.092529] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.913696] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.958618] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.009033] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.088501] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.078125] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.676392] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.858643] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.744507] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.940796] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.433594] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.358887] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.791382] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.590088] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.040161] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.289551] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.551147] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.307251] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.274658] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.617188] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.550293] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.103638] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.229370] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.435669] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.289063] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.998169] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.342651] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.318604] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.355530] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.749023] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.561768] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.903015] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.318420] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.856384] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.154663] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.822449] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.754700] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.014526] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.835938] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.172607] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.188171] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.016418] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.494141] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.798706] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.308533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.353516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.073914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.434753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.035034] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.315735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.765381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.716492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.396240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.392029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.089417] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.556274] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.487488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.444092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.814148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.934052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.159637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.695770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.609741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.705597] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.902405] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.862335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.594177] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.215271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.681335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.876892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.203552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.762268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.708984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.749939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.210754] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.723877] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.626160] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.975464] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.936951] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.314392] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.540161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.341248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.580078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.218384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.387146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.029968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.117004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.073792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.990051] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.098389] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.389526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.175842] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.647827] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.088074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.543640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.902893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.280701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.690369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.068115] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.720398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.038330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.816833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.153503] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.721680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.762817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.607666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.837646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.800293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.362061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.613403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.465576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.703003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.872192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.677856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.393799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.479370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.476196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.642578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.282959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.523682] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.380005] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.855835] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.389771] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.863770] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.294312] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.453369] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.192993] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.661255] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.613159] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.773193] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.453247] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.003174] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.737671] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.306763] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.335815] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.375977] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.905518] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.211670] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.320557] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.188721] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.421387] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.192627] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.822876] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.215454] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.788940] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.213623] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.597046] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.493164] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.975220] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.143066] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.151245] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.888062] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.158203] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.256592] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.002808] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.474854] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.684326] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.573486] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.140137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.390015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.352295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.047729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.258911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.884399] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.074585] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.154419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.244507] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.471924] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.366333] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.812744] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.941162] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.078613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.765869] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.036987] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.869263] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.154541] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.400879] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.008911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.327271] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.692627] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.777344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.265625] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.510010] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.059937] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.848755] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.052490] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.463501] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.860596] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.653564] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.827026] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.980103] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.252441] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.853638] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.849976] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.363037] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.807373] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.594849] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.719116] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.021484] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.593018] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.030396] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.780518] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.999023] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.365723] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.047729] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.821899] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.650879] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.736694] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.020386] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.990601] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.532776] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.487427] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.319946] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.191956] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.833801] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.556091] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.382141] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.332458] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.317017] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.679626] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.506409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.504944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.376526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.750671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.991516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.307068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.317261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.292358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.728577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.667786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.877502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.294586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.952393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.563629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.821075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.306366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.008606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.736969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.245239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.210815] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.659576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.322632] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.490448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.815430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.212189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.984894] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.109283] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.528168] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.253052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.249878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.923737] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.862885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.477814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.153076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.770081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.282104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.175812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.177551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.593475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.792969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.772949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.890991] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.662109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.866760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.179077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.574463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.589539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.103027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.196899] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.438660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.686462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.515503] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.720215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.362183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.828674] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.726196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.214233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.754211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.024414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.314575] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.001892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.800049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.068970] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.642395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.121887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.398987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.937805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.128967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.480103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.009766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.835327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.755066] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.457153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.045959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.920044] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.542480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.567627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.982910] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.052734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.507568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.177246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.875977] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.610229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.205566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.637451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.787231] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.218750] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.163330] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.000977] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.212402] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.521240] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.594604] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.684692] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.427734] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.953247] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.317749] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.530518] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.142578] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.687622] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.397339] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.217529] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.634521] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.146851] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.125000] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.956909] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.348877] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.354858] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.427246] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.151733] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.006104] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.190186] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.603882] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.918457] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.824951] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.206421] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.252319] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.714722] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.784546] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.485352] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.766724] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.540283] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.958740] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.967041] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.344849] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.125122] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.186890] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.089722] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.328613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.084961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.515503] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.677124] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.207520] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.174072] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.544556] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.197998] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.619629] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.655884] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.273438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.669189] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.698608] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.268799] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.449829] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.057129] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.625732] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.372803] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.449463] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.290283] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.575684] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.467529] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.589478] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.840454] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.994385] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.610474] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.854370] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.808350] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.614258] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.563843] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.829285] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.001404] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.686707] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.616150] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.794556] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.437073] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.838684] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.201050] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.875549] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.174927] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.549622] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.138062] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.047424] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.613586] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.362732] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.373413] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.160095] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.303894] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.980164] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.029419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.810974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.532349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.088196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.450684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.095032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.699890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.375671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.346619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.636108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.117737] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.401642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.752014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.143616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.808441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.844330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.611786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.648346] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.961639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.958923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.261078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.364105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.995117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.091736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.551453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.340424] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.537476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.841370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.482300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.411987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.251038] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.368164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.181946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.501282] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.296051] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.650787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.810913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.470093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.578094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.087036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.828949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.636261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.099335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.294891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.859222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.365906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.931335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.136841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.560059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.149719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.675110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.028320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.942627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.365784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.868347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.752747] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.976196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.270874] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.934448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.655579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.211975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.212708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.534546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.637207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.582336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.025085] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.870361] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.053284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.249756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.459717] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.399841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.959412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.199890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.289246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.441650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.801331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.706848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.190002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.702881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.607178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.830322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.462036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.342651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.806519] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.416138] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.774292] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.057983] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.231445] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.621948] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.179565] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.872925] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.366821] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.679565] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.437500] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.548828] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.706299] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.285278] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.331543] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.705200] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.608032] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.608276] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.936279] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.617798] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.494629] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.336548] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.943970] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.797607] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.198853] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.497437] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.015015] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.099365] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.873169] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.489502] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.720825] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.553345] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.050659] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.229004] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.068481] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.575073] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.823853] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.673096] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.181885] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.132324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.826172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.184448] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.008911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.447510] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.541870] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.389893] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.758545] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.401978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.000488] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.628052] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.218384] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.455566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.502808] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.634888] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.727539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.925415] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.856445] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.353760] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.341187] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.866699] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.858398] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.747070] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.074707] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.003906] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.101196] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.563110] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.889038] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.253052] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.601807] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.780640] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.063660] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.166992] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.911682] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.206665] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.449158] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.614380] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.836609] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.576660] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.990234] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.886414] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.769043] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.684631] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.362732] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.740051] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.072632] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.190247] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.966187] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.117859] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.629089] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.942688] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.280945] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.540833] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.144775] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.460571] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.230896] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.812561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.688232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.000793] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.751465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.458954] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.514526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.583740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.060730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.628723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.059875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.788147] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.892029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.338623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.448883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.102020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.657227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.266449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.437317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.238220] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.209641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.168121] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.699295] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.466339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.754501] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.678741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.842743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.205032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.857117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.773514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.048248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.358292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.006851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.125809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.839783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.120514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.354050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.744476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.917480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.069336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.059052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.864838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.813751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.742126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.904663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.285248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.195648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.779633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.163300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.463623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.560181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.621246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.317505] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.495087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.853241] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.810303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.584778] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.620789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.714111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.939758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.944580] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.173401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.065063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.717041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.246460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.596497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.574707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.158264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.482178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.493774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.526001] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.316040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.564331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.052551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.746582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.215515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.956299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.741455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.555847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.511841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.041138] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.976379] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.215698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.984253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.732605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.892212] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.231445] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.527771] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.335510] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.747314] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.843506] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.233887] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.449463] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.944702] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.266846] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.769531] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.132080] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.308960] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.781372] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.156860] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.394409] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.055054] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.949097] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.681519] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.725342] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.338867] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.363037] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.830200] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.827881] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.789917] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.160645] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.728271] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.572632] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.830811] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.782959] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.294678] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.389771] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.936890] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.840942] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.118164] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.944946] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.339355] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.054932] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.282471] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.658569] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.658691] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.022827] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.727905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.168091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.484009] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.643188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.585083] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.755859] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.633667] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.431763] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.849731] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.849487] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.133423] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.806030] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.677368] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.467651] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.898315] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.675171] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.752197] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.686401] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.008911] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.854553] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.238586] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.177185] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.950623] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.086182] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.192200] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.235779] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.552734] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.938171] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.259155] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.550171] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.221069] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.592285] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.859253] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.802124] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.991760] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.752014] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.937805] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.122498] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.711487] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.008728] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.083740] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.639465] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.965637] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.822998] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.801300] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.911377] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.303467] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.048706] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.559265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.693176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.964355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.051788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.011200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.865082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.514557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.145233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.689728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.136856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.559143] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.081497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.597000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.054764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.135284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.732407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.140182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.460861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.822800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.756165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.149384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.052582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.837654] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.133957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.831795] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.735428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.878311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.473907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.690277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.066589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.319443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.903030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.797409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.851898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.603516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.232391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.855194] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.387390] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.723541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.043854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.647675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.631287] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.287384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.034637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.956268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.982178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.293213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.280487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.430969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.813477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.504059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.942383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.262756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.597107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.148071] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.050598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.778137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.817383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.782288] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.435608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.265686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.275208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.362549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.082031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.006653] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.402466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.969788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.241882] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.459229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.183838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.156433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.186890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.831604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.724243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.274780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.234314] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.270386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.596558] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.497131] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.963745] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.642883] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.169739] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.789795] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.873352] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.867126] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.626038] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.592346] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.234985] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.798889] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.192139] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.566589] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.209229] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.945190] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.689819] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.905151] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.209473] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.498291] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.414429] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.199829] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.503052] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.399048] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.956421] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.478516] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.364380] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.906250] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.141113] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.982300] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.467163] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.707764] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.578491] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.052612] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.210205] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.008301] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.442505] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.577271] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.313721] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.673096] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.495117] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.146606] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.328003] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.982178] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.402344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.501465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.072021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.214600] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.121338] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.869507] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.805420] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.941406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.703125] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.425903] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.473206] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.043640] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.090698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.200989] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.094055] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.509094] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.080322] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.794495] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.299988] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.157593] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.600098] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.156433] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.208984] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.986084] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.131592] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.543091] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.526855] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.267944] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.483704] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.113525] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.666870] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.002625] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.978210] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.617004] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.508423] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.551270] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.427979] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.546387] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.908630] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.149353] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.182617] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.551086] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.605286] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.528992] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.347412] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.878906] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.826538] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.218506] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.925751] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.817474] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.646820] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.801117] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.424286] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.526428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.161163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.010040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.982971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.857056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.511292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.944305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.070694] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.307648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.947952] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.295029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.714676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.213318] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.321243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.950455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.164192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.038307] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.210449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.991714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.878372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.303768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.500992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.828663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.253101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.268505] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.573097] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.328331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.346561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.211880] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.690506] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.403427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.354744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.937340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.738487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.870209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.420563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.028961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.963455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.198395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.786484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.099487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.413956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.986450] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.732101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.063232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.044525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.959381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.087250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.598389] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.443878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.337036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.889191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.915680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.743011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.803619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.191010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.137207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.203308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.387573] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.413055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.295715] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.828308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.326172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.512268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.460022] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.932068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.393982] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.233276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.134888] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.043579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.299377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.713013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.348572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.591370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.248047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.243042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.031616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.884277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.866760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.018616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.373962] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.798279] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.619446] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.971191] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.647461] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.631653] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.675415] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.225525] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.948364] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.919006] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.210022] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.410522] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.626892] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.124817] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.185791] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.384949] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.059082] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.554688] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.471741] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.093933] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.288940] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.792908] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.977600] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.041016] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.353699] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.417297] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.699280] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.363281] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.218140] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.566528] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.399902] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.727905] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.594604] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.941284] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.922607] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.496338] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.609863] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.120422] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.673706] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.519958] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.997009] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.513000] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.497681] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.859802] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.676514] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.519043] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.081970] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.268005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.649780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.605347] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.541565] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.370850] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.188354] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.937805] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.994934] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.590820] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.757996] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.301758] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.611633] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.378296] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.366333] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.128845] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.432007] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.114441] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.296448] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.964294] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.674194] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.050415] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.379028] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.570007] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.549316] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.929810] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.469116] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.722351] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.051208] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.069153] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.496277] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.553955] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.326721] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.819122] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.323853] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.435394] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.792938] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.762512] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.798889] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.703278] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.992676] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.086060] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.924652] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.575714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.843231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.604401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.196548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.988129] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.627151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.488327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ]