diff --git a/Documentation/gpio-linux-libgpiod.md b/Documentation/gpio-linux-libgpiod.md index f7712ebfbf..ae4813391a 100644 --- a/Documentation/gpio-linux-libgpiod.md +++ b/Documentation/gpio-linux-libgpiod.md @@ -50,7 +50,7 @@ The following table shows which driver supports which library version | V2 | 2.x | NOTE: Due to a [breaking change in the values of enums in the libgpiod]( -https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/commit/?id=783ff2e3c70788cdd1c65cba9ee0398bda5ebcda), only libgpiod versions 1.1 and later can be expected to function reliably with the V1 driver. +https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/commit/?id=783ff2e3c70788cdd1c65cba9ee0398bda5ebcda), only libgpiod versions 1.1 and later can be expected to function reliably with the V1 driver. To check what libgpiod packages you have on a deb based system, use: ``` $apt show libgpiod* ``` ## Choose LibGpiodDriver Version diff --git a/samples/M5StackRemoteDisplay/RemoteControl.cs b/samples/M5StackRemoteDisplay/RemoteControl.cs index f62c7acc7a..28c0b3967f 100644 --- a/samples/M5StackRemoteDisplay/RemoteControl.cs +++ b/samples/M5StackRemoteDisplay/RemoteControl.cs @@ -107,7 +107,7 @@ public RemoteControl(Chsc6440? touch, Ili9342 screen, M5ToughPowerControl? power _messageRouter.AddFilterRule(new FilterRule(_messageRouter.InterfaceName, TalkerId.ElectronicChartDisplayAndInformationSystem, SentenceId.Any, new List(), (source, destination, before) => { - _cache.Add(before); + _cache.Add(source, before); return null; }, true, false)); diff --git a/src/devices/Arduino/ArduinoBoard.cs b/src/devices/Arduino/ArduinoBoard.cs index 3c6fa663b3..367ce4216a 100644 --- a/src/devices/Arduino/ArduinoBoard.cs +++ b/src/devices/Arduino/ArduinoBoard.cs @@ -107,6 +107,12 @@ public ArduinoBoard(string portName, int baudRate) _logger = this.GetCurrentClassLogger(); } + /// + /// The recommended firmware version to use with this library. + /// When using an older version, some features might not work properly. + /// + public static Version ExpectedFirmwareVersion => new Version(3, 4); + /// /// The board logger. /// @@ -209,9 +215,7 @@ public static bool TryConnectToNetworkedBoard(IPAddress boardAddress, int port, /// Returns the board if successful /// True on success, false otherwise public static bool TryConnectToNetworkedBoard(IPAddress boardAddress, int port, bool useAutoReconnect, -#if NET5_0_OR_GREATER [NotNullWhen(true)] -#endif out ArduinoBoard? board) { try @@ -454,7 +458,7 @@ protected override void Initialize() _firmataVersion = _firmata.QueryFirmataVersion(); if (_firmataVersion < _firmata.QuerySupportedFirmataVersion()) { - throw new NotSupportedException($"Firmata version on board is {_firmataVersion}. Expected {_firmata.QuerySupportedFirmataVersion()}. They must be equal."); + throw new NotSupportedException($"Firmata version on board is {_firmataVersion}. Expected at least {_firmata.QuerySupportedFirmataVersion()}."); } Logger.LogInformation($"Firmata version on board is {_firmataVersion}."); @@ -464,6 +468,11 @@ protected override void Initialize() Logger.LogInformation($"Firmware version on board is {_firmwareVersion}"); + if (_firmwareVersion < ExpectedFirmwareVersion) + { + Logger.LogWarning($"Firmware version on board is {_firmwareVersion}. It is recommended to upgrade to {ExpectedFirmwareVersion}."); + } + _firmata.QueryCapabilities(); _supportedPinConfigurations = _firmata.PinConfigurations.AsReadOnly(); @@ -862,6 +871,16 @@ public void SetAnalogPinSamplingInterval(TimeSpan timeSpan) Firmata.SetAnalogInputSamplingInterval(timeSpan); } + /// + /// Query the current analog input sampling interval. + /// + /// + public TimeSpan QueryAnalogPinSamplingInterval() + { + Initialize(); + return Firmata.QueryAnalogInputSamplingInterval(); + } + /// /// Performs a software reset of the Arduino firmware /// diff --git a/src/devices/Arduino/FirmataDevice.cs b/src/devices/Arduino/FirmataDevice.cs index 4b04d7b136..a93e38ba1c 100644 --- a/src/devices/Arduino/FirmataDevice.cs +++ b/src/devices/Arduino/FirmataDevice.cs @@ -1508,6 +1508,21 @@ public void SetAnalogInputSamplingInterval(TimeSpan interval) SendCommand(seq); } + public TimeSpan QueryAnalogInputSamplingInterval() + { + FirmataCommandSequence seq = new(); + seq.WriteByte((byte)FirmataSysexCommand.SAMPLING_INTERVAL_QUERY); + seq.WriteByte((byte)FirmataCommand.END_SYSEX); + byte[] reply = SendCommandAndWait(seq, TimeSpan.FromSeconds(1), (q, bytes) => bytes[0] == (byte)FirmataSysexCommand.SAMPLING_INTERVAL, out _lastCommandError); + if (_lastCommandError != CommandError.None) + { + throw new IOException($"Command failed with error {_lastCommandError}"); + } + + int millis = FirmataCommandSequence.DecodeInt14(reply, 1); + return TimeSpan.FromMilliseconds(millis); + } + public void ConfigureSpiDevice(SpiConnectionSettings connectionSettings) { if (connectionSettings.ChipSelectLine >= 15) diff --git a/src/devices/Arduino/FirmataSysexCommand.cs b/src/devices/Arduino/FirmataSysexCommand.cs index 1d67ac434f..48f6e79d24 100644 --- a/src/devices/Arduino/FirmataSysexCommand.cs +++ b/src/devices/Arduino/FirmataSysexCommand.cs @@ -9,7 +9,16 @@ namespace Iot.Device.Arduino internal enum FirmataSysexCommand { ENCODER_DATA = 0x61, + EXTENDED_REPORT_ANALOG = 0x64, + SYSTEM_VARIABLE = 0x66, SPI_DATA = 0x68, + ANALOG_MAPPING_QUERY = 0x69, + ANALOG_MAPPING_RESPONSE = 0x6A, + CAPABILITY_QUERY = 0x6B, + CAPABILITY_RESPONSE = 0x6C, + PIN_STATE_QUERY = 0x6D, + PIN_STATE_RESPONSE = 0x6E, + EXTENDED_ANALOG = 0x6F, SERVO_CONFIG = 0x70, STRING_DATA = 0x71, STEPPER_DATA = 0x72, @@ -18,21 +27,13 @@ internal enum FirmataSysexCommand I2C_REQUEST = 0x76, I2C_REPLY = 0x77, I2C_CONFIG = 0x78, - EXTENDED_REPORT_ANALOG = 0x64, - EXTENDED_ANALOG = 0x6F, - PIN_STATE_QUERY = 0x6D, - PIN_STATE_RESPONSE = 0x6E, - CAPABILITY_QUERY = 0x6B, - CAPABILITY_RESPONSE = 0x6C, - ANALOG_MAPPING_QUERY = 0x69, - ANALOG_MAPPING_RESPONSE = 0x6A, + DHT_SENSOR_DATA_REQUEST = 0x74, REPORT_FIRMWARE = 0x79, SAMPLING_INTERVAL = 0x7A, SCHEDULER_DATA = 0x7B, + SAMPLING_INTERVAL_QUERY = 0x7C, + FREQUENCY_COMMAND = 0x7D, SYSEX_NON_REALTIME = 0x7E, SYSEX_REALTIME = 0x7F, - DHT_SENSOR_DATA_REQUEST = 0x74, // User defined block - FREQUENCY_COMMAND = 0x7D, - SYSTEM_VARIABLE = 0x66, } } diff --git a/src/devices/Arduino/FrequencySensor.cs b/src/devices/Arduino/FrequencySensor.cs index c80362e907..00ef5fb0a5 100644 --- a/src/devices/Arduino/FrequencySensor.cs +++ b/src/devices/Arduino/FrequencySensor.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Numerics; using System.Text; using System.Threading.Tasks; using Microsoft.Extensions.Logging; @@ -187,6 +188,24 @@ public void DisableFrequencyReporting(int pinNumber) _frequencyReportingPin = -1; } + /// + /// Sets a debouncing period for the input pin. Useful if the sensor's signal is a bit "dirty". + /// + /// The pin to observe + /// The idle time. Any events within this period will be ignored + public void SetDebouncingPeriod(int pinNumber, TimeSpan period) + { + ArgumentOutOfRangeException.ThrowIfNegative(period.TotalSeconds, nameof(period)); + uint us = (uint)period.TotalMicroseconds; + FirmataCommandSequence sequence = new(); + sequence.WriteByte((byte)FirmataSysexCommand.FREQUENCY_COMMAND); + sequence.WriteByte(3); + sequence.WriteByte((byte)pinNumber); + sequence.SendUInt32(us); + sequence.WriteByte((byte)FirmataCommand.END_SYSEX); + SendCommand(sequence); + } + /// protected override void Dispose(bool disposing) { diff --git a/src/devices/Arduino/samples/ApiChecker/Arduino.sample.cs b/src/devices/Arduino/samples/ApiChecker/Arduino.sample.cs index 3d0700dc3b..50dcdfd2f0 100644 --- a/src/devices/Arduino/samples/ApiChecker/Arduino.sample.cs +++ b/src/devices/Arduino/samples/ApiChecker/Arduino.sample.cs @@ -110,6 +110,7 @@ public static void Main(string[] args) private static void ConnectWithStream(Stream stream) { ArduinoBoard board = new ArduinoBoard(stream); + stream.ReadTimeout = 60000; try { Console.WriteLine( diff --git a/src/devices/Arduino/samples/ApiChecker/TestCases.cs b/src/devices/Arduino/samples/ApiChecker/TestCases.cs index 8a8906bcbe..31fe6ccca8 100644 --- a/src/devices/Arduino/samples/ApiChecker/TestCases.cs +++ b/src/devices/Arduino/samples/ApiChecker/TestCases.cs @@ -493,6 +493,22 @@ private void TestGpio() private void TestAnalogIn() { + _board.SetAnalogPinSamplingInterval(TimeSpan.FromMilliseconds(20)); + TimeSpan diditwork = TimeSpan.Zero; + try + { + diditwork = _board.QueryAnalogPinSamplingInterval(); + } + catch (IOException) + { + diditwork = TimeSpan.Zero; + } + + if (diditwork != TimeSpan.FromMilliseconds(20)) + { + Console.WriteLine("We are not able to query the sampling interval. Ensure the board runs ConfigurableFirmata 3.4 or newer"); + } + // Use Pin 6 int gpio = _ledPin; int analogPin = GetAnalogPin(_board, _analogInputChannel); @@ -503,7 +519,7 @@ private void TestAnalogIn() gpioController.OpenPin(gpio); gpioController.SetPinMode(gpio, PinMode.Output); - Console.WriteLine("Blinking GPIO6, based on analog input."); + Console.WriteLine($"Blinking GPIO{analogPin}, based on analog input on A{_analogInputChannel}."); while (!Console.KeyAvailable) { ElectricPotential voltage = pin.ReadVoltage(); diff --git a/src/devices/Common/Iot/Device/Common/GeographicPosition.cs b/src/devices/Common/Iot/Device/Common/GeographicPosition.cs index b2e7a4ed5f..9b73b4a9c6 100644 --- a/src/devices/Common/Iot/Device/Common/GeographicPosition.cs +++ b/src/devices/Common/Iot/Device/Common/GeographicPosition.cs @@ -52,9 +52,25 @@ public GeographicPosition(GeographicPosition pos) /// Latitude of position, in degrees. Valid values are -90 - +90 /// Longitude of position, in degrees. Valid values are -180 to +180 or 0 to 360, depending on application /// Height over the WGS84 ellipsoid. - /// No exception is thrown on denormalized or out-of-range positions. + /// The position is invalid (latitude or longitude are out of range) public GeographicPosition(double latitude, double longitude, double ellipsoidalHeight) { + if (Double.IsNaN(latitude) || Double.IsInfinity(latitude) || Math.Abs(latitude) > 90.1) + { + throw new ArgumentOutOfRangeException(nameof(latitude), latitude, "Latitude must be a valid number and between -90 and +90"); + } + + if (Double.IsNaN(longitude) || Double.IsInfinity(longitude)) + { + throw new ArgumentOutOfRangeException(nameof(longitude), longitude, "Longitude must be a valid number"); + } + + if (Double.IsNaN(ellipsoidalHeight) || Double.IsInfinity(ellipsoidalHeight)) + { + throw new ArgumentOutOfRangeException(nameof(ellipsoidalHeight), ellipsoidalHeight, + "Height must be a valid number"); + } + _latitude = latitude; _longitude = longitude; _height = ellipsoidalHeight; diff --git a/src/devices/Common/Iot/Device/Common/HysteresisFilter.cs b/src/devices/Common/Iot/Device/Common/HysteresisFilter.cs new file mode 100644 index 0000000000..741a53757f --- /dev/null +++ b/src/devices/Common/Iot/Device/Common/HysteresisFilter.cs @@ -0,0 +1,97 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Iot.Device.Common +{ + /// + /// This class implements a histeresis filter on a boolean value. + /// The output value will depend on the input and a configurable delay. + /// This is useful to e.g. trigger an error only after an input value + /// is high for at least a certain time. + /// + public class HysteresisFilter + { + private bool _currentValue; + private bool _lastInputValue; + private Stopwatch _tickCountLastChange; + + /// + /// Creates a new histeresis filter with the given initial value + /// + /// The initial value of the output + public HysteresisFilter(bool initialValue) + { + _currentValue = initialValue; + _lastInputValue = initialValue; + _tickCountLastChange = Stopwatch.StartNew(); + RisingDelayTime = TimeSpan.Zero; + FallingDelayTime = TimeSpan.Zero; + } + + /// + /// The delay time for a raising input + /// + public TimeSpan RisingDelayTime + { + get; + set; + } + + /// + /// The delay time for a falling input + /// + public TimeSpan FallingDelayTime + { + get; + set; + } + + /// + /// The current output value. This will not change unless is called regularly. + /// + public bool Output => _currentValue; + + /// + /// Updates the input value. + /// This method must be called regularly (typically significantly more often than any of and + /// ) to update the input. The output will change when the input has changed for more + /// than the delay time in either direction. + /// + /// The new input value + /// The current output value + public bool Update(bool newValue) + { + // Reset clock when input value is different from output and we have not already started a wait + if (newValue != _currentValue && newValue != _lastInputValue) + { + _tickCountLastChange.Restart(); + } + + _lastInputValue = newValue; + + if (newValue) + { + if (_tickCountLastChange.Elapsed >= RisingDelayTime) + { + _currentValue = true; + } + } + else + { + if (_tickCountLastChange.Elapsed >= FallingDelayTime) + { + _currentValue = false; + } + } + + return _currentValue; + } + } +} diff --git a/src/devices/Common/Iot/Device/Common/MultiTargetLoggerFactory.cs b/src/devices/Common/Iot/Device/Common/MultiTargetLoggerFactory.cs new file mode 100644 index 0000000000..91674a819e --- /dev/null +++ b/src/devices/Common/Iot/Device/Common/MultiTargetLoggerFactory.cs @@ -0,0 +1,110 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; + +#pragma warning disable 1591 +namespace Iot.Device.Common +{ + public class MultiTargetLoggerFactory : ILoggerFactory + { + private List _factories = new List(); + public MultiTargetLoggerFactory() + { + } + + public MultiTargetLoggerFactory(params ILoggerFactory[] factories) + { + _factories = factories.ToList(); + } + + public void AddProvider(ILoggerProvider provider) + { + } + + public ILogger CreateLogger(string categoryName) + { + return new MultiTargetLogger(categoryName, _factories); + } + + private class MultiTargetLogger : ILogger + { + private List _loggers; + + public MultiTargetLogger(string name, List factories) + { + _loggers = new List(); + foreach (var f in factories) + { + _loggers.Add(f.CreateLogger(name)); + } + } + + public void Log(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func formatter) + { + foreach (var l in _loggers) + { + l.Log(logLevel, eventId, state, exception, formatter); + } + } + + public bool IsEnabled(LogLevel logLevel) + { + if (_loggers.Count == 0) + { + return false; + } + + return _loggers.Any(x => x.IsEnabled(logLevel)); + } + + public IDisposable BeginScope(TState state) + where TState : notnull + { + return new InnerScopeDisposable(state, _loggers); + } + + private sealed class InnerScopeDisposable : IDisposable + where TState : notnull + { + private readonly List _disposables; + + public InnerScopeDisposable(TState state, List loggers) + { + _disposables = new List(); + foreach (var l in loggers) + { + var scopeDisposable = l.BeginScope(state); + if (scopeDisposable != null) + { + _disposables.Add(scopeDisposable); + } + } + } + + public void Dispose() + { + foreach (var d in _disposables) + { + d.Dispose(); + } + + _disposables.Clear(); + } + } + } + + public void Dispose() + { + foreach (var d in _factories) + { + d.Dispose(); + } + } + } +} diff --git a/src/devices/Common/tests/HysteresisTest.cs b/src/devices/Common/tests/HysteresisTest.cs new file mode 100644 index 0000000000..30d2901e8c --- /dev/null +++ b/src/devices/Common/tests/HysteresisTest.cs @@ -0,0 +1,100 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading; +using Xunit; + +namespace Iot.Device.Common.Tests +{ + public class HysteresisTest + { + private HysteresisFilter _filter; + public HysteresisTest() + { + _filter = new HysteresisFilter(false); + } + + [Fact] + public void NoHysteresis() + { + Assert.False(_filter.Output); + _filter.Update(true); + Assert.True(_filter.Output); + _filter.Update(true); + Assert.True(_filter.Output); + _filter.Update(false); + Assert.False(_filter.Output); + } + + [Fact] + public void RisingHysteresis() + { + _filter.RisingDelayTime = TimeSpan.FromMilliseconds(5); + Assert.False(_filter.Output); + _filter.Update(true); + Assert.False(_filter.Output); + for (int i = 0; i < 10; i++) + { + _filter.Update(true); + Thread.Sleep(2); + if (_filter.Output) + { + break; + } + } + + Assert.True(_filter.Output); + _filter.Update(false); + Assert.False(_filter.Output); + } + + [Fact] + public void FallingHysteresis() + { + _filter.FallingDelayTime = TimeSpan.FromMilliseconds(5); + Assert.False(_filter.Output); + _filter.Update(true); + Assert.True(_filter.Output); + for (int i = 0; i < 10; i++) + { + _filter.Update(false); + Thread.Sleep(2); + if (!_filter.Output) + { + break; + } + } + + Assert.False(_filter.Output); + } + + [Fact] + public void BothHysteresis() + { + _filter.RisingDelayTime = TimeSpan.FromMilliseconds(5); + _filter.FallingDelayTime = TimeSpan.FromMilliseconds(5); + Assert.False(_filter.Output); + _filter.Update(true); + Assert.False(_filter.Output); + for (int i = 0; i < 10; i++) + { + _filter.Update(true); + Thread.Sleep(2); + if (_filter.Output) + { + break; + } + } + + Assert.True(_filter.Output); + _filter.Update(false); + Assert.True(_filter.Output); + Thread.Sleep(10); + _filter.Update(false); + Assert.False(_filter.Output); + } + } +} diff --git a/src/devices/Nmea0183/Ais/AisParser.cs b/src/devices/Nmea0183/Ais/AisParser.cs index 156773573b..eae706222a 100644 --- a/src/devices/Nmea0183/Ais/AisParser.cs +++ b/src/devices/Nmea0183/Ais/AisParser.cs @@ -8,7 +8,9 @@ using System.Globalization; using System.Linq; using System.Text; +using Iot.Device.Common; using Iot.Device.Nmea0183.Sentences; +using Microsoft.Extensions.Logging; namespace Iot.Device.Nmea0183.Ais { @@ -24,14 +26,14 @@ internal class AisParser private const int MaxPayloadLength = 60; // Characters public bool ThrowOnUnknownMessage { get; } - public static SentenceId VdoId = new SentenceId("VDO"); - public static SentenceId VdmId = new SentenceId("VDM"); private readonly PayloadDecoder _payloadDecoder; private readonly AisMessageFactory _messageFactory; private readonly PayloadEncoder _payloadEncoder; private readonly IDictionary> _fragments = new Dictionary>(); + private readonly ILogger _logger; private int _nextFragmentedMessageId; + private char _generatedReceiverChannel; public AisParser() : this(false) @@ -50,11 +52,13 @@ public AisParser(PayloadDecoder payloadDecoder, AisMessageFactory messageFactory _messageFactory = messageFactory; _payloadEncoder = payloadEncoder; _nextFragmentedMessageId = 1; - GeneratedSentencesId = VdoId; + GeneratedSentencesId = SentenceId.Vdo; + _generatedReceiverChannel = 'A'; + _logger = this.GetCurrentClassLogger(); } /// - /// Which generated AIS messages should get. Meaningful values are or . + /// Which generated AIS messages should get. Meaningful values are or . /// Default is "VDO" /// public SentenceId GeneratedSentencesId @@ -63,6 +67,27 @@ public SentenceId GeneratedSentencesId set; } + /// + /// The receiver channel we're simulating on outgoing messages. + /// For most applications, this doesn't matter, as it will be filled by the transponder firmware. + /// + public char GeneratedReceiverChannel + { + get + { + return _generatedReceiverChannel; + } + set + { + if (value != 'A' && value != 'B') + { + throw new ArgumentOutOfRangeException(nameof(value), "The receiver channel must be specified as 'A' or 'B'"); + } + + _generatedReceiverChannel = value; + } + } + /// /// Decode an AIS sentence from a raw NMEA0183 string, with data verification. /// @@ -123,7 +148,20 @@ public SentenceId GeneratedSentencesId var payload = DecodePayload(encodedPayload, Convert.ToInt32(sentenceParts[1]), Convert.ToInt32(sentenceParts[2]), messageNumber, Convert.ToInt32(sentenceParts[6])); - return payload == null ? null : _messageFactory.Create(payload, ThrowOnUnknownMessage); + + if (payload == null) + { + _logger.LogWarning($"Unable to decode AIS message {sentence}"); + return null; + } + + var createdMessage = _messageFactory.Create(payload, ThrowOnUnknownMessage); + if (createdMessage == null) + { + _logger.LogWarning($"Message {sentence} could technically be parsed, but the message type {payload.MessageType} is unknown"); + } + + return createdMessage; } public AisMessage? Parse(NmeaSentence sentence) @@ -193,7 +231,7 @@ public List ToSentences(AisMessage message) parts.Add(numBlocks.ToString(CultureInfo.InvariantCulture)); parts.Add(blockNumber.ToString(CultureInfo.InvariantCulture)); parts.Add(fragmentId); // may be empty, see above - parts.Add("A"); // Doesn't really matter (determined by the transceiver), but must be "A" or "B" + parts.Add(_generatedReceiverChannel.ToString()); int thisMessageLength = Math.Min(fullData.Length, MaxPayloadLength); string thisMessagePayLoad = fullData.Substring(0, thisMessageLength); fullData = fullData.Remove(0, thisMessageLength); diff --git a/src/devices/Nmea0183/Ais/AisSafetyState.cs b/src/devices/Nmea0183/Ais/AisSafetyState.cs index 8f56611d99..7a9dbdfec8 100644 --- a/src/devices/Nmea0183/Ais/AisSafetyState.cs +++ b/src/devices/Nmea0183/Ais/AisSafetyState.cs @@ -32,6 +32,11 @@ public enum AisSafetyState /// /// The other target is so far away or the relative speed is so low, that (T)CPA calculations wouldn't be meaningful. /// - FarAway + FarAway, + + /// + /// The ship's safety state is ignored (e.g. because it's moored) + /// + Ignored } } diff --git a/src/devices/Nmea0183/Ais/AisTargetExtensions.cs b/src/devices/Nmea0183/Ais/AisTargetExtensions.cs index 0e1b123d71..31208f7a8e 100644 --- a/src/devices/Nmea0183/Ais/AisTargetExtensions.cs +++ b/src/devices/Nmea0183/Ais/AisTargetExtensions.cs @@ -113,7 +113,7 @@ public static List RelativePositionsTo(this Ship self, IEn // The other is not a ship - Assume static position (but make sure a lost target doesn't become a // dangerous target - we warn about lost targets separately) - if (distance < parameters.WarningDistance && state != AisSafetyState.Lost) + if (distance < WarningDistanceOf(parameters, other) && state != AisSafetyState.Lost) { state = AisSafetyState.Dangerous; } @@ -178,10 +178,23 @@ public static List RelativePositionsTo(this Ship self, IEn }; var timeToClosest = pos.TimeToClosestPointOfApproach(now); - if (pos.ClosestPointOfApproach < parameters.WarningDistance && - timeToClosest > -TimeSpan.FromMinutes(1) && timeToClosest < parameters.WarningTime) + if (pos.ClosestPointOfApproach < WarningDistanceOf(parameters, pos.To) && + timeToClosest > -TimeSpan.FromMinutes(1) && timeToClosest < WarningTimeOf(parameters, pos.To)) { - pos.SafetyState = AisSafetyState.Dangerous; + if (otherAsMovingTarget is SarAircraft) + { + // Let's assume we can't collide with a helicopter. + pos.SafetyState = AisSafetyState.Ignored; + } + else if (!parameters.IgnoreVesselsSlowerThan.HasValue || otherAsMovingTarget.SpeedOverGround > + parameters.IgnoreVesselsSlowerThan.Value) + { + pos.SafetyState = AisSafetyState.Dangerous; + } + else + { + pos.SafetyState = AisSafetyState.Ignored; + } } retList.Add(pos); @@ -192,6 +205,38 @@ public static List RelativePositionsTo(this Ship self, IEn return retList; } + private static Length WarningDistanceOf(TrackEstimationParameters parameters, AisTarget target) + { + if (target is Ship ship) + { + if (ship.Length < Length.FromMeters(50)) + { + return parameters.WarningDistanceSmallVessels; + } + + return parameters.WarningDistanceLargeVessels; + } + + // Beacons and other non-ship targets are usually small. + return parameters.WarningDistanceSmallVessels; + } + + private static TimeSpan WarningTimeOf(TrackEstimationParameters parameters, AisTarget target) + { + if (target is Ship ship) + { + if (ship.Length < Length.FromMeters(50)) + { + return parameters.WarningTimeSmallVessels; + } + + return parameters.WarningTimeLargeVessels; + } + + // Beacons and other non-ship targets are usually small. + return parameters.WarningTimeSmallVessels; + } + /// /// Estimates where a ship will be after some time. /// diff --git a/src/devices/Nmea0183/Ais/Ship.cs b/src/devices/Nmea0183/Ais/Ship.cs index e05d8753ac..695c972b59 100644 --- a/src/devices/Nmea0183/Ais/Ship.cs +++ b/src/devices/Nmea0183/Ais/Ship.cs @@ -25,12 +25,13 @@ public Ship(uint mmsi) } /// - /// The call sign. A sequence of up to 7 letters or numbers, without blanks. Empty if unknown + /// The call sign. A sequence of up to 7 letters or numbers, without blanks. This can technically be empty, but all vessels with an AIS transceiver should + /// have a callsign. /// public string CallSign { get; set; } /// - /// The ship type + /// The ship type. /// public ShipType ShipType { get; set; } @@ -72,27 +73,33 @@ public Ship(uint mmsi) public Length Beam => DimensionToPort + DimensionToStarboard; /// - /// Estimated time of arrival at the destination. Ships without a designated destinations or with recurring destinations often use a dummy value, such as January 1st, midnight + /// Estimated time of arrival at the destination. Ships without a designated destinations or with + /// recurring destinations often use a dummy value, such as January 1st, midnight. + /// Only available for class A transceivers. /// public DateTimeOffset? EstimatedTimeOfArrival { get; set; } /// /// A text for the destination, often abbreviated. + /// Only available for class A transceivers. /// public string Destination { get; set; } /// /// The current draught of the vessel. For large cargo vessels, this may be very variable. + /// Only available for class A transceivers. /// public Length? Draught { get; set; } /// - /// The IMO number of the ship + /// The IMO number of the ship. + /// Only available for class A transceivers. /// public uint ImoNumber { get; set; } /// - /// Navigation status, see there + /// Navigation status, see there. + /// Only available for class A transceivers. /// public NavigationStatus NavigationStatus { get; set; } diff --git a/src/devices/Nmea0183/Ais/ShipType.cs b/src/devices/Nmea0183/Ais/ShipType.cs index 4c25ac2eae..25c34ca000 100644 --- a/src/devices/Nmea0183/Ais/ShipType.cs +++ b/src/devices/Nmea0183/Ais/ShipType.cs @@ -101,7 +101,7 @@ public enum ShipType MilitaryOps = 35, /// - /// This is a sailing vessel. Used for both sailing yachts as well as large sailboats. Vessels equipped with a class A transceiver should use + /// This is a sailing vessel. Used for both sailing yachts and large sailboats. Vessels equipped with a class A transceiver should use /// when they're actually underway using their sails. Some sailing yachts also use /// as ship type instead. /// @@ -194,7 +194,8 @@ public enum ShipType PortTender = 53, /// - /// An anti-pollution vessel. Used to collect garbage from the sea or to collect spilled oil. + /// An anti-pollution vessel. Used to collect garbage from the sea or to collect spilled oil. Also seen on government vessels + /// supervising MARPOL compliance. /// AntiPollutionEquipment = 54, diff --git a/src/devices/Nmea0183/Ais/TrackEstimationParameters.cs b/src/devices/Nmea0183/Ais/TrackEstimationParameters.cs index 37222d3604..2a0ca7a702 100644 --- a/src/devices/Nmea0183/Ais/TrackEstimationParameters.cs +++ b/src/devices/Nmea0183/Ais/TrackEstimationParameters.cs @@ -42,14 +42,24 @@ public record TrackEstimationParameters public TimeSpan AisSafetyCheckInterval { get; set; } = TimeSpan.FromSeconds(5); /// - /// Minimum CPA distance to issue a warning. Default: 1 nm. + /// Minimum CPA distance to issue a warning when the target vessel is over 50m in length. Default: 1 nm. /// - public Length WarningDistance { get; set; } = Length.FromNauticalMiles(1); + public Length WarningDistanceLargeVessels { get; set; } = Length.FromNauticalMiles(1); /// - /// Minimum TCPA to issue a warning (when is also reached). Default: 10 minutes + /// Minimum TCPA to issue a warning (when is also reached). Default: 10 minutes /// - public TimeSpan WarningTime { get; set; } = TimeSpan.FromMinutes(10); + public TimeSpan WarningTimeLargeVessels { get; set; } = TimeSpan.FromMinutes(10); + + /// + /// Minimum CPA distance for target vessels shorter than 50m + /// + public Length WarningDistanceSmallVessels { get; set; } = Length.FromMeters(200); + + /// + /// Minimum safe passage distance for target vessels shorter than 50m + /// + public TimeSpan WarningTimeSmallVessels { get; set; } = TimeSpan.FromMinutes(5); /// /// Maximum age of the position record for a given ship to consider it valid. @@ -92,5 +102,15 @@ public record TrackEstimationParameters /// is controlled via . Default: 25 minutes /// public TimeSpan CleanupLatency { get; set; } = TimeSpan.FromMinutes(25); + + /// + /// Speed limit to assume a vessel is moored. Set to null to disable. Default: 0.2 Knots + /// + public Speed? IgnoreVesselsSlowerThan { get; set; } = Speed.FromKnots(0.2); + + /// + /// Disables all warnings about vessels. Useful e.g. when approaching a busy port. + /// + public bool SuppressAllVesselWarnings { get; set; } } } diff --git a/src/devices/Nmea0183/AisManager.cs b/src/devices/Nmea0183/AisManager.cs index c13bbf6d8b..f864a3f118 100644 --- a/src/devices/Nmea0183/AisManager.cs +++ b/src/devices/Nmea0183/AisManager.cs @@ -48,7 +48,8 @@ public class AisManager : NmeaSinkAndSource /// The current time /// The message text /// The source, if any - public delegate void AisWarning(AisMessageId id, uint sourceMmsi, DateTimeOffset now, string message, AisTarget? source); + public delegate void AisWarning(AisMessageId id, uint sourceMmsi, DateTimeOffset now, string message, + AisTarget? source); private readonly bool _throwOnUnknownMessage; @@ -97,6 +98,8 @@ public class AisManager : NmeaSinkAndSource private ILogger _logger; + private DateTimeOffset _startupTime; + /// /// Creates an instance of an /// @@ -104,7 +107,7 @@ public class AisManager : NmeaSinkAndSource /// The MMSI of the own ship /// The name of the own ship public AisManager(string interfaceName, uint ownMmsi, string ownShipName) - : this(interfaceName, false, ownMmsi, ownShipName) + : this(interfaceName, false, ownMmsi, ownShipName) { } @@ -159,6 +162,7 @@ public AisManager(string interfaceName, bool throwOnUnknownMessage, uint ownMmsi AutoSendWarnings = true; _lastCleanupCheck = null; _aisAlarmsEnabled = false; + _startupTime = DateTimeOffset.UtcNow; TrackEstimationParameters = new TrackEstimationParameters(); } @@ -210,7 +214,7 @@ public AisManager(string interfaceName, bool throwOnUnknownMessage, uint ownMmsi public TrackEstimationParameters TrackEstimationParameters { get; private set; } /// - /// Which generated AIS messages should get. Meaningful values are or . + /// Which generated AIS messages should get. Meaningful values are or . /// Default is "VDO" /// public SentenceId GeneratedSentencesId @@ -263,7 +267,8 @@ public bool GetOwnShipData(out Ship ownShip, DateTimeOffset currentTime) (messageTime + TrackEstimationParameters.MaximumPositionAge) < currentTime) { // then use any source - if (PreferredPositionSource == null || !_positionProvider.TryGetCurrentPosition(out position, null, false, + if (PreferredPositionSource == null || !_positionProvider.TryGetCurrentPosition(out position, null, + false, out track, out sog, out heading, out messageTime, currentTime) || (messageTime + TrackEstimationParameters.MaximumPositionAge) < currentTime) @@ -286,7 +291,7 @@ public bool GetOwnShipData(out Ship ownShip, DateTimeOffset currentTime) s.TrueHeading = heading; s.LastSeen = messageTime; - _logger.LogWarning($"AISManager: Position of own ship: {position}, speed: {sog}, course {track}"); + _logger.LogInformation($"AISManager: Position of own ship: {position}, speed: {sog}, course {track}"); ownShip = s; return true; } @@ -334,15 +339,15 @@ private Ship GetOrCreateShip(uint mmsi, AisTransceiverClass transceiverClass, Da } private T GetOrCreateTarget(uint mmsi, Func constructor, DateTimeOffset? lastSeenTime) - where T : AisTarget + where T : AisTarget { lock (_lock) { AisTarget? target; - T? ship; - if (TryGetTarget(mmsi, out target) && target is Ship) + T ship; + if (TryGetTarget(mmsi, out target) && target is T targetAsT) { - ship = target as T; + ship = targetAsT; } else { @@ -353,23 +358,25 @@ private T GetOrCreateTarget(uint mmsi, Func constructor, DateTimeOff _targets.TryAdd(mmsi, ship); } - if (lastSeenTime.HasValue && ship != null) + if (lastSeenTime.HasValue) { ship.LastSeen = lastSeenTime.Value; } // Remove any "Vessel lost" messages about this target - it cannot be lost at this point - var obsoleteWarnings = _activeWarnings.Where(x => x.Key.Mmsi == mmsi && x.Key.Type == AisWarningType.VesselLost); + var obsoleteWarnings = + _activeWarnings.Where(x => x.Key.Mmsi == mmsi && x.Key.Type == AisWarningType.VesselLost); foreach (var obsoleteWarning in obsoleteWarnings) { _activeWarnings.TryRemove(obsoleteWarning.Key, out _); } - return ship!; + return ship; } } - private BaseStation GetOrCreateBaseStation(uint mmsi, AisTransceiverClass transceiverClass, DateTimeOffset? lastSeenTime) + private BaseStation GetOrCreateBaseStation(uint mmsi, AisTransceiverClass transceiverClass, + DateTimeOffset? lastSeenTime) { return GetOrCreateTarget(mmsi, x => new BaseStation(mmsi), lastSeenTime); } @@ -391,13 +398,27 @@ public IEnumerable GetTargets() } } + /// + /// Gets the list of targets filtered with the predicate + /// + /// A filter method + /// The filtered list + public IEnumerable GetTargets(Func predicate) + { + ArgumentNullException.ThrowIfNull(predicate, nameof(predicate)); + lock (_lock) + { + return _targets.Values.Where(predicate); + } + } + /// /// Gets the list of all active targets of the given type /// /// A type of target, must be a derivative of . /// An enumeration of all targets of that type public IEnumerable GetSpecificTargets() - where T : AisTarget + where T : AisTarget { lock (_lock) { @@ -406,14 +427,14 @@ public IEnumerable GetSpecificTargets() } /// - /// Processes incomming sequences. Use this method to input an NMEA stream to this component. + /// Processes incoming sequences. Use this method to input an NMEA stream to this component. /// Note that _all_ messages should be forwarded to this method, as AIS target tracking requires the position and speed of our own vessel. /// /// Message source /// The new sentence public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentence) { - _cache?.Add(sentence); + _cache?.Add(source, sentence); DoCleanup(sentence.DateTime); @@ -457,6 +478,7 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc ship.DimensionToStern = Length.FromMeters(msgPartB.DimensionToStern); ship.DimensionToPort = Length.FromMeters(msgPartB.DimensionToPort); ship.DimensionToStarboard = Length.FromMeters(msgPartB.DimensionToStarboard); + ship.NavigationStatus = NavigationStatus.NotDefined; } CheckIsExceptionalTarget(ship, sentence.DateTime); @@ -511,7 +533,7 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc // This is an alternative static data report for class B transceivers StandardClassBCsPositionReportMessage msgPos = (StandardClassBCsPositionReportMessage)msg; ship = GetOrCreateShip(msgPos.Mmsi, msg.TransceiverType, sentence.DateTime); - ship.Position = new GeographicPosition(msgPos.Latitude, msgPos.Longitude, 0); + ship.Position = ValidatePosition(() => new GeographicPosition(msgPos.Latitude, msgPos.Longitude, 0)); ship.RateOfTurn = null; if (msgPos.TrueHeading.HasValue) { @@ -549,6 +571,7 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc ship.DimensionToStern = Length.FromMeters(msgPos.DimensionToStern); ship.DimensionToPort = Length.FromMeters(msgPos.DimensionToPort); ship.DimensionToStarboard = Length.FromMeters(msgPos.DimensionToStarboard); + ship.NavigationStatus = NavigationStatus.NotDefined; ship.ShipType = msgPos.ShipType; ship.Name = msgPos.Name; CheckIsExceptionalTarget(ship, sentence.DateTime); @@ -559,7 +582,7 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc { BaseStationReportMessage rpt = (BaseStationReportMessage)msg; var station = GetOrCreateBaseStation(rpt.Mmsi, rpt.TransceiverType, sentence.DateTime); - station.Position = new GeographicPosition(rpt.Latitude, rpt.Longitude, 0); + station.Position = ValidatePosition(() => new GeographicPosition(rpt.Latitude, rpt.Longitude, 0)); break; } @@ -569,7 +592,7 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc var sarAircraft = GetOrCreateSarAircraft(sar.Mmsi, sentence.DateTime); // Is the altitude here ellipsoid or geoid? Ships are normally at 0m geoid (unless on a lake, but the AIS system doesn't seem to be designed // for that) - sarAircraft.Position = new GeographicPosition(sar.Latitude, sar.Longitude, sar.Altitude); + sarAircraft.Position = ValidatePosition(() => new GeographicPosition(sar.Latitude, sar.Longitude, sar.Altitude)); sarAircraft.CourseOverGround = Angle.FromDegrees(sar.CourseOverGround); sarAircraft.SpeedOverGround = Speed.FromKnots(sar.SpeedOverGround); sarAircraft.RateOfTurn = RotationalSpeed.Zero; @@ -579,8 +602,9 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc case AisMessageType.AidToNavigationReport: { AidToNavigationReportMessage aton = (AidToNavigationReportMessage)msg; - var navigationTarget = GetOrCreateTarget(aton.Mmsi, x => new AidToNavigation(x), sentence.DateTime); - navigationTarget.Position = new GeographicPosition(aton.Latitude, aton.Longitude, 0); + var navigationTarget = + GetOrCreateTarget(aton.Mmsi, x => new AidToNavigation(x), sentence.DateTime); + navigationTarget.Position = ValidatePosition(() => new GeographicPosition(aton.Latitude, aton.Longitude, 0)); navigationTarget.Name = aton.Name + aton.NameExtension; navigationTarget.DimensionToBow = Length.FromMeters(aton.DimensionToBow); navigationTarget.DimensionToStern = Length.FromMeters(aton.DimensionToStern); @@ -605,8 +629,10 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc case AisMessageType.AddressedSafetyRelatedMessage: { - AddressedSafetyRelatedMessage addressedSafetyRelatedMessage = (AddressedSafetyRelatedMessage)msg; - OnMessage?.Invoke(true, addressedSafetyRelatedMessage.Mmsi, addressedSafetyRelatedMessage.DestinationMmsi, addressedSafetyRelatedMessage.Text); + AddressedSafetyRelatedMessage addressedSafetyRelatedMessage = + (AddressedSafetyRelatedMessage)msg; + OnMessage?.Invoke(true, addressedSafetyRelatedMessage.Mmsi, + addressedSafetyRelatedMessage.DestinationMmsi, addressedSafetyRelatedMessage.Text); break; } @@ -620,7 +646,8 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc default: if (_throwOnUnknownMessage) { - throw new NotSupportedException($"Received a message of type {msg.MessageType} which was not handled"); + throw new NotSupportedException( + $"Received a message of type {msg.MessageType} which was not handled"); } break; @@ -628,9 +655,22 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc } } + private GeographicPosition ValidatePosition(Func attempt) + { + try + { + return attempt(); + } + catch (Exception e) when (e is ArgumentException || e is ArgumentOutOfRangeException) + { + _logger.LogError($"Invalid position received: {e.Message}"); + return new GeographicPosition(); + } + } + internal void PositionReportClassAToShip(Ship ship, PositionReportClassAMessageBase positionReport) { - ship.Position = new GeographicPosition(positionReport.Latitude, positionReport.Longitude, 0); + ship.Position = ValidatePosition(() => new GeographicPosition(positionReport.Latitude, positionReport.Longitude, 0)); if (positionReport.RateOfTurn.HasValue) { // See the cheat sheet at https://gpsd.gitlab.io/gpsd/AIVDM.html @@ -658,12 +698,13 @@ internal void PositionReportClassAToShip(Ship ship, PositionReportClassAMessageB private void CheckIsExceptionalTarget(Ship ship, DateTimeOffset now) { - void SendMessage(Ship ship, string type) + void SendMessage(Ship ship1, string type) { - GetOwnShipData(out Ship ownShip); // take in in either case - Length distance = ownShip.DistanceTo(ship); - SendWarningMessage(new AisMessageId(AisWarningType.ExceptionalTargetSeen, ship.Mmsi), ship.Mmsi, - $"{type} Target activated: MMSI {ship.Mmsi} in Position {ship.Position:M1N M1E}! Distance {distance}", now, ship); + GetOwnShipData(out Ship ownShip); + Length distance = ownShip.DistanceTo(ship1); + SendWarningMessage(new AisMessageId(AisWarningType.ExceptionalTargetSeen, ship1.Mmsi), ship1.Mmsi, + $"{type} Target activated: MMSI {ship1.Mmsi} in Position {ship1.Position:M1N M1E}! Distance {distance}", + now, ship1, true); } if (AutoSendWarnings == false) @@ -700,7 +741,8 @@ void SendMessage(Ship ship, string type) /// True if the message was sent, false otherwise public bool SendWarningMessage(string messageId, uint sourceMmsi, string messageText) { - return SendWarningMessage(new AisMessageId(AisWarningType.UserMessage, sourceMmsi), sourceMmsi, messageText, DateTimeOffset.UtcNow, null); + return SendWarningMessage(new AisMessageId(AisWarningType.UserMessage, sourceMmsi), sourceMmsi, messageText, + DateTimeOffset.UtcNow, null); } /// @@ -724,9 +766,31 @@ public bool SendWarningMessage(AisMessageId messageId, uint sourceMmsi, string m /// The text of the message. Supports only the AIS 6-bit character set. /// The current time (to verify the timeout against) /// The AIS target this warning is about. May be null for generic messages - /// True if the message was sent, false otherwise - public bool SendWarningMessage(AisMessageId messageId, uint sourceMmsi, string messageText, DateTimeOffset now, AisTarget? target) + /// True if the message was sent, false otherwise (sending disabled, repeat timeout not elapsed, etc) + public bool SendWarningMessage(AisMessageId messageId, uint sourceMmsi, string messageText, DateTimeOffset now, + AisTarget? target) + { + return SendWarningMessage(messageId, sourceMmsi, messageText, now, target, false); + } + + /// + /// Sends a message with the given as an AIS broadcast message + /// + /// Identifies the message. Messages with the same ID are only sent once, until the timeout elapses + /// Source MMSI, can be 0 if irrelevant/unknown + /// The text of the message. Supports only the AIS 6-bit character set. + /// The current time (to verify the timeout against) + /// The AIS target this warning is about. May be null for generic messages + /// This is a message indicating a possible emergency. It cannot be suppressed + /// True if the message was sent, false otherwise (sending disabled, repeat timeout not elapsed, etc) + public bool SendWarningMessage(AisMessageId messageId, uint sourceMmsi, string messageText, + DateTimeOffset now, AisTarget? target, bool emergencyMessage) { + if (TrackEstimationParameters.SuppressAllVesselWarnings && !emergencyMessage) + { + return false; + } + if (_activeWarnings.TryGetValue(messageId, out var msg)) { if (msg.TimeStamp + TrackEstimationParameters.WarningRepeatTimeout > now) @@ -976,7 +1040,9 @@ internal void AisAlarmThreadOperation(DateTimeOffset time) Ship ownShip; if (GetOwnShipData(out ownShip, time) == false) { - if (TrackEstimationParameters.WarnIfGnssMissing) + // Only emit this warning if we didn't just start the application. + // That message gets otherwise always triggered at startup, which is annoying. + if (TrackEstimationParameters.WarnIfGnssMissing && (_startupTime - time).Duration() > TimeSpan.FromMinutes(1)) { SendWarningMessage(new AisMessageId(AisWarningType.NoGnss, ownShip.Mmsi), ownShip.Mmsi, "No GNSS data or GNSS fix lost", null); } @@ -1000,7 +1066,7 @@ internal void AisAlarmThreadOperation(DateTimeOffset time) { // Warn if the ship will be closer than the warning distance in less than the WarningTime SendWarningMessage(new AisMessageId(AisWarningType.DangerousVessel, difference.To.Mmsi), difference.To.Mmsi, - $"CPA {cpa.Value.NauticalMiles:F2}; TCPA {tcpa.Value:mm\\:ss}", + $"{difference.To.NameOrMssi()} CPA {cpa.Value.NauticalMiles:F2}; TCPA {tcpa.Value:mm\\:ss}", time, difference.To); } @@ -1009,7 +1075,7 @@ internal void AisAlarmThreadOperation(DateTimeOffset time) { // The vessel was lost SendWarningMessage(new AisMessageId(AisWarningType.VesselLost, difference.To.Mmsi), difference.To.Mmsi, - $"LOST: CPA {cpa.Value.NauticalMiles:F2}; TCPA {tcpa.Value:mm\\:ss}", + $"{difference.To.NameOrMssi()} LOST: CPA {cpa.Value.NauticalMiles:F2}; TCPA {tcpa.Value:mm\\:ss}", time, difference.To); } } @@ -1040,13 +1106,13 @@ private void LogCurrentState(DateTimeOffset now) foreach (var target in targets) { - _logger.LogInformation($"{target.NameOrMssi()}: Last known position {target.Position} at {target.LastSeen:T}"); + _logger.LogDebug($"{target.NameOrMssi()}: Last known position {target.Position} at {target.LastSeen:T}"); var rel = target.RelativePosition; if (rel != null) { var cpa = rel.ClosestPointOfApproach.GetValueOrDefault(); var tcpa = rel.TimeToClosestPointOfApproach(now).GetValueOrDefault(); - _logger.LogInformation($"MMSI {target.Mmsi}. Distance {rel.Distance}, Bearing {rel.Bearing}, CPA: {cpa.NauticalMiles}nm, TCPA:{tcpa:g}"); + _logger.LogDebug($"MMSI {target.Mmsi}. Distance {rel.Distance}, Bearing {rel.Bearing}, CPA: {cpa.NauticalMiles}nm, TCPA:{tcpa:g}"); } } } diff --git a/src/devices/Nmea0183/AisSentences/StaticDataReportMessage.cs b/src/devices/Nmea0183/AisSentences/StaticDataReportMessage.cs index faf489b1fa..d8510582f6 100644 --- a/src/devices/Nmea0183/AisSentences/StaticDataReportMessage.cs +++ b/src/devices/Nmea0183/AisSentences/StaticDataReportMessage.cs @@ -35,6 +35,12 @@ private StaticDataReportMessage(Payload payload) public override AisTransceiverClass TransceiverType => AisTransceiverClass.B; + public override void Encode(Payload payload) + { + base.Encode(payload); + payload.WriteUInt(PartNumber, 2); + } + public static AisMessage Create(Payload payload) { var message = new StaticDataReportMessage(payload); diff --git a/src/devices/Nmea0183/AisSentences/StaticDataReportPartAMessage.cs b/src/devices/Nmea0183/AisSentences/StaticDataReportPartAMessage.cs index ea968b57ba..eb850c7062 100644 --- a/src/devices/Nmea0183/AisSentences/StaticDataReportPartAMessage.cs +++ b/src/devices/Nmea0183/AisSentences/StaticDataReportPartAMessage.cs @@ -22,5 +22,11 @@ public StaticDataReportPartAMessage(StaticDataReportMessage message, Payload pay { ShipName = payload.ReadString(40, 120); } + + public override void Encode(Payload payload) + { + base.Encode(payload); + payload.WriteString(ShipName, 120, false); + } } } diff --git a/src/devices/Nmea0183/AisSentences/StaticDataReportPartBMessage.cs b/src/devices/Nmea0183/AisSentences/StaticDataReportPartBMessage.cs index 7b1cb9f697..50ed113307 100644 --- a/src/devices/Nmea0183/AisSentences/StaticDataReportPartBMessage.cs +++ b/src/devices/Nmea0183/AisSentences/StaticDataReportPartBMessage.cs @@ -46,5 +46,21 @@ public StaticDataReportPartBMessage(StaticDataReportMessage message, Payload pay PositionFixType = payload.ReadEnum(162, 4); Spare = payload.ReadUInt(166, 2); } + + public override void Encode(Payload payload) + { + base.Encode(payload); + payload.WriteEnum(ShipType, 8); + payload.WriteString(VendorId, 18, true); + payload.WriteUInt(UnitModelCode, 4); + payload.WriteUInt(SerialNumber, 20); + payload.WriteString(CallSign, 42, true); + payload.WriteUInt(DimensionToBow, 9); + payload.WriteUInt(DimensionToStern, 9); + payload.WriteUInt(DimensionToPort, 6); + payload.WriteUInt(DimensionToStarboard, 6); + payload.WriteEnum(PositionFixType, 4); + payload.WriteUInt(Spare, 2); + } } } diff --git a/src/devices/Nmea0183/AutopilotController.cs b/src/devices/Nmea0183/AutopilotController.cs index 0e4a918b1b..697e716a2c 100644 --- a/src/devices/Nmea0183/AutopilotController.cs +++ b/src/devices/Nmea0183/AutopilotController.cs @@ -48,6 +48,8 @@ public sealed class AutopilotController : IDisposable private PositionProvider _positionProvider; + private List _waypointsUsedInRmb; + /// /// This class can control an autopilot, given an external input (of mainly WPT and RTE sentences) /// @@ -76,6 +78,7 @@ public AutopilotController(NmeaSinkAndSource input, NmeaSinkAndSource output, Se _selfNavMode = false; _manualNextWaypoint = null; _activeRoute = null; + _waypointsUsedInRmb = new List(); WaypointSwitchDistance = Length.FromMeters(200); _logger = this.GetCurrentClassLogger(); } @@ -130,6 +133,15 @@ public RoutePoint? NextWaypoint private set; } + /// + /// The previous waypoint, if known + /// + public RoutePoint? PreviousWaypoint + { + get; + private set; + } + /// /// When routing ourselves (no RMB message as input), we switch to the next waypoint /// when closer than this distance or over the bisecting angle to the next leg @@ -226,8 +238,11 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) _selfNavMode = false; } - OperationState = AutopilotErrorState.OperatingAsSlave; currentLeg = currentLeg1; + if ((_waypointsUsedInRmb.Count == 0 || _waypointsUsedInRmb.Last() != currentLeg.NextWayPointName) && !string.IsNullOrWhiteSpace(currentLeg.NextWayPointName)) + { + _waypointsUsedInRmb.Add(currentLeg.NextWayPointName); + } } else { @@ -240,8 +255,8 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) if (!_cache.TryGetLastSentence(HeadingAndDeclination.Id, out HeadingAndDeclination? deviation) || !deviation.Declination.HasValue) { - if (!_cache.TryGetLastSentence(RecommendedMinimumNavigationInformation.Id, - out RecommendedMinimumNavigationInformation? rmc) || !rmc.MagneticVariationInDegrees.HasValue) + var variation = _cache.MagneticVariation; + if (!variation.HasValue) { if (loops % LogSkip == 0) { @@ -251,7 +266,7 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) return; } - deviation = new HeadingAndDeclination(Angle.Zero, Angle.Zero, rmc.MagneticVariationInDegrees); + deviation = new HeadingAndDeclination(Angle.Zero, Angle.Zero, variation); } _activeDeviation = deviation; @@ -259,15 +274,6 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) if (_positionProvider.TryGetCurrentPosition(out var position, NmeaSourceName, false, out Angle track, out Speed sog, out Angle? heading, out _) && position != null) { - string previousWayPoint = string.Empty; - string nextWayPoint = string.Empty; - - if (currentLeg != null) - { - previousWayPoint = currentLeg.PreviousWayPointName; - nextWayPoint = currentLeg.NextWayPointName; - } - List? currentRoute = null; if (_activeRoute != null) { @@ -280,20 +286,31 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) { // No route. But if we have an RMB message, there could still be a current target (typically one that was // directly selected with "Goto") - if (currentLeg == null) + if (currentLeg == null || currentLeg.NextWayPoint.ContainsValidPosition() == false) { OperationState = AutopilotErrorState.NoRoute; + PreviousWaypoint = null; + NextWaypoint = null; return; } OperationState = AutopilotErrorState.DirectGoto; - next = new RoutePoint("Goto", 0, 1, currentLeg.NextWayPointName, currentLeg.NextWayPoint, null, null); + if (!string.IsNullOrWhiteSpace(currentLeg.NextWayPointName)) + { + // Remember this as a waypoint + Waypoint wpt = new Waypoint(currentLeg.NextWayPoint, currentLeg.NextWayPointName); + wpt.DateTime = DateTimeOffset.UtcNow; + _cache.AddWayPoint(wpt); + } + + next = new RoutePoint("Goto", 1, 2, currentLeg.NextWayPointName, currentLeg.NextWayPoint, currentLeg.BearingToWayPoint, currentLeg.DistanceToWayPoint); } else if (currentLeg != null) { // Better to compare by position rather than name, because the names (unless using identifiers) may // not be unique. next = currentRoute.FirstOrDefault(x => x.Position.EqualPosition(currentLeg.NextWayPoint)); + OperationState = AutopilotErrorState.OperatingAsSlave; } else { @@ -330,7 +347,7 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) RoutePoint? previous = null; if (currentRoute != null) { - previous = currentRoute.Find(x => x.WaypointName == previousWayPoint); + previous = currentRoute.Find(x => x.WaypointName == currentLeg?.PreviousWayPointName); } if (previous == null && next != null) @@ -341,10 +358,27 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) } else { - // Assume the current position is the origin - GreatCircle.DistAndDir(position, next.Position!, out Length distance, out Angle direction); - _currentOrigin = new RoutePoint("Goto", 1, 1, "Origin", position, direction, - distance); + // Try to guess the origin (could it be the last waypoint used?) + var possiblyPreviousName = _waypointsUsedInRmb.LastOrDefault(x => x != next.WaypointName); + if (possiblyPreviousName != null && next.Position != null && _cache.TryGetLastSentence(BearingOriginToDestination.Id, + out BearingOriginToDestination? bodReceived) && _cache.TryGetWayPoint(possiblyPreviousName, out var possiblyPrevious)) + { + GreatCircle.DistAndDir(possiblyPrevious.Position, next.Position, out var distance2, out var direction2); + if (AngleExtensions.Difference(bodReceived.BearingTrue, direction2) < Angle.FromDegrees(2)) + { + _currentOrigin = new RoutePoint("Goto", 0, 2, possiblyPreviousName, possiblyPrevious.Position, direction2, distance2); + } + } + + if (_currentOrigin == null) + { + // still not found? + // Assume the current position is the origin + GreatCircle.DistAndDir(position, next.Position!, out Length distance, out Angle direction); + _currentOrigin = new RoutePoint("Goto", 0, 2, "Origin", position, direction, + distance); + } + previous = _currentOrigin; } } @@ -359,6 +393,7 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) // No position for next waypoint OperationState = AutopilotErrorState.InvalidNextWaypoint; NextWaypoint = null; + PreviousWaypoint = null; // Note: Possibly reached destination return; } @@ -387,9 +422,10 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) } NextWaypoint = next; + PreviousWaypoint = previous; List sentencesToSend = new List(); RecommendedMinimumNavToDestination rmb = new RecommendedMinimumNavToDestination(now, - crossTrackError, previousWayPoint, nextWayPoint, nextPosition, distanceToNext, bearingCurrentToDestination, + crossTrackError, previous?.WaypointName ?? string.Empty, next.WaypointName, nextPosition, distanceToNext, bearingCurrentToDestination, approachSpeedToWayPoint, passedWp); CrossTrackError xte = new CrossTrackError(crossTrackError); @@ -398,19 +434,33 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) TrackMadeGood vtg = new TrackMadeGood(track, AngleExtensions.TrueToMagnetic(track, variation), sog); - BearingAndDistanceToWayPoint bwc = new BearingAndDistanceToWayPoint(now, nextWayPoint, nextPosition, distanceToNext, + BearingAndDistanceToWayPoint bwc = new BearingAndDistanceToWayPoint(now, next.WaypointName, nextPosition, distanceToNext, bearingCurrentToDestination, AngleExtensions.TrueToMagnetic(bearingCurrentToDestination, variation)); BearingOriginToDestination bod = new BearingOriginToDestination(bearingOriginToDestination, AngleExtensions.TrueToMagnetic( - bearingOriginToDestination, variation), previousWayPoint, nextWayPoint); + bearingOriginToDestination, variation), previous?.WaypointName ?? string.Empty, next.WaypointName); - sentencesToSend.AddRange(new NmeaSentence[] { rmb, xte, vtg, bwc, bod }); + // Suppress RMB and BOD output for a time, until the master sends us + // an update. + // TODO: Make configurable + if (OperationState == AutopilotErrorState.DirectGoto && currentLeg != null && currentLeg.AgeTo(now) > TimeSpan.FromSeconds(30)) + { + sentencesToSend.AddRange(new NmeaSentence[] + { + xte, vtg, bwc + }); + } + else + { + sentencesToSend.AddRange(new NmeaSentence[] + { + rmb, xte, vtg, bwc, bod + }); + } if (loops % 2 == 0) { // Only send these once a second - IEnumerable rte; - IEnumerable wpt; if (currentRoute == null || currentRoute.Count == 0) { currentRoute = new List(); @@ -428,6 +478,9 @@ internal void CalculateNewStatus(int loops, DateTimeOffset now) // This should actually always contain at least two points now (origin and current target) if (currentRoute.Count > 0) { + IEnumerable rte; + IEnumerable wpt; + CreateRouteMessages(currentRoute, out rte, out wpt); sentencesToSend.AddRange(wpt); sentencesToSend.AddRange(rte); diff --git a/src/devices/Nmea0183/FilterRule.cs b/src/devices/Nmea0183/FilterRule.cs index 4bd67a09d6..b1810891fb 100644 --- a/src/devices/Nmea0183/FilterRule.cs +++ b/src/devices/Nmea0183/FilterRule.cs @@ -8,6 +8,16 @@ namespace Iot.Device.Nmea0183 { + /// + /// Delegate used for message filtering. + /// + /// The source of the message that is being inspected + /// The destination to which we intend to send the message + /// The message in question + /// The original message or a modified message, or null if the message should be suppressed for this target. + public delegate NmeaSentence? ForwardingActionHandler( + NmeaSinkAndSource source, NmeaSinkAndSource destination, NmeaSentence originalMessage); + /// /// A filter rule for the . /// @@ -25,8 +35,8 @@ public class FilterRule /// The filter matches raw messages only. This is the default, because otherwise known message /// types would be implicitly duplicated on forwarding /// True to continue processing after a match, false to stop processing this message - public FilterRule(string sourceName, TalkerId talkerId, SentenceId sentenceId, IEnumerable sinks, bool rawMessagesOnly = true, - bool continueAfterMatch = false) + public FilterRule(string sourceName, TalkerId talkerId, SentenceId sentenceId, IEnumerable sinks, bool rawMessagesOnly, + bool continueAfterMatch) { _rawMessagesOnly = rawMessagesOnly; SourceName = sourceName; @@ -49,8 +59,8 @@ public FilterRule(string sourceName, TalkerId talkerId, SentenceId sentenceId, I /// types would be implicitly duplicated on forwarding /// True to continue processing after a match, false to stop processing this message public FilterRule(string sourceName, TalkerId talkerId, SentenceId sentenceId, IEnumerable sinks, - Func forwardingAction, bool rawMessagesOnly = true, - bool continueAfterMatch = false) + ForwardingActionHandler? forwardingAction, bool rawMessagesOnly, + bool continueAfterMatch) { _rawMessagesOnly = rawMessagesOnly; SourceName = sourceName; @@ -87,11 +97,11 @@ public FilterRule(string sourceName, TalkerId talkerId, SentenceId sentenceId, I /// Note that the input message shall not be modified, clone it if necessary. /// The return value can be null to suppress the message. That way, advanced filter testing can be done using this callback. /// - public Func? ForwardingAction { get; } + public ForwardingActionHandler? ForwardingAction { get; } /// /// If this is true, filter testing is continued even after a match. - /// If it is false (the default), no further filters are tested after the first match (which typically means + /// If it is false no further filters are tested after the first match (which typically means /// that a message is only matching one filter) /// public bool ContinueAfterMatch { get; } diff --git a/src/devices/Nmea0183/Identification.Extra.cs b/src/devices/Nmea0183/Identification.Extra.cs index 2f4b7222cd..20fd659c4c 100644 --- a/src/devices/Nmea0183/Identification.Extra.cs +++ b/src/devices/Nmea0183/Identification.Extra.cs @@ -5,8 +5,37 @@ namespace Iot.Device.Nmea0183 { + /// + /// Identifies a ship or radio station by its name, callsign or MMSI + /// public partial class Identification : IEquatable { + /// + /// Create an empty instance of this class + /// + internal Identification() + { + shipNameField = string.Empty; + callsignField = string.Empty; + mMSIField = string.Empty; + calibrationDateField = DateTime.UtcNow; + } + + /// + /// Creates an identifier for a ship + /// + /// The name of the vessel + /// The callsign (should only be letters and digits) + /// The MMSI (9 digits) + /// A date associated with the ship (meaning depends on context) + public Identification(string shipName, string callsign, string Mmsi, DateTime date) + { + ShipName = shipName; + Callsign = callsign; + MMSI = Mmsi; + CalibrationDate = date; + } + /// public bool Equals(Identification? other) { @@ -23,7 +52,7 @@ public bool Equals(Identification? other) return shipNameField == other.shipNameField && callsignField == other.callsignField && mMSIField == other.mMSIField - && calibrationDateField.Equals(other.calibrationDateField); + && calibrationDateField.Date.Equals(other.calibrationDateField.Date); } /// diff --git a/src/devices/Nmea0183/LoggingSink.cs b/src/devices/Nmea0183/LoggingSink.cs index 854f3d4ed0..9e417c25e8 100644 --- a/src/devices/Nmea0183/LoggingSink.cs +++ b/src/devices/Nmea0183/LoggingSink.cs @@ -90,7 +90,11 @@ private void StartNewFile() _textWriter = new StreamWriter(_logFile); } - /// + /// + /// "Sends" the message to the logger, that means logs it (as input from the given source) + /// + /// Source from where the message originated + /// The message public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentence) { lock (_lock) @@ -102,9 +106,7 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc // But log all AIS messages, they come as raw only if ((_lastSentence.SentenceId != sentence.SentenceId && _lastSentence.TalkerId != sentence.TalkerId) || !(sentence is RawSentence) || sentence.TalkerId == TalkerId.Ais) { - string msg = FormattableString.Invariant( - $"{DateTime.UtcNow:s}|{source.InterfaceName}|${sentence.TalkerId}{sentence.SentenceId},{sentence.ToNmeaParameterList()}|{sentence.ToReadableContent()}"); - _textWriter.WriteLine(msg); + LogMessage("<<<" + source.InterfaceName, sentence); } if ((_logFile.Length > Configuration.MaxFileSize) && (Configuration.MaxFileSize != 0)) @@ -117,6 +119,29 @@ public override void SendSentence(NmeaSinkAndSource source, NmeaSentence sentenc } } + /// + /// Writes the message to the log. Note: Caller must own the lock. + /// + private void LogMessage(string sourceName, NmeaSentence sentence) + { + string msg = FormattableString.Invariant( + $"{DateTime.UtcNow:s}|{sourceName}|${sentence.TalkerId}{sentence.SentenceId},{sentence.ToNmeaParameterList()}|{sentence.ToReadableContent()}"); + _textWriter?.WriteLine(msg); + } + + /// + /// Logs the given message as outgoing on that sink + /// + /// Interface where the message is being sent to + /// The message + public void LogSendMessage(NmeaSinkAndSource destination, NmeaSentence message) + { + lock (_lock) + { + LogMessage(">>>" + destination.InterfaceName, message); + } + } + /// public override void StopDecode() { diff --git a/src/devices/Nmea0183/MagneticDeviationCorrection.cs b/src/devices/Nmea0183/MagneticDeviationCorrection.cs index d0a68f4374..ba7bbc87b1 100644 --- a/src/devices/Nmea0183/MagneticDeviationCorrection.cs +++ b/src/devices/Nmea0183/MagneticDeviationCorrection.cs @@ -85,7 +85,7 @@ public Identification? Identification /// The recorded nmea file (from a logged session) public void CreateCorrectionTable(string file) { - CreateCorrectionTable(new[] { file }, DateTimeOffset.MinValue, DateTimeOffset.MaxValue); + CreateCorrectionTable(new[] { file }, DateTimeOffset.MinValue, DateTimeOffset.MaxValue, Angle.FromDegrees(30)); } /// @@ -96,7 +96,7 @@ public void CreateCorrectionTable(string file) /// The recorded nmea stream (from a logged session) public void CreateCorrectionTable(Stream stream) { - CreateCorrectionTable(new[] { stream }, DateTimeOffset.MinValue, DateTimeOffset.MaxValue); + CreateCorrectionTable(new[] { stream }, DateTimeOffset.MinValue, DateTimeOffset.MaxValue, Angle.FromDegrees(30)); } /// @@ -107,7 +107,9 @@ public void CreateCorrectionTable(Stream stream) /// The recorded nmea files (from a logged session) /// The start time of the calibration loops /// The end time of the calibration loops - public void CreateCorrectionTable(string[] fileSet, DateTimeOffset beginCalibration, DateTimeOffset endCalibration) + /// The maximum expected deviation. Throws an warning when exceeded at some point + /// A list of observed warnings + public List CreateCorrectionTable(string[] fileSet, DateTimeOffset beginCalibration, DateTimeOffset endCalibration, Angle maxValidDeviation) { Stream[] streams = new Stream[fileSet.Length]; for (int i = 0; i < fileSet.Length; i++) @@ -115,12 +117,14 @@ public void CreateCorrectionTable(string[] fileSet, DateTimeOffset beginCalibrat streams[i] = new FileStream(fileSet[i], FileMode.Open); } - CreateCorrectionTable(streams, beginCalibration, endCalibration); + var result = CreateCorrectionTable(streams, beginCalibration, endCalibration, maxValidDeviation); foreach (var s in streams) { s.Dispose(); } + + return result; } /// @@ -131,8 +135,9 @@ public void CreateCorrectionTable(string[] fileSet, DateTimeOffset beginCalibrat /// The recorded nmea files (from a logged session) /// The start time of the calibration loops /// The end time of the calibration loops + /// The maximum expected deviation. Throws an warning when exceeded at some point /// A list of observed warnings - public List CreateCorrectionTable(Stream[] fileSet, DateTimeOffset beginCalibration, DateTimeOffset endCalibration) + public List CreateCorrectionTable(Stream[] fileSet, DateTimeOffset beginCalibration, DateTimeOffset endCalibration, Angle maxValidDeviation) { _interestingSentences.Clear(); _magneticVariation = Angle.Zero; @@ -278,7 +283,7 @@ void MessageFilter(NmeaSinkAndSource nmeaSinkAndSource, NmeaSentence nmeaSentenc } else { - if (Math.Abs(pt.Deviation + averageOffset) > 30) + if (Math.Abs(pt.Deviation + averageOffset) > maxValidDeviation.Degrees) { warnings.Add($"Your magnetic compass shows deviations of {pt.Deviation + averageOffset} degrees. Use a better installation location or buy a new one."); } diff --git a/src/devices/Nmea0183/MessageRouter.cs b/src/devices/Nmea0183/MessageRouter.cs index 5e5e2d8151..cd59b560f1 100644 --- a/src/devices/Nmea0183/MessageRouter.cs +++ b/src/devices/Nmea0183/MessageRouter.cs @@ -32,7 +32,7 @@ public sealed class MessageRouter : NmeaSinkAndSource private readonly Dictionary _sourcesAndSinks; private List _filterRules; private bool _localInterfaceActive; - private NmeaSinkAndSource _loggingSink; + private LoggingSink _loggingSink; /// /// Creates a message router, optionally configuring the logging options @@ -55,6 +55,18 @@ public MessageRouter(LoggingConfiguration? loggingConfiguration = null) } _filterRules = new List(); + _filterRules.Add(new FilterRule("*", TalkerId.Any, SentenceId.Any, new[] { MessageRouter.LoggingSinkName }, + (source, destination, message) => + { + if (source != null && source.LogReceive) + { + return message; + } + else + { + return null; + } + }, false, true)); _localInterfaceActive = true; } @@ -121,17 +133,20 @@ private void SendSentenceToFilterItems(NmeaSinkAndSource source, NmeaSentence se continue; } + var newMsg = sentence; if (filter.ForwardingAction != null) { - var newMsg = filter.ForwardingAction(source, sink, sentence); - if (newMsg != null) - { - sink.SendSentence(source, newMsg); - } + newMsg = filter.ForwardingAction(source, sink, sentence); } - else + + if (newMsg != null) { - sink.SendSentence(source, sentence); + if (sink.LogSend) + { + _loggingSink.LogSendMessage(sink, newMsg); + } + + sink.SendSentence(source, newMsg); } } } diff --git a/src/devices/Nmea0183/NmeaSinkAndSource.cs b/src/devices/Nmea0183/NmeaSinkAndSource.cs index ed919d6005..3cc73de3d7 100644 --- a/src/devices/Nmea0183/NmeaSinkAndSource.cs +++ b/src/devices/Nmea0183/NmeaSinkAndSource.cs @@ -42,6 +42,8 @@ public abstract class NmeaSinkAndSource : IDisposable protected NmeaSinkAndSource(string interfaceName) { InterfaceName = interfaceName; + LogReceive = true; + LogSend = false; } /// @@ -52,6 +54,24 @@ public string InterfaceName get; } + /// + /// True (the default) to log any input from this interface. + /// + public bool LogReceive + { + get; + set; + } + + /// + /// True to log any sends on this interface. The default is false. + /// + public bool LogSend + { + get; + set; + } + /// /// Start receiving messages from this interface. /// An implementation should open streams, connect to sockets or create receiver threads, as appropriate. diff --git a/src/devices/Nmea0183/SentenceCache.cs b/src/devices/Nmea0183/SentenceCache.cs index d5b1b88a0d..e0e2b6c12d 100644 --- a/src/devices/Nmea0183/SentenceCache.cs +++ b/src/devices/Nmea0183/SentenceCache.cs @@ -6,6 +6,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Text; +using System.Threading; using Iot.Device.Common; using Iot.Device.Nmea0183.Sentences; using Microsoft.Extensions.Logging; @@ -17,6 +18,7 @@ namespace Iot.Device.Nmea0183 /// Caches the last sentence(s) of each type for later retrieval. /// This is a helper class for and . Use to query the position from /// the most appropriate messages. + /// It internally keeps two kinds of lists: The last sentence of each type and the last sentence of each type _by source_. /// public sealed class SentenceCache : IDisposable { @@ -28,11 +30,11 @@ public sealed class SentenceCache : IDisposable private readonly Dictionary> _sentencesBySource; private readonly ILogger _logger; - private long _ticksLastCleanup; private Queue _lastRouteSentences; private Dictionary _wayPoints; private Queue _lastSatelliteInfos; private Dictionary _xdrData; + private TalkerId _magneticDeviationProvider = TalkerId.Any; private SentenceId[] _groupSentences = new SentenceId[] { @@ -63,7 +65,6 @@ public SentenceCache(NmeaSinkAndSource source) _logger = this.GetCurrentClassLogger(); _source.OnNewSequence += OnNewSequence; MaxDataAge = TimeSpan.FromSeconds(30); - _ticksLastCleanup = 0; } /// @@ -85,6 +86,15 @@ public TimeSpan MaxDataAge set; } + /// + /// The magnetic variation at the current location. Positive when easterly, negative when westerly. + /// + public Angle? MagneticVariation + { + get; + private set; + } + /// /// Clears the cache /// @@ -97,6 +107,8 @@ public void Clear() _wayPoints.Clear(); _lastSatelliteInfos.Clear(); _sentencesBySource.Clear(); + MagneticVariation = null; + _magneticDeviationProvider = TalkerId.Any; } } @@ -195,6 +207,21 @@ public bool TryGetLastSentence(SentenceId id, } } + /// + /// Let's the cache remember this waypoint. + /// The method can be called multiple times to update a waypoint (e.g. new position with same name) + /// + /// The waypoint. Must have a valid name. + public void AddWayPoint(Waypoint wpt) + { + ArgumentNullException.ThrowIfNull(wpt); + ArgumentException.ThrowIfNullOrWhiteSpace(wpt.Name); + lock (_lock) + { + _wayPoints[wpt.Name] = wpt; + } + } + private void OnNewSequence(NmeaSinkAndSource? source, NmeaSentence sentence) { // Cache only valid sentences @@ -238,7 +265,8 @@ private void OnNewSequence(NmeaSinkAndSource? source, NmeaSentence sentence) _sentencesBySource[sourceName] = d; } } - else if (sentence.SentenceId == RoutePart.Id && (sentence is RoutePart rte)) + + if (sentence.SentenceId == RoutePart.Id && (sentence is RoutePart rte)) { _lastRouteSentences.Enqueue(rte); while (_lastRouteSentences.Count > 100) @@ -272,6 +300,16 @@ private void OnNewSequence(NmeaSinkAndSource? source, NmeaSentence sentence) { _dinData[din.Identifier] = din; } + else if (sentence.SentenceId == RecommendedMinimumNavigationInformation.Id && (sentence is RecommendedMinimumNavigationInformation rmc)) + { + // Once we received one such value, always use that provider. Otherwise we might get confused + // by different sources with varying variance models. + if (rmc.MagneticVariationInDegrees.HasValue && (_magneticDeviationProvider == rmc.TalkerId || _magneticDeviationProvider == TalkerId.Any)) + { + MagneticVariation = rmc.MagneticVariationInDegrees.Value; + _magneticDeviationProvider = sentence.TalkerId; + } + } } } @@ -285,12 +323,40 @@ public void Dispose() } /// - /// Adds the given sentence to the cache - if manual filling is preferred + /// Adds the given sentence explicitly to the cache + /// + /// The source of the sentence + /// The sentence + public void Add(NmeaSinkAndSource source, NmeaSentence sentence) + { + OnNewSequence(source, sentence); + } + + /// + /// Adds a sentence to the cache, but only to the list of sentences from this particular source, + /// so the message will not override the effect of a call. /// - /// Sentence to add - public void Add(NmeaSentence sentence) + /// The source. Must be non-null + /// The sentence. Must be non-null + public void AddFromSource(NmeaSinkAndSource source, NmeaSentence sentence) { - OnNewSequence(null, sentence); + ArgumentNullException.ThrowIfNull(source); + ArgumentNullException.ThrowIfNull(sentence); + string sourceName = source.InterfaceName; + lock (_lock) + { + // We already own the lock to do that a bit more complex update. + if (_sentencesBySource.TryGetValue(sourceName, out var dict)) + { + dict[sentence.SentenceId] = sentence; + } + else + { + var d = new Dictionary(); + d[sentence.SentenceId] = sentence; + _sentencesBySource[sourceName] = d; + } + } } /// @@ -410,10 +476,9 @@ public bool QuerySatellitesInView(out List sats) private void CleanOutdatedEntries() { - var now = Environment.TickCount64; - if (_ticksLastCleanup < Environment.TickCount64 - 5000) + if (MaxDataAge == Timeout.InfiniteTimeSpan) { - _ticksLastCleanup = now; + return; } lock (_lock) @@ -424,6 +489,7 @@ private void CleanOutdatedEntries() if (entry.Value.Age > MaxDataAge) { _sentences.Remove(entry.Key); + _logger.LogInformation($"Discarding outdated entries of type {entry.Key}"); } } diff --git a/src/devices/Nmea0183/Sentences/RawSentence.cs b/src/devices/Nmea0183/Sentences/RawSentence.cs index 184b1c5f9c..2d553eb56b 100644 --- a/src/devices/Nmea0183/Sentences/RawSentence.cs +++ b/src/devices/Nmea0183/Sentences/RawSentence.cs @@ -39,7 +39,7 @@ public bool IsAisSentence { get { - return TalkerId == TalkerId.Ais && (SentenceId == AisParser.VdmId || SentenceId == AisParser.VdoId); + return TalkerId == TalkerId.Ais && (SentenceId == SentenceId.Vdm || SentenceId == SentenceId.Vdo); } } diff --git a/src/devices/Nmea0183/Sentences/WaterSpeedAndAngle.cs b/src/devices/Nmea0183/Sentences/WaterSpeedAndAngle.cs index f0fff04c50..2ebc91ffca 100644 --- a/src/devices/Nmea0183/Sentences/WaterSpeedAndAngle.cs +++ b/src/devices/Nmea0183/Sentences/WaterSpeedAndAngle.cs @@ -23,7 +23,7 @@ public class WaterSpeedAndAngle : NmeaSentence private static bool Matches(TalkerSentence sentence) => Matches(sentence.Id); /// - /// Constructs a new MWV sentence + /// Constructs a new VHW sentence /// public WaterSpeedAndAngle(Angle? headingTrue, Angle? headingMagnetic, Speed speed) : base(OwnTalkerId, Id, DateTimeOffset.UtcNow) @@ -122,11 +122,11 @@ public override string ToNmeaParameterList() if (Valid) { // It seems that angles should always be written 0..360. - string normalizedT = HeadingTrue.HasValue ? HeadingTrue.Value.Normalize(true).ToString("F1", CultureInfo.InvariantCulture) : string.Empty; - string normalizedM = HeadingMagnetic.HasValue ? HeadingMagnetic.Value.Normalize(true).ToString("F1", CultureInfo.InvariantCulture) : string.Empty; + string normalizedT = HeadingTrue.HasValue ? HeadingTrue.Value.Normalize(true).Degrees.ToString("F1", CultureInfo.InvariantCulture) : string.Empty; + string normalizedM = HeadingMagnetic.HasValue ? HeadingMagnetic.Value.Normalize(true).Degrees.ToString("F1", CultureInfo.InvariantCulture) : string.Empty; - // This ends with a comma. What extra parameter is expected there is unclear - return FormattableString.Invariant($"{normalizedT},T,{normalizedM},M,{Speed.Knots:F1},N,{Speed.KilometersPerHour:F1},K,"); + // The extra "A" at the end means "valid", but it's optional + return FormattableString.Invariant($"{normalizedT},T,{normalizedM},M,{Speed.Knots:F1},N,{Speed.KilometersPerHour:F1},K,A"); } return string.Empty; diff --git a/src/devices/Nmea0183/TalkerId.cs b/src/devices/Nmea0183/TalkerId.cs index 229a55422f..ecc95ed23e 100644 --- a/src/devices/Nmea0183/TalkerId.cs +++ b/src/devices/Nmea0183/TalkerId.cs @@ -258,6 +258,11 @@ public bool Equals(TalkerId other) /// TalkerId instance public static TalkerId WeatherInstruments => new TalkerId('W', 'I'); + /// + /// Nmea2000 to Nmea0183 bridges from Yacht Devices use this talker by default. + /// + public static TalkerId YachtDevicesInterface => new TalkerId('Y', 'D'); + /// /// Transducer /// diff --git a/src/devices/Nmea0183/TalkerSentence.cs b/src/devices/Nmea0183/TalkerSentence.cs index dc4581aac0..e5573d6fdc 100644 --- a/src/devices/Nmea0183/TalkerSentence.cs +++ b/src/devices/Nmea0183/TalkerSentence.cs @@ -101,7 +101,10 @@ static TalkerSentence() /// public IEnumerable Fields => _fields; - /// + /// + /// Converts the current message to NMEA format + /// + /// An NMEA0183 sentence, including checksum, ready to be sent public override string ToString() { string mainPart = string.Format(CultureInfo.InvariantCulture, "{0}{1},{2}", TalkerId, Id, string.Join(",", Fields)); @@ -220,7 +223,7 @@ public TalkerSentence(NmeaSentence sentence) } int firstComma = sentence.IndexOf(',', 1); - if (firstComma == -1) + if (firstComma <= 3) { errorCode = NmeaError.MessageToShort; return null; diff --git a/src/devices/Nmea0183/tests/Ais/AisManagerTest.cs b/src/devices/Nmea0183/tests/Ais/AisManagerTest.cs index 2df36cef54..75f072f47f 100644 --- a/src/devices/Nmea0183/tests/Ais/AisManagerTest.cs +++ b/src/devices/Nmea0183/tests/Ais/AisManagerTest.cs @@ -162,9 +162,9 @@ public void CheckSafety1() } [Theory] - [InlineData(600, 1852, 18)] // Default settings + [InlineData(600, 1852, 2)] // Default settings [InlineData(600, 0, 0)] // Warning distance zero -> No warnings - [InlineData(10, 1852, 34)] // Very short warning timeout -> Many warnings + [InlineData(10, 1852, 7)] // Very short warning timeout -> Many warnings public void CheckSafetyPermanently(int warningRepeatSeconds, int warningDistance, int expectedWarningCount) { // This does a safety check all the time. Very expensive... @@ -172,7 +172,8 @@ public void CheckSafetyPermanently(int warningRepeatSeconds, int warningDistance List messages = new List(); List warnings = new List(); _manager.TrackEstimationParameters.AisSafetyCheckInterval = TimeSpan.Zero; - _manager.TrackEstimationParameters.WarningDistance = Length.FromMeters(warningDistance); + _manager.TrackEstimationParameters.WarningDistanceLargeVessels = Length.FromMeters(warningDistance); + _manager.TrackEstimationParameters.WarningDistanceSmallVessels = Length.FromMeters(warningDistance) / 2; _manager.TrackEstimationParameters.WarningRepeatTimeout = TimeSpan.FromSeconds(warningRepeatSeconds); _manager.OnMessage += (received, sourceMmsi, destinationMmsi, text) => { @@ -220,26 +221,6 @@ public void CheckSafetyPermanently(int warningRepeatSeconds, int warningDistance Assert.Equal(8258.7, ship.RelativePosition.Distance.Meters, 1); } - [Fact] - public void EnableDisableBackgroundThread() - { - ManualResetEvent ev = new ManualResetEvent(false); - _manager.OnMessage += (received, sourceMmsi, destinationMmsi, text) => - { - if (text.Contains("GNSS")) - { - ev.Set(); - } - }; - - _manager.ClearWarnings(); - _manager.EnableAisAlarms(true, new TrackEstimationParameters() { AisSafetyCheckInterval = TimeSpan.Zero, WarnIfGnssMissing = true }); - - // Fails if we actually hit the timeout - Assert.True(ev.WaitOne(TimeSpan.FromSeconds(30))); - _manager.EnableAisAlarms(false); - } - [Fact] public void UseOfWithWorksCorrectly() { diff --git a/src/devices/Nmea0183/tests/Ais/PositionReportClassAMessageTests.cs b/src/devices/Nmea0183/tests/Ais/PositionReportClassAMessageTests.cs index c40bda1fe5..08db42721a 100644 --- a/src/devices/Nmea0183/tests/Ais/PositionReportClassAMessageTests.cs +++ b/src/devices/Nmea0183/tests/Ais/PositionReportClassAMessageTests.cs @@ -168,7 +168,7 @@ public void ShouldParseAndSerializeMessage() { const string sentence = "!AIVDM,1,1,,A,15Mq4J0P01EREODRv4@74gv00HRq,0*71"; - Parser.GeneratedSentencesId = AisParser.VdmId; + Parser.GeneratedSentencesId = SentenceId.Vdm; var message = Parser.Parse(sentence) as PositionReportClassAMessage; message.ShouldNotBeNull(); message.MessageType.ShouldBe(AisMessageType.PositionReportClassA); diff --git a/src/devices/Nmea0183/tests/Ais/StaticAndVoyageRelatedDataMessageTests.cs b/src/devices/Nmea0183/tests/Ais/StaticAndVoyageRelatedDataMessageTests.cs index e2704b4364..46a5e37fec 100644 --- a/src/devices/Nmea0183/tests/Ais/StaticAndVoyageRelatedDataMessageTests.cs +++ b/src/devices/Nmea0183/tests/Ais/StaticAndVoyageRelatedDataMessageTests.cs @@ -210,10 +210,11 @@ public void Should_parse_message_libais_30() [Fact] public void Should_parse_message_libais_32() { - const string sentence1 = "!AIVDM,2,1,1,A,55>u@H02;lGc x.SendSentences(It.IsNotNull>())).Callback>( outputSentence => @@ -157,10 +160,98 @@ public void CalculationLoopWithExternalInputRmbOnly() Assert.Equal(expectedOutput[index], txt); index++; } + + outputReceived = true; }); ParseSequencesAndAddToCache(inputSequences); _autopilot.CalculateNewStatus(0, now); + Assert.True(outputReceived); + } + + [Fact] + public void CalculationLoopWithExternalInputRmbOnlyReconstructLastWp() + { + _autopilot.SentenceCache.MaxDataAge = Timeout.InfiniteTimeSpan; // because the data is in the past + string[] inputSequences = + { + // Messages in a typical scenario, where an external GPS sends just an RMB, but no waypoints + "$GPBOD,244.8,T,242.9,M,R4,", + "$GPRMB,A,0.50,L,,R4,4728.8150,N,00929.9999,E,0.737,201.6,-1.7,V,D", + "$GPRMC,115615.000,A,4729.49810,N,00930.39910,E,1.600,38.500,240520,1.900,E,D", + "$HCHDG,30.9,,,1.9,E", + "$GPXTE,A,A,0.500,L,N,D", + "$GPVTG,38.5,T,36.6,M,1.6,N,3.0,K,A" + }; + + string[] inputSequences2 = + { + // Message set after switching legs + "$GPBOD,244.8,T,242.9,M,R5,", + "$GPRMB,A,0.50,L,Origin,R5,4728.8250,N,00930.0000,E,0.737,201.6,-1.7,V,D", + "$GPRMC,115615.000,A,4730.49810,N,00930.39910,E,1.600,38.500,240520,1.900,E,D", + "$HCHDG,30.9,,,1.9,E", + "$GPXTE,A,A,0.400,L,N,D", + "$GPVTG,38.5,T,36.6,M,1.6,N,3.0,K,A" + }; + + // Similar to input, except with added accuracy and some additional messages + // (even though quite a bit of the information is redundant across messages) + string[] expectedOutput = + { + // This becomes the origin, so cross track error is 0 + "$GPRMB,A,0.000,R,Origin,R4,4728.81500,N,00929.99990,E,0.735,201.6,-1.5,V,D", + "$GPXTE,A,A,0.000,R,N,D", + "$GPVTG,38.5,T,36.6,M,1.6,N,3.0,K,A", + "$GPBWC,183758.833,4728.81500,N,00929.99990,E,201.6,T,199.7,M,0.735,N,R4,D", + "$GPBOD,201.6,T,199.7,M,R4,Origin", + "$GPWPL,4729.49810,N,00930.39910,E,Origin", + "$GPWPL,4728.81500,N,00929.99990,E,R4", + "$GPRTE,1,1,c,Goto,Origin,R4" + }; + + string[] expectedOutput2 = + { + // This becomes the origin, so cross track error is 0 + "$GPRMB,A,0.259,L,R4,R5,4728.82500,N,00930.00000,E,1.696,189.2,-1.4,V,D", + "$GPXTE,A,A,0.259,L,N,D", + "$GPVTG,38.5,T,36.6,M,1.6,N,3.0,K,A", + "$GPBWC,183759.833,4728.82500,N,00930.00000,E,189.2,T,187.3,M,1.696,N,R5,D", + "$GPBOD,0.4,T,358.5,M,R5,R4", + "$GPWPL,4729.49810,N,00930.39910,E,R4", + "$GPWPL,4728.81500,N,00929.99990,E,R5", + "$GPRTE,1,1,c,Goto,R4,R5" + }; + + var expectedHere = expectedOutput; + DateTimeOffset now = new DateTimeOffset(2020, 05, 31, 18, 37, 58, 833, TimeSpan.Zero); + _output.Setup(x => x.SendSentences(It.IsNotNull>())).Callback>( + outputSentence => + { + // Check that the messages that should be sent are equal to what's defined above + Assert.True(outputSentence.Any()); + int index = 0; + foreach (var msg in outputSentence) + { + string txt = msg.ToNmeaParameterList(); + txt = $"${TalkerId.GlobalPositioningSystem}{msg.SentenceId},{txt}"; + Assert.Equal(expectedHere[index], txt); + index++; + } + }); + + ParseSequencesAndAddToCache(inputSequences); + _autopilot.CalculateNewStatus(0, now); + Assert.Equal(AutopilotErrorState.DirectGoto, _autopilot.OperationState); + Assert.Equal("Origin", _autopilot.PreviousWaypoint?.WaypointName); + Assert.Equal("R4", _autopilot.NextWaypoint?.WaypointName); + + expectedHere = expectedOutput2; + ParseSequencesAndAddToCache(inputSequences2); + _autopilot.CalculateNewStatus(1, now + TimeSpan.FromSeconds(1)); + Assert.Equal(AutopilotErrorState.DirectGoto, _autopilot.OperationState); + Assert.Equal("R4", _autopilot.PreviousWaypoint?.WaypointName); + Assert.Equal("R5", _autopilot.NextWaypoint?.WaypointName); } private void ParseSequencesAndAddToCache(IEnumerable inputSequences) @@ -172,7 +263,7 @@ private void ParseSequencesAndAddToCache(IEnumerable inputSequences) Assert.Equal(NmeaError.None, error); Assert.NotNull(decoded); var s = decoded.TryGetTypedValue(ref now)!; - _autopilot.SentenceCache.Add(s); + _autopilot.SentenceCache.Add(_source.Object, s); } } @@ -220,7 +311,7 @@ public void FullAutoRouting() private void SetPositionAndTrack(GeographicPosition position, Angle track) { - _autopilot.SentenceCache.Add(new RecommendedMinimumNavigationInformation(DateTimeOffset.Now, NavigationStatus.Valid, + _autopilot.SentenceCache.Add(_source.Object, new RecommendedMinimumNavigationInformation(DateTimeOffset.Now, NavigationStatus.Valid, position, Speed.FromMetersPerSecond(10), track, Angle.FromDegrees(-2))); } } diff --git a/src/devices/Nmea0183/tests/Calibration_Cirrus_2025.xml b/src/devices/Nmea0183/tests/Calibration_Cirrus_2025.xml new file mode 100644 index 0000000000..1b365402ce --- /dev/null +++ b/src/devices/Nmea0183/tests/Calibration_Cirrus_2025.xml @@ -0,0 +1,37675 @@ + + + + Cirrus + HBY5127 + 269110660 + 2025-07-24 + + + + 0.38000017 + 357.41998 + 9.300909 + 8.920909 + 11.880919 + + + 1.4199995 + 354.0645 + 5.3557644 + 3.9357648 + 11.291251 + + + 2.46 + 3.460052 + 14.392878 + 11.932877 + 10.932825 + + + 3.4800003 + 11.784733 + 21.871157 + 18.391157 + 10.086424 + + + 4.44 + 6.3916287 + 16.26132 + 11.82132 + 9.869691 + + + 5.4 + 3.9346063 + 13.404884 + 8.004885 + 9.470278 + + + 6.4 + 13.449769 + 22.26338 + 15.86338 + 8.813611 + + + 7.42 + 8.007607 + 16.35 + 8.93 + 8.342393 + + + 8.35 + 6.416925 + 14.535 + 6.185 + 8.118075 + + + 9.3 + 13.158253 + 20.6879 + 11.3879 + 7.5296474 + + + 10.32 + 10.689481 + 18.088718 + 7.7687187 + 7.3992376 + + + 11.36 + 4.469185 + 11.636948 + 0.27694777 + 7.1677628 + + + 12.4 + 11.882987 + 18.73 + 6.3300004 + 6.847012 + + + 13.4800005 + 7.1988654 + 13.197374 + -0.28262636 + 5.998509 + + + 14.5 + 15.07994 + 20.284584 + 5.784583 + 5.204644 + + + 15.56 + 17.254887 + 21.822325 + 6.262325 + 4.5674386 + + + 16.5 + 16.044155 + 20.15 + 3.65 + 4.105845 + + + 17.38 + 17.338615 + 21.009407 + 3.6294076 + 3.670791 + + + 18.4 + 24.51799 + 27.424692 + 9.024693 + 2.906702 + + + 19.42 + 20.111248 + 22.801746 + 3.381747 + 2.6904984 + + + 20.375 + 22.548464 + 24.56 + 4.185 + 2.0115356 + + + 21.38 + 23.775648 + 25.439941 + 4.059942 + 1.6642927 + + + 22.439999 + 18.326584 + 19.64 + -2.7999995 + 1.3134147 + + + 23.48 + 16.837341 + 17.594307 + -5.8856945 + 0.7569654 + + + 24.46 + 25.770124 + 26.18 + 1.72 + 0.40987653 + + + 25.460001 + 23.981056 + 23.9 + -1.5600002 + -0.08105601 + + + 26.425 + 25.63248 + 24.736423 + -1.688577 + -0.89605784 + + + 27.38 + 35.747715 + 34.107243 + 6.727244 + -1.6404715 + + + 28.44 + 23.320768 + 21.324135 + -7.115865 + -1.9966338 + + + 29.42 + 33.590862 + 31.064718 + 1.6447177 + -2.526144 + + + 30.466667 + 30.659487 + 27.596355 + -2.8703117 + -3.0631306 + + + 31.45 + 35.90951 + 31.926615 + 0.47661495 + -3.9828963 + + + 32.36 + 29.95418 + 25.268509 + -7.0914917 + -4.6856704 + + + 33.42 + 33.019505 + 28.064566 + -5.3554335 + -4.954941 + + + 34.46 + 32.34613 + 26.888506 + -7.571493 + -5.4576235 + + + 35.42 + 37.09594 + 30.895 + -4.525 + -6.20094 + + + 36.36 + 32.209652 + 25.507286 + -10.852714 + -6.7023644 + + + 37.45 + 32.6707 + 25.467314 + -11.982687 + -7.203385 + + + 38.5 + 42.95249 + 34.65 + -3.85 + -8.302489 + + + 39.45 + 45.818005 + 37.354977 + -2.0950246 + -8.463028 + + + 40.433334 + 42.12444 + 32.53836 + -7.894972 + -9.586079 + + + 41.48 + 36.30487 + 26.349924 + -15.130075 + -9.9549465 + + + 42.42 + 42.320564 + 31.721682 + -10.6983185 + -10.598883 + + + 43.433334 + 45.8872 + 34.978664 + -8.454671 + -10.908537 + + + 44.5 + 39.444862 + 28.057966 + -16.442034 + -11.386897 + + + 45.48 + 43.350464 + 31.590353 + -13.889647 + -11.760112 + + + 46.55 + 46.68734 + 34.460083 + -12.089919 + -12.227255 + + + 47.56 + 47.547417 + 35.35 + -12.21 + -12.197417 + + + 48.46 + 44.628563 + 32.10604 + -16.35396 + -12.522524 + + + 49.45 + 51.907967 + 38.96284 + -10.487161 + -12.945126 + + + 50.48 + 42.30561 + 28.540644 + -21.939356 + -13.764966 + + + 51.45 + 55.084938 + 40.833454 + -10.616546 + -14.251485 + + + 52.5 + 54.074547 + 39.453968 + -13.04603 + -14.62058 + + + 53.5 + 54.888165 + 39.90577 + -13.594232 + -14.982397 + + + 54.5 + 54.635925 + 39.099003 + -15.400996 + -15.5369215 + + + 55.45 + 55.65782 + 40.04099 + -15.409012 + -15.616832 + + + 56.44 + 58.117313 + 42.105 + -14.335 + -16.012314 + + + 57.471428 + 63.584145 + 47.245304 + -10.226123 + -16.33884 + + + 58.46 + 56.347492 + 39.650078 + -18.809921 + -16.697412 + + + 59.42857 + 63.407047 + 46.70393 + -12.72464 + -16.703115 + + + 60.466667 + 58.584873 + 41.155 + -19.311666 + -17.429874 + + + 61.466667 + 60.662334 + 43.354794 + -18.111874 + -17.307543 + + + 62.466667 + 57.57955 + 39.585594 + -22.881071 + -17.993958 + + + 63.514286 + 63.591278 + 45.21781 + -18.296474 + -18.373468 + + + 64.53333 + 63.4783 + 44.433636 + -20.099697 + -19.044662 + + + 65.5 + 66.851036 + 47.379856 + -18.120142 + -19.471178 + + + 66.53333 + 64.42727 + 44.338547 + -22.194786 + -20.088724 + + + 67.5 + 69.099205 + 48.55302 + -18.946978 + -20.546186 + + + 68.45 + 69.939384 + 48.71 + -19.74 + -21.229387 + + + 69.34286 + 74.00955 + 52.86912 + -16.473734 + -21.140429 + + + 70.4625 + 66.553764 + 44.71342 + -25.74908 + -21.84034 + + + 71.433334 + 74.31216 + 52.062954 + -19.370378 + -22.249207 + + + 72.45 + 70.22179 + 47.41871 + -25.031292 + -22.803074 + + + 73.5 + 75.42479 + 52.484272 + -21.01573 + -22.940517 + + + 74.4 + 70.207115 + 46.71068 + -27.689322 + -23.496437 + + + 75.4125 + 74.87722 + 51.054688 + -24.357813 + -23.822535 + + + 76.47143 + 72.577 + 48.093933 + -28.377495 + -24.48307 + + + 77.4375 + 78.167145 + 53.495815 + -23.941685 + -24.671328 + + + 78.4375 + 78.96905 + 53.86413 + -24.573372 + -25.104918 + + + 79.4375 + 87.91817 + 62.495747 + -16.941755 + -25.422424 + + + 80.45 + 78.89418 + 53.0272 + -27.422802 + -25.866982 + + + 81.425 + 79.416725 + 53.52715 + -27.897852 + -25.889574 + + + 82.422226 + 79.157036 + 52.679115 + -29.743107 + -26.477919 + + + 83.4625 + 84.199646 + 57.695145 + -25.767357 + -26.5045 + + + 84.45556 + 81.360855 + 54.484753 + -29.970804 + -26.876104 + + + 85.4375 + 85.44639 + 58.489746 + -26.947754 + -26.95664 + + + 86.3875 + 81.46727 + 54.39611 + -31.991388 + -27.071157 + + + 87.36667 + 88.215965 + 61.218468 + -26.148201 + -26.997496 + + + 88.37778 + 87.46941 + 60.32543 + -28.052345 + -27.143982 + + + 89.45 + 90.225685 + 63.042362 + -26.407639 + -27.18332 + + + 90.477776 + 92.31233 + 64.668335 + -25.809443 + -27.643993 + + + 91.45556 + 92.94489 + 65.232025 + -26.22353 + -27.712872 + + + 92.49 + 88.34707 + 60.764404 + -31.725595 + -27.58266 + + + 93.51 + 95.43362 + 67.92049 + -25.589516 + -27.513134 + + + 94.5 + 93.21616 + 65.68059 + -28.819414 + -27.535578 + + + 95.422226 + 93.549095 + 66.04164 + -29.380585 + -27.507456 + + + 96.4 + 97.0973 + 69.63733 + -26.762674 + -27.459969 + + + 97.41 + 97.80108 + 70.57941 + -26.830595 + -27.221668 + + + 98.41 + 98.61717 + 71.392105 + -27.017895 + -27.22507 + + + 99.4 + 101.10211 + 74.000534 + -25.399467 + -27.101576 + + + 100.41818 + 100.90384 + 73.80227 + -26.615913 + -27.101572 + + + 101.45 + 99.55605 + 72.58079 + -28.869211 + -26.975264 + + + 102.43636 + 104.18658 + 77.2729 + -25.163458 + -26.913673 + + + 103.43636 + 101.73297 + 75.153336 + -28.283026 + -26.579638 + + + 104.43 + 104.73599 + 78.19132 + -26.238682 + -26.544668 + + + 105.42727 + 102.41093 + 76.04701 + -29.380259 + -26.363914 + + + 106.46667 + 106.59053 + 80.51616 + -25.950508 + -26.074371 + + + 107.48 + 106.52109 + 80.49291 + -26.987083 + -26.028173 + + + 108.49167 + 108.18884 + 82.272026 + -26.21964 + -25.91682 + + + 109.46364 + 109.72777 + 84.00468 + -25.458956 + -25.723095 + + + 110.490906 + 109.676605 + 84.08336 + -26.407547 + -25.593246 + + + 111.454544 + 113.73718 + 88.29756 + -23.156984 + -25.439625 + + + 112.458336 + 112.73123 + 87.528206 + -24.930128 + -25.203028 + + + 113.43636 + 113.770966 + 88.7255 + -24.71086 + -25.045462 + + + 114.43636 + 114.35518 + 89.58121 + -24.855156 + -24.773968 + + + 115.45385 + 115.075005 + 90.43028 + -25.02356 + -24.644722 + + + 116.472725 + 117.43146 + 93.172516 + -23.300209 + -24.258945 + + + 117.41538 + 115.66278 + 91.622894 + -25.792488 + -24.039885 + + + 118.475 + 117.81262 + 93.98281 + -24.492191 + -23.82981 + + + 119.40833 + 120.044044 + 96.458664 + -22.949667 + -23.585379 + + + 120.42308 + 121.1148 + 97.750435 + -22.67264 + -23.364363 + + + 121.425 + 121.15416 + 98.03515 + -23.389854 + -23.11901 + + + 122.442856 + 121.5275 + 98.54215 + -23.900703 + -22.985348 + + + 123.441666 + 124.383484 + 101.58712 + -21.85455 + -22.796362 + + + 124.43846 + 124.36615 + 101.856804 + -22.58166 + -22.509346 + + + 125.45 + 124.16567 + 101.9255 + -23.5245 + -22.240175 + + + 126.42857 + 127.09121 + 105.149605 + -21.278967 + -21.941603 + + + 127.44615 + 127.865395 + 106.09591 + -21.350248 + -21.76949 + + + 128.42857 + 127.247475 + 105.85308 + -22.575487 + -21.394394 + + + 129.50769 + 129.52621 + 108.42109 + -21.086601 + -21.10512 + + + 130.47693 + 130.42395 + 109.65931 + -20.817614 + -20.764645 + + + 131.4077 + 130.7115 + 110.15252 + -21.25517 + -20.558985 + + + 132.45714 + 132.40486 + 112.10711 + -20.350037 + -20.297758 + + + 133.42308 + 132.55443 + 112.46165 + -20.961432 + -20.092783 + + + 134.32857 + 135.46089 + 115.64505 + -18.68352 + -19.81584 + + + 135.42352 + 135.84381 + 116.220955 + -19.202574 + -19.622854 + + + 136.46924 + 137.18382 + 117.71567 + -18.753565 + -19.468151 + + + 137.44667 + 136.88666 + 117.760864 + -19.6858 + -19.125788 + + + 138.44667 + 139.53558 + 120.53118 + -17.915487 + -19.004406 + + + 139.48572 + 139.75496 + 121.06828 + -18.41743 + -18.686672 + + + 140.45334 + 142.9999 + 124.65362 + -15.799717 + -18.34628 + + + 141.44286 + 141.299 + 123.08908 + -18.353773 + -18.20992 + + + 142.42143 + 142.46938 + 124.517334 + -17.904095 + -17.952045 + + + 143.41333 + 141.53473 + 123.817116 + -19.596218 + -17.71761 + + + 144.45 + 145.83809 + 128.41127 + -16.038725 + -17.42682 + + + 145.46428 + 144.13055 + 126.9353 + -18.52898 + -17.195248 + + + 146.42667 + 143.00732 + 126.15092 + -20.275751 + -16.856411 + + + 147.44615 + 150.03824 + 133.35684 + -14.089317 + -16.681395 + + + 148.43333 + 145.94469 + 129.6321 + -18.801235 + -16.312593 + + + 149.42857 + 149.3291 + 133.5255 + -15.903081 + -15.803612 + + + 150.49374 + 152.2082 + 136.55542 + -13.938326 + -15.6527815 + + + 151.45 + 148.89497 + 133.49588 + -17.954119 + -15.399093 + + + 152.45 + 151.67026 + 136.61023 + -15.839774 + -15.060032 + + + 153.39285 + 152.68402 + 137.96599 + -15.426871 + -14.7180395 + + + 154.44376 + 154.0482 + 139.58888 + -14.854875 + -14.459316 + + + 155.46666 + 155.8262 + 141.64618 + -13.820492 + -14.180025 + + + 156.47333 + 158.31406 + 144.38634 + -12.087002 + -13.927726 + + + 157.44667 + 155.73027 + 142.36845 + -15.078209 + -13.361823 + + + 158.47058 + 159.65634 + 146.52959 + -11.941002 + -13.12676 + + + 159.5 + 164.89177 + 152.27315 + -7.2268543 + -12.618616 + + + 160.4375 + 157.58022 + 145.1875 + -15.249998 + -12.392717 + + + 161.46875 + 163.26645 + 150.99649 + -10.472256 + -12.269954 + + + 162.48 + 163.04376 + 151.2465 + -11.233489 + -11.797262 + + + 163.45334 + 164.23294 + 152.73108 + -10.722251 + -11.501864 + + + 164.42352 + 161.49689 + 150.2605 + -14.163029 + -11.23639 + + + 165.45625 + 166.16039 + 155.28262 + -10.173621 + -10.8777685 + + + 166.44667 + 163.98541 + 153.21597 + -13.230695 + -10.769445 + + + 167.43124 + 169.5985 + 159.03946 + -8.391791 + -10.559033 + + + 168.4125 + 169.41849 + 159.25952 + -9.152973 + -10.158961 + + + 169.44 + 171.09966 + 161.30977 + -8.13023 + -9.789891 + + + 170.48125 + 169.06473 + 159.32205 + -11.159204 + -9.742672 + + + 171.46666 + 169.28564 + 160.10637 + -11.3602915 + -9.179273 + + + 172.41875 + 173.09712 + 164.39116 + -8.027594 + -8.705963 + + + 173.42941 + 172.32391 + 163.79298 + -9.636433 + -8.530935 + + + 174.43529 + 172.80478 + 164.58339 + -9.851902 + -8.221395 + + + 175.48824 + 175.94002 + 168.16441 + -7.3238153 + -7.775608 + + + 176.5125 + 172.43504 + 164.9668 + -11.545706 + -7.4682503 + + + 177.4875 + 176.635 + 169.81915 + -7.668353 + -6.81584 + + + 178.475 + 178.5125 + 171.7983 + -6.6767025 + -6.714203 + + + 179.4647 + 181.74545 + 175.27417 + -4.1905336 + -6.4712753 + + + 180.41176 + 180.38995 + 174.17651 + -6.2352448 + -6.2134438 + + + 181.43333 + 183.99944 + 178.01472 + -3.4186141 + -5.9847054 + + + 182.475 + 187.53581 + 181.94225 + -0.5327491 + -5.5935674 + + + 183.47058 + 181.09453 + 175.91267 + -7.5579085 + -5.1818485 + + + 184.4875 + 185.16788 + 180.26561 + -4.2218976 + -4.902267 + + + 185.48 + 185.45224 + 180.67848 + -4.801514 + -4.7737536 + + + 186.43889 + 187.08054 + 182.71979 + -3.7191074 + -4.360746 + + + 187.41875 + 191.35959 + 187.88867 + 0.46992674 + -3.4709175 + + + 188.44667 + 185.04608 + 182.18925 + -6.257418 + -2.856833 + + + 189.39375 + 187.61345 + 185.34225 + -4.0514936 + -2.2711954 + + + 190.41333 + 189.3304 + 187.69757 + -2.7157602 + -1.6328264 + + + 191.45 + 186.0362 + 185.0943 + -6.3557034 + -0.94189346 + + + 192.45 + 189.53377 + 189.3036 + -3.146389 + -0.23015963 + + + 193.46 + 193.82387 + 194.0785 + 0.61850375 + 0.25463128 + + + 194.47333 + 189.61194 + 190.70811 + -3.765222 + 1.0961791 + + + 195.42667 + 186.49165 + 188.27354 + -7.1531277 + 1.7818941 + + + 196.43333 + 195.35728 + 197.78268 + 1.3493463 + 2.425406 + + + 197.44516 + 201.57881 + 204.58586 + 7.140698 + 3.0070434 + + + 198.44286 + 200.11443 + 203.67027 + 5.227418 + 3.5558417 + + + 199.46297 + 200.61102 + 205.08466 + 5.6216855 + 4.473639 + + + 200.45 + 204.60144 + 209.66522 + 9.215216 + 5.0637856 + + + 201.45714 + 203.82755 + 209.73149 + 8.274349 + 5.9039426 + + + 202.48181 + 207.17775 + 214.00961 + 11.527796 + 6.831861 + + + 203.44827 + 205.4439 + 213.09613 + 9.64786 + 7.6522326 + + + 204.44 + 206.21672 + 214.5546 + 10.114597 + 8.337878 + + + 205.44827 + 206.5026 + 215.62639 + 10.178117 + 9.123802 + + + 206.44815 + 204.88187 + 215.16039 + 8.712234 + 10.278512 + + + 207.46297 + 205.0341 + 215.95824 + 8.495276 + 10.924127 + + + 208.452 + 209.0795 + 220.4467 + 11.994696 + 11.367201 + + + 209.428 + 210.67088 + 222.44432 + 13.016323 + 11.773442 + + + 210.444 + 206.42807 + 218.78558 + 8.341583 + 12.357509 + + + 211.42308 + 213.64432 + 226.35062 + 14.927535 + 12.706305 + + + 212.4077 + 212.44627 + 225.53828 + 13.130588 + 13.09201 + + + 213.45357 + 214.18124 + 227.53499 + 14.081414 + 13.353742 + + + 214.44783 + 215.59967 + 229.46489 + 15.017061 + 13.865219 + + + 215.428 + 213.86629 + 228.16718 + 12.739179 + 14.300891 + + + 216.4375 + 218.81134 + 233.53328 + 17.095781 + 14.721937 + + + 217.42693 + 217.06131 + 232.33417 + 14.907244 + 15.272853 + + + 218.46666 + 219.09254 + 234.91194 + 16.445274 + 15.819396 + + + 219.45653 + 217.11543 + 233.21501 + 13.758487 + 16.099571 + + + 220.42308 + 221.83078 + 238.31015 + 17.887075 + 16.479368 + + + 221.425 + 220.93549 + 237.96494 + 16.53993 + 17.029448 + + + 222.45 + 221.48373 + 238.82414 + 16.374146 + 17.340405 + + + 223.44583 + 222.59425 + 240.47 + 17.024172 + 17.87575 + + + 224.42667 + 226.61397 + 244.81555 + 20.388891 + 18.20158 + + + 225.45209 + 226.24692 + 244.71579 + 19.26371 + 18.468874 + + + 226.43921 + 226.6467 + 245.4593 + 19.020084 + 18.812609 + + + 227.4909 + 228.73427 + 247.77237 + 20.281454 + 19.038109 + + + 228.46666 + 229.11816 + 248.43936 + 19.972687 + 19.3212 + + + 229.33636 + 227.63916 + 247.21475 + 17.878387 + 19.575584 + + + 230.43333 + 231.32393 + 251.42538 + 20.992048 + 20.101461 + + + 231.472 + 230.87367 + 251.36526 + 19.893261 + 20.491592 + + + 232.452 + 233.08589 + 253.90964 + 21.45764 + 20.823753 + + + 233.444 + 236.3902 + 257.8168 + 24.372812 + 21.426603 + + + 234.448 + 233.43257 + 255.37184 + 20.923841 + 21.939272 + + + 235.45186 + 233.58891 + 256.08212 + 20.630262 + 22.493208 + + + 236.44516 + 233.2451 + 256.40277 + 19.957611 + 23.157665 + + + 237.4625 + 235.67482 + 259.29376 + 21.831251 + 23.618948 + + + 238.48108 + 235.5375 + 259.33325 + 20.852158 + 23.795748 + + + 239.51561 + 237.18362 + 261.30298 + 21.787374 + 24.119356 + + + 240.25 + 240.63376 + 265.05188 + 24.801891 + 24.418118 + + + 241.43333 + 242.78877 + 267.51315 + 26.079823 + 24.724375 + + + 242.43333 + 240.79497 + 265.94864 + 23.515312 + 25.153675 + + + 243.44167 + 246.91441 + 272.47565 + 29.033983 + 25.561235 + + + 244.45833 + 246.46042 + 272.24854 + 27.790209 + 25.788109 + + + 245.5 + 251.35577 + 277.52158 + 32.02158 + 26.1658 + + + 246.46364 + 253.15897 + 279.68094 + 33.217304 + 26.52197 + + + 247.45384 + 249.34477 + 276.1609 + 28.707031 + 26.816113 + + + 248.40909 + 245.24261 + 272.40332 + 23.994226 + 27.160702 + + + 249.45 + 248.16959 + 276.21844 + 26.768456 + 28.048862 + + + 250.41 + 246.1451 + 274.56238 + 24.15239 + 28.41729 + + + 251.46428 + 250.39218 + 278.88773 + 27.423445 + 28.495548 + + + 252.48181 + 252.77228 + 281.39038 + 28.908558 + 28.618095 + + + 253.46153 + 254.59262 + 283.47794 + 30.01641 + 28.885311 + + + 254.47 + 254.80125 + 283.60718 + 29.13718 + 28.805918 + + + 255.43333 + 255.66035 + 284.28867 + 28.855333 + 28.628307 + + + 256.46924 + 256.17838 + 284.57907 + 28.109842 + 28.400696 + + + 257.47272 + 255.38545 + 283.60733 + 26.134617 + 28.221874 + + + 258.45 + 259.20798 + 287.5176 + 29.067614 + 28.309631 + + + 259.47272 + 270.40582 + 298.97626 + 39.503525 + 28.57044 + + + 260.43076 + 261.24557 + 289.9551 + 29.524345 + 28.709545 + + + 261.48334 + 258.82193 + 287.92868 + 26.445343 + 29.106749 + + + 262.44547 + 261.68542 + 291.09875 + 28.653313 + 29.413315 + + + 263.45456 + 263.2013 + 292.58136 + 29.126822 + 29.38006 + + + 264.45 + 262.4243 + 291.8167 + 27.366714 + 29.392431 + + + 265.41666 + 260.089 + 289.47705 + 24.060394 + 29.388071 + + + 266.45456 + 264.24213 + 293.6963 + 27.241743 + 29.45416 + + + 267.4091 + 267.23065 + 296.87115 + 29.46207 + 29.6405 + + + 268.44547 + 269.05655 + 298.99536 + 30.54991 + 29.9388 + + + 269.4091 + 268.79303 + 298.88034 + 29.47124 + 30.08731 + + + 270.42728 + 270.49753 + 300.1169 + 29.689646 + 29.61939 + + + 271.44 + 274.1948 + 303.93365 + 32.49365 + 29.738853 + + + 272.38 + 276.12872 + 306.24136 + 33.86135 + 30.112648 + + + 273.44168 + 271.42136 + 301.6519 + 28.210207 + 30.23054 + + + 274.42 + 274.44983 + 304.6962 + 30.276182 + 30.246365 + + + 275.3909 + 274.02863 + 304.43655 + 29.04564 + 30.407927 + + + 276.43637 + 275.83115 + 306.67957 + 30.243214 + 30.848412 + + + 277.42 + 278.27374 + 309.44293 + 32.022934 + 31.169174 + + + 278.45 + 279.61066 + 310.84894 + 32.398952 + 31.238277 + + + 279.5 + 280.4348 + 311.6863 + 32.186325 + 31.251509 + + + 280.44 + 278.78336 + 310.11722 + 29.677212 + 31.333872 + + + 281.42728 + 281.98218 + 313.46036 + 32.033077 + 31.478176 + + + 282.4818 + 285.19583 + 316.77686 + 34.295033 + 31.58101 + + + 283.43332 + 283.0801 + 314.56232 + 31.128994 + 31.482199 + + + 284.3909 + 282.18408 + 313.8501 + 29.459177 + 31.666004 + + + 285.45 + 284.40472 + 316.2095 + 30.759504 + 31.80478 + + + 286.41 + 287.77884 + 319.72058 + 33.310593 + 31.941742 + + + 287.44547 + 289.32315 + 321.42322 + 33.977753 + 32.10008 + + + 288.49 + 287.27286 + 319.40326 + 30.913252 + 32.1304 + + + 289.45 + 288.27512 + 320.27777 + 30.82776 + 32.002644 + + + 290.48 + 289.66037 + 321.68088 + 31.200865 + 32.0205 + + + 291.47 + 291.9365 + 324.19003 + 32.720043 + 32.25353 + + + 292.45557 + 294.84903 + 327.10873 + 34.653175 + 32.259693 + + + 293.44 + 293.0406 + 325.2263 + 31.786293 + 32.1857 + + + 294.43 + 294.19937 + 326.5001 + 32.07009 + 32.300716 + + + 295.5 + 296.32513 + 328.69046 + 33.19047 + 32.36531 + + + 296.43332 + 295.9548 + 328.3552 + 31.92185 + 32.400387 + + + 297.45 + 298.7185 + 331.01825 + 33.56826 + 32.299732 + + + 298.43332 + 298.67697 + 331.0931 + 32.659782 + 32.416138 + + + 299.44 + 296.57837 + 329.15598 + 29.715986 + 32.5776 + + + 300.4125 + 300.38535 + 332.97385 + 32.561356 + 32.5885 + + + 301.39 + 303.18307 + 335.96082 + 34.57081 + 32.777737 + + + 302.36667 + 301.85855 + 334.52917 + 32.162495 + 32.670616 + + + 303.4222 + 303.59518 + 336.16336 + 32.741154 + 32.568172 + + + 304.41 + 305.366 + 337.9544 + 33.544407 + 32.588425 + + + 305.47778 + 303.76648 + 336.2934 + 30.815632 + 32.52692 + + + 306.4625 + 305.68094 + 337.95856 + 31.496067 + 32.277622 + + + 307.44446 + 306.31528 + 338.64136 + 31.196901 + 32.326096 + + + 308.4 + 312.53265 + 344.82224 + 36.422245 + 32.289593 + + + 309.3889 + 311.69193 + 343.6928 + 34.30393 + 32.000893 + + + 310.425 + 309.26242 + 341.48172 + 31.056728 + 32.21929 + + + 311.46 + 314.3113 + 346.63477 + 35.174767 + 32.323444 + + + 312.45715 + 311.07883 + 342.92764 + 30.470505 + 31.848812 + + + 313.4222 + 314.28854 + 345.92413 + 32.501926 + 31.635586 + + + 314.47778 + 315.0723 + 346.6893 + 32.21152 + 31.617002 + + + 315.47144 + 315.19626 + 346.25 + 30.778572 + 31.05375 + + + 316.4375 + 313.2119 + 344.3927 + 27.95521 + 31.180779 + + + 317.4125 + 319.41745 + 350.35223 + 32.939724 + 30.93478 + + + 318.44287 + 320.3949 + 351.2446 + 32.801754 + 30.849686 + + + 319.47778 + 315.636 + 346.07486 + 26.597075 + 30.438866 + + + 320.47144 + 324.67404 + 354.77374 + 34.302322 + 30.099712 + + + 321.47144 + 326.75403 + 356.22 + 34.748577 + 29.465967 + + + 322.5125 + 318.12985 + 347.11603 + 24.603529 + 28.986189 + + + 323.51428 + 322.56503 + 351.19904 + 27.684752 + 28.633991 + + + 324.45 + 328.35657 + 356.8009 + 32.350895 + 28.44433 + + + 325.41428 + 319.12906 + 347.1304 + 21.71611 + 28.001358 + + + 326.4875 + 332.35327 + 359.97073 + 33.483227 + 27.617456 + + + 327.48334 + 326.54205 + 353.81345 + 26.330101 + 27.271402 + + + 328.42856 + 330.90103 + 357.8385 + 29.409939 + 26.937479 + + + 329.4 + 330.96185 + 357.195 + 27.795 + 26.23316 + + + 330.35 + 331.28812 + 357.53174 + 27.181736 + 26.24362 + + + 331.42856 + 323.5255 + 349.17664 + 17.748075 + 25.651127 + + + 332.42856 + 332.52325 + 357.52798 + 25.09941 + 25.004723 + + + 333.45 + 331.38745 + 356.52438 + 23.074373 + 25.136919 + + + 334.46667 + 338.09085 + 2.9857106 + 28.519043 + 24.894855 + + + 335.45 + 334.0962 + 358.3591 + 22.909086 + 24.262907 + + + 336.43332 + 335.29776 + 359.15 + 22.716667 + 23.852243 + + + 337.51428 + 334.7668 + 358.20236 + 20.688065 + 23.43554 + + + 338.58334 + 341.84814 + 4.5106397 + 25.927307 + 22.662487 + + + 339.52 + 335.581 + 357.53107 + 18.011059 + 21.95006 + + + 340.4 + 345.9874 + 7.216729 + 26.816729 + 21.229345 + + + 341.34 + 342.60516 + 3.2 + 21.86 + 20.59483 + + + 342.4 + 342.99146 + 3.5740898 + 21.17409 + 20.582626 + + + 343.44 + 350.94006 + 10.819654 + 27.379654 + 19.879606 + + + 344.43332 + 347.55627 + 7.034719 + 22.601385 + 19.478445 + + + 345.42 + 345.54913 + 4.5 + 19.08 + 18.950872 + + + 346.42 + 341.00818 + 359.51218 + 13.092174 + 18.504011 + + + 347.48334 + 354.1394 + 12.215747 + 24.732414 + 18.07633 + + + 348.56 + 340.81537 + 358.656 + 10.096009 + 17.840647 + + + 349.5 + 347.01324 + 3.9489646 + 14.448965 + 16.935709 + + + 350.4 + 346.55716 + 3.06 + 12.66 + 16.502844 + + + 351.4 + 349.84366 + 5.25693 + 13.85693 + 15.413275 + + + 352.44 + 354.99124 + 9.931801 + 17.4918 + 14.940555 + + + 353.36 + 348.88794 + 3.6959774 + 10.335978 + 14.808034 + + + 354.4 + 354.98285 + 9.05 + 14.650001 + 14.067161 + + + 355.54 + 359.6079 + 12.98 + 17.44 + 13.372089 + + + 356.475 + 356.7811 + 10 + 13.525001 + 13.218917 + + + 357.36 + 358.07465 + 11.095362 + 13.735362 + 13.020719 + + + 358.36667 + 1.967887 + 14.105395 + 15.7387295 + 12.137508 + + + 359.38 + 354.10458 + 6.303606 + 6.923606 + 12.199027 + + + + + 326.4875 + 332.35327 + 359.97073 + 33.483227 + 27.617456 + + + 334.46667 + 338.09085 + 2.9857106 + 28.519043 + 24.894855 + + + 334.46667 + 338.09085 + 2.9857106 + 28.519043 + 24.894855 + + + 341.34 + 342.60516 + 3.2 + 21.86 + 20.59483 + + + 338.58334 + 341.84814 + 4.5106397 + 25.927307 + 22.662487 + + + 1.4199995 + 354.0645 + 5.3557644 + 3.9357648 + 11.291251 + + + 359.38 + 354.10458 + 6.303606 + 6.923606 + 12.199027 + + + 340.4 + 345.9874 + 7.216729 + 26.816729 + 21.229345 + + + 0.38000017 + 357.41998 + 9.300909 + 8.920909 + 11.880919 + + + 0.38000017 + 357.41998 + 9.300909 + 8.920909 + 11.880919 + + + 343.44 + 350.94006 + 10.819654 + 27.379654 + 19.879606 + + + 11.36 + 4.469185 + 11.636948 + 0.27694777 + 7.1677628 + + + 347.48334 + 354.1394 + 12.215747 + 24.732414 + 18.07633 + + + 5.4 + 3.9346063 + 13.404884 + 8.004885 + 9.470278 + + + 2.46 + 3.460052 + 14.392878 + 11.932877 + 10.932825 + + + 2.46 + 3.460052 + 14.392878 + 11.932877 + 10.932825 + + + 4.44 + 6.3916287 + 16.26132 + 11.82132 + 9.869691 + + + 23.48 + 16.837341 + 17.594307 + -5.8856945 + 0.7569654 + + + 10.32 + 10.689481 + 18.088718 + 7.7687187 + 7.3992376 + + + 22.439999 + 18.326584 + 19.64 + -2.7999995 + 1.3134147 + + + 9.3 + 13.158253 + 20.6879 + 11.3879 + 7.5296474 + + + 3.4800003 + 11.784733 + 21.871157 + 18.391157 + 10.086424 + + + 6.4 + 13.449769 + 22.26338 + 15.86338 + 8.813611 + + + 25.460001 + 23.981056 + 23.9 + -1.5600002 + -0.08105601 + + + 20.375 + 22.548464 + 24.56 + 4.185 + 2.0115356 + + + 21.38 + 23.775648 + 25.439941 + 4.059942 + 1.6642927 + + + 24.46 + 25.770124 + 26.18 + 1.72 + 0.40987653 + + + 18.4 + 24.51799 + 27.424692 + 9.024693 + 2.906702 + + + 33.42 + 33.019505 + 28.064566 + -5.3554335 + -4.954941 + + + 33.42 + 33.019505 + 28.064566 + -5.3554335 + -4.954941 + + + 35.42 + 37.09594 + 30.895 + -4.525 + -6.20094 + + + 29.42 + 33.590862 + 31.064718 + 1.6447177 + -2.526144 + + + 40.433334 + 42.12444 + 32.53836 + -7.894972 + -9.586079 + + + 27.38 + 35.747715 + 34.107243 + 6.727244 + -1.6404715 + + + 27.38 + 35.747715 + 34.107243 + 6.727244 + -1.6404715 + + + 47.56 + 47.547417 + 35.35 + -12.21 + -12.197417 + + + 39.45 + 45.818005 + 37.354977 + -2.0950246 + -8.463028 + + + 39.45 + 45.818005 + 37.354977 + -2.0950246 + -8.463028 + + + 49.45 + 51.907967 + 38.96284 + -10.487161 + -12.945126 + + + 52.5 + 54.074547 + 39.453968 + -13.04603 + -14.62058 + + + 51.45 + 55.084938 + 40.833454 + -10.616546 + -14.251485 + + + 60.466667 + 58.584873 + 41.155 + -19.311666 + -17.429874 + + + 56.44 + 58.117313 + 42.105 + -14.335 + -16.012314 + + + 61.466667 + 60.662334 + 43.354794 + -18.111874 + -17.307543 + + + 64.53333 + 63.4783 + 44.433636 + -20.099697 + -19.044662 + + + 63.514286 + 63.591278 + 45.21781 + -18.296474 + -18.373468 + + + 59.42857 + 63.407047 + 46.70393 + -12.72464 + -16.703115 + + + 57.471428 + 63.584145 + 47.245304 + -10.226123 + -16.33884 + + + 67.5 + 69.099205 + 48.55302 + -18.946978 + -20.546186 + + + 67.5 + 69.099205 + 48.55302 + -18.946978 + -20.546186 + + + 75.4125 + 74.87722 + 51.054688 + -24.357813 + -23.822535 + + + 75.4125 + 74.87722 + 51.054688 + -24.357813 + -23.822535 + + + 69.34286 + 74.00955 + 52.86912 + -16.473734 + -21.140429 + + + 77.4375 + 78.167145 + 53.495815 + -23.941685 + -24.671328 + + + 84.45556 + 81.360855 + 54.484753 + -29.970804 + -26.876104 + + + 84.45556 + 81.360855 + 54.484753 + -29.970804 + -26.876104 + + + 83.4625 + 84.199646 + 57.695145 + -25.767357 + -26.5045 + + + 83.4625 + 84.199646 + 57.695145 + -25.767357 + -26.5045 + + + 85.4375 + 85.44639 + 58.489746 + -26.947754 + -26.95664 + + + 85.4375 + 85.44639 + 58.489746 + -26.947754 + -26.95664 + + + 88.37778 + 87.46941 + 60.32543 + -28.052345 + -27.143982 + + + 87.36667 + 88.215965 + 61.218468 + -26.148201 + -26.997496 + + + 79.4375 + 87.91817 + 62.495747 + -16.941755 + -25.422424 + + + 89.45 + 90.225685 + 63.042362 + -26.407639 + -27.18332 + + + 90.477776 + 92.31233 + 64.668335 + -25.809443 + -27.643993 + + + 91.45556 + 92.94489 + 65.232025 + -26.22353 + -27.712872 + + + 95.422226 + 93.549095 + 66.04164 + -29.380585 + -27.507456 + + + 93.51 + 95.43362 + 67.92049 + -25.589516 + -27.513134 + + + 93.51 + 95.43362 + 67.92049 + -25.589516 + -27.513134 + + + 96.4 + 97.0973 + 69.63733 + -26.762674 + -27.459969 + + + 97.41 + 97.80108 + 70.57941 + -26.830595 + -27.221668 + + + 98.41 + 98.61717 + 71.392105 + -27.017895 + -27.22507 + + + 101.45 + 99.55605 + 72.58079 + -28.869211 + -26.975264 + + + 100.41818 + 100.90384 + 73.80227 + -26.615913 + -27.101572 + + + 99.4 + 101.10211 + 74.000534 + -25.399467 + -27.101576 + + + 103.43636 + 101.73297 + 75.153336 + -28.283026 + -26.579638 + + + 105.42727 + 102.41093 + 76.04701 + -29.380259 + -26.363914 + + + 102.43636 + 104.18658 + 77.2729 + -25.163458 + -26.913673 + + + 104.43 + 104.73599 + 78.19132 + -26.238682 + -26.544668 + + + 104.43 + 104.73599 + 78.19132 + -26.238682 + -26.544668 + + + 106.46667 + 106.59053 + 80.51616 + -25.950508 + -26.074371 + + + 106.46667 + 106.59053 + 80.51616 + -25.950508 + -26.074371 + + + 108.49167 + 108.18884 + 82.272026 + -26.21964 + -25.91682 + + + 108.49167 + 108.18884 + 82.272026 + -26.21964 + -25.91682 + + + 109.46364 + 109.72777 + 84.00468 + -25.458956 + -25.723095 + + + 109.46364 + 109.72777 + 84.00468 + -25.458956 + -25.723095 + + + 112.458336 + 112.73123 + 87.528206 + -24.930128 + -25.203028 + + + 112.458336 + 112.73123 + 87.528206 + -24.930128 + -25.203028 + + + 111.454544 + 113.73718 + 88.29756 + -23.156984 + -25.439625 + + + 114.43636 + 114.35518 + 89.58121 + -24.855156 + -24.773968 + + + 115.45385 + 115.075005 + 90.43028 + -25.02356 + -24.644722 + + + 117.41538 + 115.66278 + 91.622894 + -25.792488 + -24.039885 + + + 116.472725 + 117.43146 + 93.172516 + -23.300209 + -24.258945 + + + 116.472725 + 117.43146 + 93.172516 + -23.300209 + -24.258945 + + + 116.472725 + 117.43146 + 93.172516 + -23.300209 + -24.258945 + + + 119.40833 + 120.044044 + 96.458664 + -22.949667 + -23.585379 + + + 119.40833 + 120.044044 + 96.458664 + -22.949667 + -23.585379 + + + 120.42308 + 121.1148 + 97.750435 + -22.67264 + -23.364363 + + + 121.425 + 121.15416 + 98.03515 + -23.389854 + -23.11901 + + + 121.425 + 121.15416 + 98.03515 + -23.389854 + -23.11901 + + + 123.441666 + 124.383484 + 101.58712 + -21.85455 + -22.796362 + + + 123.441666 + 124.383484 + 101.58712 + -21.85455 + -22.796362 + + + 123.441666 + 124.383484 + 101.58712 + -21.85455 + -22.796362 + + + 123.441666 + 124.383484 + 101.58712 + -21.85455 + -22.796362 + + + 126.42857 + 127.09121 + 105.149605 + -21.278967 + -21.941603 + + + 126.42857 + 127.09121 + 105.149605 + -21.278967 + -21.941603 + + + 127.44615 + 127.865395 + 106.09591 + -21.350248 + -21.76949 + + + 127.44615 + 127.865395 + 106.09591 + -21.350248 + -21.76949 + + + 129.50769 + 129.52621 + 108.42109 + -21.086601 + -21.10512 + + + 130.47693 + 130.42395 + 109.65931 + -20.817614 + -20.764645 + + + 131.4077 + 130.7115 + 110.15252 + -21.25517 + -20.558985 + + + 131.4077 + 130.7115 + 110.15252 + -21.25517 + -20.558985 + + + 132.45714 + 132.40486 + 112.10711 + -20.350037 + -20.297758 + + + 132.45714 + 132.40486 + 112.10711 + -20.350037 + -20.297758 + + + 134.32857 + 135.46089 + 115.64505 + -18.68352 + -19.81584 + + + 134.32857 + 135.46089 + 115.64505 + -18.68352 + -19.81584 + + + 135.42352 + 135.84381 + 116.220955 + -19.202574 + -19.622854 + + + 136.46924 + 137.18382 + 117.71567 + -18.753565 + -19.468151 + + + 136.46924 + 137.18382 + 117.71567 + -18.753565 + -19.468151 + + + 138.44667 + 139.53558 + 120.53118 + -17.915487 + -19.004406 + + + 138.44667 + 139.53558 + 120.53118 + -17.915487 + -19.004406 + + + 139.48572 + 139.75496 + 121.06828 + -18.41743 + -18.686672 + + + 139.48572 + 139.75496 + 121.06828 + -18.41743 + -18.686672 + + + 141.44286 + 141.299 + 123.08908 + -18.353773 + -18.20992 + + + 140.45334 + 142.9999 + 124.65362 + -15.799717 + -18.34628 + + + 140.45334 + 142.9999 + 124.65362 + -15.799717 + -18.34628 + + + 145.46428 + 144.13055 + 126.9353 + -18.52898 + -17.195248 + + + 144.45 + 145.83809 + 128.41127 + -16.038725 + -17.42682 + + + 144.45 + 145.83809 + 128.41127 + -16.038725 + -17.42682 + + + 148.43333 + 145.94469 + 129.6321 + -18.801235 + -16.312593 + + + 148.43333 + 145.94469 + 129.6321 + -18.801235 + -16.312593 + + + 147.44615 + 150.03824 + 133.35684 + -14.089317 + -16.681395 + + + 147.44615 + 150.03824 + 133.35684 + -14.089317 + -16.681395 + + + 147.44615 + 150.03824 + 133.35684 + -14.089317 + -16.681395 + + + 147.44615 + 150.03824 + 133.35684 + -14.089317 + -16.681395 + + + 150.49374 + 152.2082 + 136.55542 + -13.938326 + -15.6527815 + + + 150.49374 + 152.2082 + 136.55542 + -13.938326 + -15.6527815 + + + 153.39285 + 152.68402 + 137.96599 + -15.426871 + -14.7180395 + + + 153.39285 + 152.68402 + 137.96599 + -15.426871 + -14.7180395 + + + 154.44376 + 154.0482 + 139.58888 + -14.854875 + -14.459316 + + + 154.44376 + 154.0482 + 139.58888 + -14.854875 + -14.459316 + + + 155.46666 + 155.8262 + 141.64618 + -13.820492 + -14.180025 + + + 157.44667 + 155.73027 + 142.36845 + -15.078209 + -13.361823 + + + 156.47333 + 158.31406 + 144.38634 + -12.087002 + -13.927726 + + + 156.47333 + 158.31406 + 144.38634 + -12.087002 + -13.927726 + + + 160.4375 + 157.58022 + 145.1875 + -15.249998 + -12.392717 + + + 158.47058 + 159.65634 + 146.52959 + -11.941002 + -13.12676 + + + 158.47058 + 159.65634 + 146.52959 + -11.941002 + -13.12676 + + + 158.47058 + 159.65634 + 146.52959 + -11.941002 + -13.12676 + + + 161.46875 + 163.26645 + 150.99649 + -10.472256 + -12.269954 + + + 161.46875 + 163.26645 + 150.99649 + -10.472256 + -12.269954 + + + 162.48 + 163.04376 + 151.2465 + -11.233489 + -11.797262 + + + 159.5 + 164.89177 + 152.27315 + -7.2268543 + -12.618616 + + + 166.44667 + 163.98541 + 153.21597 + -13.230695 + -10.769445 + + + 165.45625 + 166.16039 + 155.28262 + -10.173621 + -10.8777685 + + + 165.45625 + 166.16039 + 155.28262 + -10.173621 + -10.8777685 + + + 165.45625 + 166.16039 + 155.28262 + -10.173621 + -10.8777685 + + + 165.45625 + 166.16039 + 155.28262 + -10.173621 + -10.8777685 + + + 167.43124 + 169.5985 + 159.03946 + -8.391791 + -10.559033 + + + 167.43124 + 169.5985 + 159.03946 + -8.391791 + -10.559033 + + + 171.46666 + 169.28564 + 160.10637 + -11.3602915 + -9.179273 + + + 169.44 + 171.09966 + 161.30977 + -8.13023 + -9.789891 + + + 169.44 + 171.09966 + 161.30977 + -8.13023 + -9.789891 + + + 173.42941 + 172.32391 + 163.79298 + -9.636433 + -8.530935 + + + 172.41875 + 173.09712 + 164.39116 + -8.027594 + -8.705963 + + + 172.41875 + 173.09712 + 164.39116 + -8.027594 + -8.705963 + + + 172.41875 + 173.09712 + 164.39116 + -8.027594 + -8.705963 + + + 175.48824 + 175.94002 + 168.16441 + -7.3238153 + -7.775608 + + + 175.48824 + 175.94002 + 168.16441 + -7.3238153 + -7.775608 + + + 177.4875 + 176.635 + 169.81915 + -7.668353 + -6.81584 + + + 177.4875 + 176.635 + 169.81915 + -7.668353 + -6.81584 + + + 178.475 + 178.5125 + 171.7983 + -6.6767025 + -6.714203 + + + 178.475 + 178.5125 + 171.7983 + -6.6767025 + -6.714203 + + + 180.41176 + 180.38995 + 174.17651 + -6.2352448 + -6.2134438 + + + 180.41176 + 180.38995 + 174.17651 + -6.2352448 + -6.2134438 + + + 179.4647 + 181.74545 + 175.27417 + -4.1905336 + -6.4712753 + + + 179.4647 + 181.74545 + 175.27417 + -4.1905336 + -6.4712753 + + + 181.43333 + 183.99944 + 178.01472 + -3.4186141 + -5.9847054 + + + 181.43333 + 183.99944 + 178.01472 + -3.4186141 + -5.9847054 + + + 181.43333 + 183.99944 + 178.01472 + -3.4186141 + -5.9847054 + + + 184.4875 + 185.16788 + 180.26561 + -4.2218976 + -4.902267 + + + 182.475 + 187.53581 + 181.94225 + -0.5327491 + -5.5935674 + + + 186.43889 + 187.08054 + 182.71979 + -3.7191074 + -4.360746 + + + 186.43889 + 187.08054 + 182.71979 + -3.7191074 + -4.360746 + + + 189.39375 + 187.61345 + 185.34225 + -4.0514936 + -2.2711954 + + + 189.39375 + 187.61345 + 185.34225 + -4.0514936 + -2.2711954 + + + 187.41875 + 191.35959 + 187.88867 + 0.46992674 + -3.4709175 + + + 187.41875 + 191.35959 + 187.88867 + 0.46992674 + -3.4709175 + + + 195.42667 + 186.49165 + 188.27354 + -7.1531277 + 1.7818941 + + + 192.45 + 189.53377 + 189.3036 + -3.146389 + -0.23015963 + + + 194.47333 + 189.61194 + 190.70811 + -3.765222 + 1.0961791 + + + 194.47333 + 189.61194 + 190.70811 + -3.765222 + 1.0961791 + + + 193.46 + 193.82387 + 194.0785 + 0.61850375 + 0.25463128 + + + 193.46 + 193.82387 + 194.0785 + 0.61850375 + 0.25463128 + + + 193.46 + 193.82387 + 194.0785 + 0.61850375 + 0.25463128 + + + 193.46 + 193.82387 + 194.0785 + 0.61850375 + 0.25463128 + + + 196.43333 + 195.35728 + 197.78268 + 1.3493463 + 2.425406 + + + 196.43333 + 195.35728 + 197.78268 + 1.3493463 + 2.425406 + + + 196.43333 + 195.35728 + 197.78268 + 1.3493463 + 2.425406 + + + 196.43333 + 195.35728 + 197.78268 + 1.3493463 + 2.425406 + + + 196.43333 + 195.35728 + 197.78268 + 1.3493463 + 2.425406 + + + 198.44286 + 200.11443 + 203.67027 + 5.227418 + 3.5558417 + + + 198.44286 + 200.11443 + 203.67027 + 5.227418 + 3.5558417 + + + 198.44286 + 200.11443 + 203.67027 + 5.227418 + 3.5558417 + + + 197.44516 + 201.57881 + 204.58586 + 7.140698 + 3.0070434 + + + 199.46297 + 200.61102 + 205.08466 + 5.6216855 + 4.473639 + + + 199.46297 + 200.61102 + 205.08466 + 5.6216855 + 4.473639 + + + 199.46297 + 200.61102 + 205.08466 + 5.6216855 + 4.473639 + + + 200.45 + 204.60144 + 209.66522 + 9.215216 + 5.0637856 + + + 200.45 + 204.60144 + 209.66522 + 9.215216 + 5.0637856 + + + 200.45 + 204.60144 + 209.66522 + 9.215216 + 5.0637856 + + + 200.45 + 204.60144 + 209.66522 + 9.215216 + 5.0637856 + + + 203.44827 + 205.4439 + 213.09613 + 9.64786 + 7.6522326 + + + 203.44827 + 205.4439 + 213.09613 + 9.64786 + 7.6522326 + + + 202.48181 + 207.17775 + 214.00961 + 11.527796 + 6.831861 + + + 205.44827 + 206.5026 + 215.62639 + 10.178117 + 9.123802 + + + 205.44827 + 206.5026 + 215.62639 + 10.178117 + 9.123802 + + + 210.444 + 206.42807 + 218.78558 + 8.341583 + 12.357509 + + + 210.444 + 206.42807 + 218.78558 + 8.341583 + 12.357509 + + + 208.452 + 209.0795 + 220.4467 + 11.994696 + 11.367201 + + + 208.452 + 209.0795 + 220.4467 + 11.994696 + 11.367201 + + + 208.452 + 209.0795 + 220.4467 + 11.994696 + 11.367201 + + + 209.428 + 210.67088 + 222.44432 + 13.016323 + 11.773442 + + + 209.428 + 210.67088 + 222.44432 + 13.016323 + 11.773442 + + + 212.4077 + 212.44627 + 225.53828 + 13.130588 + 13.09201 + + + 212.4077 + 212.44627 + 225.53828 + 13.130588 + 13.09201 + + + 211.42308 + 213.64432 + 226.35062 + 14.927535 + 12.706305 + + + 213.45357 + 214.18124 + 227.53499 + 14.081414 + 13.353742 + + + 215.428 + 213.86629 + 228.16718 + 12.739179 + 14.300891 + + + 214.44783 + 215.59967 + 229.46489 + 15.017061 + 13.865219 + + + 214.44783 + 215.59967 + 229.46489 + 15.017061 + 13.865219 + + + 217.42693 + 217.06131 + 232.33417 + 14.907244 + 15.272853 + + + 217.42693 + 217.06131 + 232.33417 + 14.907244 + 15.272853 + + + 216.4375 + 218.81134 + 233.53328 + 17.095781 + 14.721937 + + + 218.46666 + 219.09254 + 234.91194 + 16.445274 + 15.819396 + + + 218.46666 + 219.09254 + 234.91194 + 16.445274 + 15.819396 + + + 221.425 + 220.93549 + 237.96494 + 16.53993 + 17.029448 + + + 221.425 + 220.93549 + 237.96494 + 16.53993 + 17.029448 + + + 220.42308 + 221.83078 + 238.31015 + 17.887075 + 16.479368 + + + 220.42308 + 221.83078 + 238.31015 + 17.887075 + 16.479368 + + + 223.44583 + 222.59425 + 240.47 + 17.024172 + 17.87575 + + + 223.44583 + 222.59425 + 240.47 + 17.024172 + 17.87575 + + + 223.44583 + 222.59425 + 240.47 + 17.024172 + 17.87575 + + + 224.42667 + 226.61397 + 244.81555 + 20.388891 + 18.20158 + + + 224.42667 + 226.61397 + 244.81555 + 20.388891 + 18.20158 + + + 226.43921 + 226.6467 + 245.4593 + 19.020084 + 18.812609 + + + 226.43921 + 226.6467 + 245.4593 + 19.020084 + 18.812609 + + + 227.4909 + 228.73427 + 247.77237 + 20.281454 + 19.038109 + + + 228.46666 + 229.11816 + 248.43936 + 19.972687 + 19.3212 + + + 228.46666 + 229.11816 + 248.43936 + 19.972687 + 19.3212 + + + 230.43333 + 231.32393 + 251.42538 + 20.992048 + 20.101461 + + + 230.43333 + 231.32393 + 251.42538 + 20.992048 + 20.101461 + + + 230.43333 + 231.32393 + 251.42538 + 20.992048 + 20.101461 + + + 232.452 + 233.08589 + 253.90964 + 21.45764 + 20.823753 + + + 232.452 + 233.08589 + 253.90964 + 21.45764 + 20.823753 + + + 234.448 + 233.43257 + 255.37184 + 20.923841 + 21.939272 + + + 235.45186 + 233.58891 + 256.08212 + 20.630262 + 22.493208 + + + 233.444 + 236.3902 + 257.8168 + 24.372812 + 21.426603 + + + 233.444 + 236.3902 + 257.8168 + 24.372812 + 21.426603 + + + 237.4625 + 235.67482 + 259.29376 + 21.831251 + 23.618948 + + + 237.4625 + 235.67482 + 259.29376 + 21.831251 + 23.618948 + + + 239.51561 + 237.18362 + 261.30298 + 21.787374 + 24.119356 + + + 239.51561 + 237.18362 + 261.30298 + 21.787374 + 24.119356 + + + 239.51561 + 237.18362 + 261.30298 + 21.787374 + 24.119356 + + + 240.25 + 240.63376 + 265.05188 + 24.801891 + 24.418118 + + + 240.25 + 240.63376 + 265.05188 + 24.801891 + 24.418118 + + + 240.25 + 240.63376 + 265.05188 + 24.801891 + 24.418118 + + + 241.43333 + 242.78877 + 267.51315 + 26.079823 + 24.724375 + + + 241.43333 + 242.78877 + 267.51315 + 26.079823 + 24.724375 + + + 241.43333 + 242.78877 + 267.51315 + 26.079823 + 24.724375 + + + 243.44167 + 246.91441 + 272.47565 + 29.033983 + 25.561235 + + + 243.44167 + 246.91441 + 272.47565 + 29.033983 + 25.561235 + + + 243.44167 + 246.91441 + 272.47565 + 29.033983 + 25.561235 + + + 243.44167 + 246.91441 + 272.47565 + 29.033983 + 25.561235 + + + 250.41 + 246.1451 + 274.56238 + 24.15239 + 28.41729 + + + 247.45384 + 249.34477 + 276.1609 + 28.707031 + 26.816113 + + + 247.45384 + 249.34477 + 276.1609 + 28.707031 + 26.816113 + + + 245.5 + 251.35577 + 277.52158 + 32.02158 + 26.1658 + + + 251.46428 + 250.39218 + 278.88773 + 27.423445 + 28.495548 + + + 246.46364 + 253.15897 + 279.68094 + 33.217304 + 26.52197 + + + 246.46364 + 253.15897 + 279.68094 + 33.217304 + 26.52197 + + + 252.48181 + 252.77228 + 281.39038 + 28.908558 + 28.618095 + + + 252.48181 + 252.77228 + 281.39038 + 28.908558 + 28.618095 + + + 253.46153 + 254.59262 + 283.47794 + 30.01641 + 28.885311 + + + 255.43333 + 255.66035 + 284.28867 + 28.855333 + 28.628307 + + + 255.43333 + 255.66035 + 284.28867 + 28.855333 + 28.628307 + + + 258.45 + 259.20798 + 287.5176 + 29.067614 + 28.309631 + + + 258.45 + 259.20798 + 287.5176 + 29.067614 + 28.309631 + + + 258.45 + 259.20798 + 287.5176 + 29.067614 + 28.309631 + + + 260.43076 + 261.24557 + 289.9551 + 29.524345 + 28.709545 + + + 260.43076 + 261.24557 + 289.9551 + 29.524345 + 28.709545 + + + 262.44547 + 261.68542 + 291.09875 + 28.653313 + 29.413315 + + + 263.45456 + 263.2013 + 292.58136 + 29.126822 + 29.38006 + + + 266.45456 + 264.24213 + 293.6963 + 27.241743 + 29.45416 + + + 266.45456 + 264.24213 + 293.6963 + 27.241743 + 29.45416 + + + 267.4091 + 267.23065 + 296.87115 + 29.46207 + 29.6405 + + + 267.4091 + 267.23065 + 296.87115 + 29.46207 + 29.6405 + + + 259.47272 + 270.40582 + 298.97626 + 39.503525 + 28.57044 + + + 259.47272 + 270.40582 + 298.97626 + 39.503525 + 28.57044 + + + 259.47272 + 270.40582 + 298.97626 + 39.503525 + 28.57044 + + + 270.42728 + 270.49753 + 300.1169 + 29.689646 + 29.61939 + + + 273.44168 + 271.42136 + 301.6519 + 28.210207 + 30.23054 + + + 271.44 + 274.1948 + 303.93365 + 32.49365 + 29.738853 + + + 271.44 + 274.1948 + 303.93365 + 32.49365 + 29.738853 + + + 274.42 + 274.44983 + 304.6962 + 30.276182 + 30.246365 + + + 272.38 + 276.12872 + 306.24136 + 33.86135 + 30.112648 + + + 272.38 + 276.12872 + 306.24136 + 33.86135 + 30.112648 + + + 272.38 + 276.12872 + 306.24136 + 33.86135 + 30.112648 + + + 277.42 + 278.27374 + 309.44293 + 32.022934 + 31.169174 + + + 277.42 + 278.27374 + 309.44293 + 32.022934 + 31.169174 + + + 278.45 + 279.61066 + 310.84894 + 32.398952 + 31.238277 + + + 279.5 + 280.4348 + 311.6863 + 32.186325 + 31.251509 + + + 279.5 + 280.4348 + 311.6863 + 32.186325 + 31.251509 + + + 281.42728 + 281.98218 + 313.46036 + 32.033077 + 31.478176 + + + 283.43332 + 283.0801 + 314.56232 + 31.128994 + 31.482199 + + + 282.4818 + 285.19583 + 316.77686 + 34.295033 + 31.58101 + + + 282.4818 + 285.19583 + 316.77686 + 34.295033 + 31.58101 + + + 282.4818 + 285.19583 + 316.77686 + 34.295033 + 31.58101 + + + 286.41 + 287.77884 + 319.72058 + 33.310593 + 31.941742 + + + 286.41 + 287.77884 + 319.72058 + 33.310593 + 31.941742 + + + 289.45 + 288.27512 + 320.27777 + 30.82776 + 32.002644 + + + 287.44547 + 289.32315 + 321.42322 + 33.977753 + 32.10008 + + + 287.44547 + 289.32315 + 321.42322 + 33.977753 + 32.10008 + + + 291.47 + 291.9365 + 324.19003 + 32.720043 + 32.25353 + + + 291.47 + 291.9365 + 324.19003 + 32.720043 + 32.25353 + + + 293.44 + 293.0406 + 325.2263 + 31.786293 + 32.1857 + + + 294.43 + 294.19937 + 326.5001 + 32.07009 + 32.300716 + + + 292.45557 + 294.84903 + 327.10873 + 34.653175 + 32.259693 + + + 295.5 + 296.32513 + 328.69046 + 33.19047 + 32.36531 + + + 299.44 + 296.57837 + 329.15598 + 29.715986 + 32.5776 + + + 297.45 + 298.7185 + 331.01825 + 33.56826 + 32.299732 + + + 297.45 + 298.7185 + 331.01825 + 33.56826 + 32.299732 + + + 300.4125 + 300.38535 + 332.97385 + 32.561356 + 32.5885 + + + 300.4125 + 300.38535 + 332.97385 + 32.561356 + 32.5885 + + + 302.36667 + 301.85855 + 334.52917 + 32.162495 + 32.670616 + + + 301.39 + 303.18307 + 335.96082 + 34.57081 + 32.777737 + + + 303.4222 + 303.59518 + 336.16336 + 32.741154 + 32.568172 + + + 304.41 + 305.366 + 337.9544 + 33.544407 + 32.588425 + + + 307.44446 + 306.31528 + 338.64136 + 31.196901 + 32.326096 + + + 307.44446 + 306.31528 + 338.64136 + 31.196901 + 32.326096 + + + 310.425 + 309.26242 + 341.48172 + 31.056728 + 32.21929 + + + 310.425 + 309.26242 + 341.48172 + 31.056728 + 32.21929 + + + 312.45715 + 311.07883 + 342.92764 + 30.470505 + 31.848812 + + + 309.3889 + 311.69193 + 343.6928 + 34.30393 + 32.000893 + + + 308.4 + 312.53265 + 344.82224 + 36.422245 + 32.289593 + + + 313.4222 + 314.28854 + 345.92413 + 32.501926 + 31.635586 + + + 311.46 + 314.3113 + 346.63477 + 35.174767 + 32.323444 + + + 322.5125 + 318.12985 + 347.11603 + 24.603529 + 28.986189 + + + 322.5125 + 318.12985 + 347.11603 + 24.603529 + 28.986189 + + + 331.42856 + 323.5255 + 349.17664 + 17.748075 + 25.651127 + + + 317.4125 + 319.41745 + 350.35223 + 32.939724 + 30.93478 + + + 318.44287 + 320.3949 + 351.2446 + 32.801754 + 30.849686 + + + 318.44287 + 320.3949 + 351.2446 + 32.801754 + 30.849686 + + + 327.48334 + 326.54205 + 353.81345 + 26.330101 + 27.271402 + + + 320.47144 + 324.67404 + 354.77374 + 34.302322 + 30.099712 + + + 320.47144 + 324.67404 + 354.77374 + 34.302322 + 30.099712 + + + 321.47144 + 326.75403 + 356.22 + 34.748577 + 29.465967 + + + 328.42856 + 330.90103 + 357.8385 + 29.409939 + 26.937479 + + + 335.45 + 334.0962 + 358.3591 + 22.909086 + 24.262907 + + + 326.4875 + 332.35327 + 359.97073 + 33.483227 + 27.617456 + + + + + 2025-07-24T06:43:00.07 + 227.5 + 0 + + + 2025-07-24T06:43:00 + 227.6 + -0.1000061 + + + 2025-07-24T06:43:00 + 227.7 + -0.099990845 + + + 2025-07-24T06:43:00 + 227.7 + 0 + + + 2025-07-24T06:43:00.676 + 227.8 + -0.1000061 + + + 2025-07-24T06:43:00.88 + 227.9 + -0.099990845 + + + 2025-07-24T06:43:01 + 227.9 + 0 + + + 2025-07-24T06:43:01 + 228 + -0.1000061 + + + 2025-07-24T06:43:00 + 228 + 0 + + + 2025-07-24T06:43:01.494 + 228.1 + -0.1000061 + + + 2025-07-24T06:43:01.7 + 228.1 + 0 + + + 2025-07-24T06:43:01 + 228.2 + -0.099990845 + + + 2025-07-24T06:43:01.914 + 228.3 + -0.1000061 + + + 2025-07-24T06:43:02 + 228.3 + 0 + + + 2025-07-24T06:43:02.325 + 228.4 + -0.099990845 + + + 2025-07-24T06:43:02 + 228.5 + -0.1000061 + + + 2025-07-24T06:43:01.8 + 228.5 + 0 + + + 2025-07-24T06:43:02.729 + 228.6 + -0.1000061 + + + 2025-07-24T06:43:02.931 + 228.7 + -0.099990845 + + + 2025-07-24T06:43:02 + 228.7 + 0 + + + 2025-07-24T06:43:02 + 228.8 + -0.1000061 + + + 2025-07-24T06:43:03 + 228.9 + -0.099990845 + + + 2025-07-24T06:43:03.547 + 228.9 + 0 + + + 2025-07-24T06:43:03.749 + 229 + -0.1000061 + + + 2025-07-24T06:43:03.963 + 229 + 0 + + + 2025-07-24T06:43:04 + 229.1 + -0.1000061 + + + 2025-07-24T06:43:03.79 + 229.1 + 0 + + + 2025-07-24T06:43:04.377 + 229.2 + -0.099990845 + + + 2025-07-24T06:43:04.581 + 229.2 + 0 + + + 2025-07-24T06:43:04 + 229.3 + -0.1000061 + + + 2025-07-24T06:43:04.786 + 229.3 + 0 + + + 2025-07-24T06:43:05 + 229.4 + -0.099990845 + + + 2025-07-24T06:43:05.196 + 229.4 + 0 + + + 2025-07-24T06:43:05.401 + 229.4 + 0 + + + 2025-07-24T06:43:04.7 + 229.4 + 0 + + + 2025-07-24T06:43:05.611 + 229.5 + -0.1000061 + + + 2025-07-24T06:43:05.813 + 229.4 + 0.1000061 + + + 2025-07-24T06:43:06.017 + 229.4 + 0 + + + 2025-07-24T06:43:06 + 229.4 + 0 + + + 2025-07-24T06:43:06 + 229.4 + 0 + + + 2025-07-24T06:43:06 + 229.3 + 0.099990845 + + + 2025-07-24T06:43:06.635 + 229.3 + 0 + + + 2025-07-24T06:43:06.837 + 229.3 + 0 + + + 2025-07-24T06:43:06.837 + 229.2 + 0.1000061 + + + 2025-07-24T06:43:06 + 229.2 + 0 + + + 2025-07-24T06:43:06 + 229.2 + 0 + + + 2025-07-24T06:43:07.464 + 229.1 + 0.099990845 + + + 2025-07-24T06:43:07.44 + 229.1 + 0 + + + 2025-07-24T06:43:07.666 + 229.1 + 0 + + + 2025-07-24T06:43:07.872 + 229.1 + 0 + + + 2025-07-24T06:43:08.077 + 229 + 0.1000061 + + + 2025-07-24T06:43:08 + 228.9 + 0.1000061 + + + 2025-07-24T06:43:07.8 + 228.9 + 0 + + + 2025-07-24T06:43:08 + 228.9 + 0 + + + 2025-07-24T06:43:08.684 + 228.9 + 0 + + + 2025-07-24T06:43:08.895 + 228.8 + 0.099990845 + + + 2025-07-24T06:43:09 + 228.8 + 0 + + + 2025-07-24T06:43:08.93 + 228.8 + 0 + + + 2025-07-24T06:43:08 + 228.7 + 0.1000061 + + + 2025-07-24T06:43:09.506 + 228.7 + 0 + + + 2025-07-24T06:43:09.713 + 228.6 + 0.099990845 + + + 2025-07-24T06:43:09.713 + 228.6 + 0 + + + 2025-07-24T06:43:09.93 + 228.5 + 0.1000061 + + + 2025-07-24T06:43:10 + 228.5 + 0 + + + 2025-07-24T06:43:10.328 + 228.4 + 0.1000061 + + + 2025-07-24T06:43:10 + 228.4 + 0 + + + 2025-07-24T06:43:10.541 + 228.3 + 0.099990845 + + + 2025-07-24T06:43:10.744 + 228.3 + 0 + + + 2025-07-24T06:43:10.946 + 228.2 + 0.1000061 + + + 2025-07-24T06:43:10 + 228.1 + 0.099990845 + + + 2025-07-24T06:43:10 + 228.1 + 0 + + + 2025-07-24T06:43:11.362 + 228 + 0.1000061 + + + 2025-07-24T06:43:11.565 + 228 + 0 + + + 2025-07-24T06:43:11.767 + 227.9 + 0.1000061 + + + 2025-07-24T06:43:11.767 + 227.9 + 0 + + + 2025-07-24T06:43:12 + 227.8 + 0.099990845 + + + 2025-07-24T06:43:12 + 227.8 + 0 + + + 2025-07-24T06:43:12.386 + 227.7 + 0.1000061 + + + 2025-07-24T06:43:12.591 + 227.7 + 0 + + + 2025-07-24T06:43:12.591 + 227.6 + 0.099990845 + + + 2025-07-24T06:43:12.794 + 227.6 + 0 + + + 2025-07-24T06:43:13 + 227.6 + 0 + + + 2025-07-24T06:43:13.21 + 227.5 + 0.1000061 + + + 2025-07-24T06:43:13.13 + 227.5 + 0 + + + 2025-07-24T06:43:13 + 227.4 + 0.1000061 + + + 2025-07-24T06:43:13.626 + 227.4 + 0 + + + 2025-07-24T06:43:13.828 + 227.3 + 0.099990845 + + + 2025-07-24T06:43:14.037 + 227.3 + 0 + + + 2025-07-24T06:43:14 + 227.3 + 0 + + + 2025-07-24T06:43:14 + 227.2 + 0.1000061 + + + 2025-07-24T06:43:14 + 227.2 + 0 + + + 2025-07-24T06:43:14.651 + 227.1 + 0.099990845 + + + 2025-07-24T06:43:14.651 + 227.1 + 0 + + + 2025-07-24T06:43:13.93 + 227 + 0.1000061 + + + 2025-07-24T06:43:14 + 227 + 0 + + + 2025-07-24T06:43:14 + 226.9 + 0.1000061 + + + 2025-07-24T06:43:15.49 + 226.9 + 0 + + + 2025-07-24T06:43:15.49 + 226.8 + 0.099990845 + + + 2025-07-24T06:43:15 + 226.8 + 0 + + + 2025-07-24T06:43:15.902 + 226.7 + 0.1000061 + + + 2025-07-24T06:43:16.105 + 226.6 + 0.099990845 + + + 2025-07-24T06:43:16 + 226.5 + 0.1000061 + + + 2025-07-24T06:43:16.307 + 226.5 + 0 + + + 2025-07-24T06:43:16.52 + 226.5 + 0 + + + 2025-07-24T06:43:16.73 + 226.4 + 0.1000061 + + + 2025-07-24T06:43:16.73 + 226.4 + 0 + + + 2025-07-24T06:43:17 + 226.4 + 0 + + + 2025-07-24T06:43:17 + 226.4 + 0 + + + 2025-07-24T06:43:17.346 + 226.4 + 0 + + + 2025-07-24T06:43:17.548 + 226.4 + 0 + + + 2025-07-24T06:43:17.548 + 226.3 + 0.099990845 + + + 2025-07-24T06:43:17.75 + 226.3 + 0 + + + 2025-07-24T06:43:17.953 + 226.3 + 0 + + + 2025-07-24T06:43:18.157 + 226.2 + 0.1000061 + + + 2025-07-24T06:43:18.36 + 226.2 + 0 + + + 2025-07-24T06:43:18 + 226.2 + 0 + + + 2025-07-24T06:43:18.573 + 226.1 + 0.099990845 + + + 2025-07-24T06:43:18.775 + 226.1 + 0 + + + 2025-07-24T06:43:18.977 + 226 + 0.1000061 + + + 2025-07-24T06:43:18 + 226 + 0 + + + 2025-07-24T06:43:18 + 225.9 + 0.1000061 + + + 2025-07-24T06:43:19.398 + 225.9 + 0 + + + 2025-07-24T06:43:19.606 + 225.8 + 0.099990845 + + + 2025-07-24T06:43:19.809 + 225.7 + 0.1000061 + + + 2025-07-24T06:43:18.9 + 225.7 + 0 + + + 2025-07-24T06:43:20 + 225.6 + 0.099990845 + + + 2025-07-24T06:43:20 + 225.6 + 0 + + + 2025-07-24T06:43:20.433 + 225.6 + 0 + + + 2025-07-24T06:43:20 + 225.5 + 0.1000061 + + + 2025-07-24T06:43:20 + 225.4 + 0.1000061 + + + 2025-07-24T06:43:20.86 + 225.4 + 0 + + + 2025-07-24T06:43:21.065 + 225.4 + 0 + + + 2025-07-24T06:43:20.93 + 225.3 + 0.099990845 + + + 2025-07-24T06:43:20 + 225.3 + 0 + + + 2025-07-24T06:43:21.47 + 225.3 + 0 + + + 2025-07-24T06:43:21.674 + 225.3 + 0 + + + 2025-07-24T06:43:21.674 + 225.3 + 0 + + + 2025-07-24T06:43:22 + 225.3 + 0 + + + 2025-07-24T06:43:22 + 225.2 + 0.1000061 + + + 2025-07-24T06:43:22.3 + 225.2 + 0 + + + 2025-07-24T06:43:22 + 225.1 + 0.099990845 + + + 2025-07-24T06:43:22 + 225 + 0.1000061 + + + 2025-07-24T06:43:22.713 + 225 + 0 + + + 2025-07-24T06:43:22.915 + 224.8 + 0.19999695 + + + 2025-07-24T06:43:22 + 224.6 + 0.19999695 + + + 2025-07-24T06:43:23.331 + 224.4 + 0.2000122 + + + 2025-07-24T06:43:23 + 224.2 + 0.19999695 + + + 2025-07-24T06:43:23.534 + 224 + 0.19999695 + + + 2025-07-24T06:43:23.74 + 223.7 + 0.30000305 + + + 2025-07-24T06:43:23.944 + 223.5 + 0.19999695 + + + 2025-07-24T06:43:24 + 223.2 + 0.30000305 + + + 2025-07-24T06:43:24 + 222.9 + 0.30000305 + + + 2025-07-24T06:43:24.349 + 222.7 + 0.19999695 + + + 2025-07-24T06:43:24.551 + 222.3 + 0.3999939 + + + 2025-07-24T06:43:24.76 + 222 + 0.30000305 + + + 2025-07-24T06:43:24 + 221.5 + 0.5 + + + 2025-07-24T06:43:25 + 221.1 + 0.3999939 + + + 2025-07-24T06:43:25 + 220.6 + 0.5 + + + 2025-07-24T06:43:25.383 + 220.1 + 0.5 + + + 2025-07-24T06:43:25.383 + 219.5 + 0.6000061 + + + 2025-07-24T06:43:24.9 + 218.9 + 0.6000061 + + + 2025-07-24T06:43:25.79 + 218.3 + 0.59999084 + + + 2025-07-24T06:43:26 + 217.7 + 0.6000061 + + + 2025-07-24T06:43:26.195 + 217.1 + 0.59999084 + + + 2025-07-24T06:43:26 + 216.4 + 0.7000122 + + + 2025-07-24T06:43:26.09 + 215.8 + 0.59999084 + + + 2025-07-24T06:43:26.615 + 215.2 + 0.6000061 + + + 2025-07-24T06:43:26.817 + 214.6 + 0.59999084 + + + 2025-07-24T06:43:26 + 213.9 + 0.7000122 + + + 2025-07-24T06:43:26 + 213.3 + 0.59999084 + + + 2025-07-24T06:43:26 + 212.7 + 0.6000061 + + + 2025-07-24T06:43:27.448 + 212.1 + 0.59999084 + + + 2025-07-24T06:43:27.659 + 211.6 + 0.5 + + + 2025-07-24T06:43:27 + 211 + 0.6000061 + + + 2025-07-24T06:43:27.861 + 210.5 + 0.5 + + + 2025-07-24T06:43:28.065 + 210 + 0.5 + + + 2025-07-24T06:43:28 + 209.5 + 0.5 + + + 2025-07-24T06:43:28 + 209 + 0.5 + + + 2025-07-24T06:43:28 + 208.6 + 0.3999939 + + + 2025-07-24T06:43:28.677 + 208.1 + 0.5 + + + 2025-07-24T06:43:28.881 + 207.7 + 0.40000916 + + + 2025-07-24T06:43:29.084 + 207.3 + 0.3999939 + + + 2025-07-24T06:43:29 + 206.9 + 0.40000916 + + + 2025-07-24T06:43:28 + 206.5 + 0.3999939 + + + 2025-07-24T06:43:29.489 + 206.1 + 0.3999939 + + + 2025-07-24T06:43:29.691 + 205.7 + 0.40000916 + + + 2025-07-24T06:43:29 + 205.3 + 0.3999939 + + + 2025-07-24T06:43:30 + 205 + 0.30000305 + + + 2025-07-24T06:43:30 + 204.6 + 0.3999939 + + + 2025-07-24T06:43:30.08 + 204.3 + 0.30000305 + + + 2025-07-24T06:43:30 + 203.9 + 0.40000916 + + + 2025-07-24T06:43:30.08 + 203.6 + 0.2999878 + + + 2025-07-24T06:43:30 + 203.2 + 0.40000916 + + + 2025-07-24T06:43:30 + 202.9 + 0.30000305 + + + 2025-07-24T06:43:30 + 202.5 + 0.3999939 + + + 2025-07-24T06:43:30 + 202.2 + 0.30000305 + + + 2025-07-24T06:43:31.08 + 201.9 + 0.30000305 + + + 2025-07-24T06:43:31.39 + 201.5 + 0.3999939 + + + 2025-07-24T06:43:31.39 + 201.2 + 0.30000305 + + + 2025-07-24T06:43:31 + 200.9 + 0.30000305 + + + 2025-07-24T06:43:32 + 200.5 + 0.3999939 + + + 2025-07-24T06:43:32.09 + 200.2 + 0.30000305 + + + 2025-07-24T06:43:32.09 + 199.8 + 0.3999939 + + + 2025-07-24T06:43:32 + 199.5 + 0.30000305 + + + 2025-07-24T06:43:32 + 199.2 + 0.30000305 + + + 2025-07-24T06:43:32 + 198.9 + 0.30000305 + + + 2025-07-24T06:43:33 + 198.6 + 0.2999878 + + + 2025-07-24T06:43:32.9 + 198.3 + 0.30000305 + + + 2025-07-24T06:43:32 + 198 + 0.30000305 + + + 2025-07-24T06:43:33.09 + 197.7 + 0.30000305 + + + 2025-07-24T06:43:33.09 + 197.4 + 0.30000305 + + + 2025-07-24T06:43:33.09 + 197.1 + 0.2999878 + + + 2025-07-24T06:43:34 + 196.8 + 0.30000305 + + + 2025-07-24T06:43:34 + 196.5 + 0.30000305 + + + 2025-07-24T06:43:34 + 196.3 + 0.19999695 + + + 2025-07-24T06:43:34 + 196 + 0.30000305 + + + 2025-07-24T06:43:34 + 195.7 + 0.30000305 + + + 2025-07-24T06:43:34 + 195.4 + 0.30000305 + + + 2025-07-24T06:43:34.917 + 195.1 + 0.2999878 + + + 2025-07-24T06:43:34 + 194.9 + 0.2000122 + + + 2025-07-24T06:43:35.324 + 194.6 + 0.2999878 + + + 2025-07-24T06:43:35.324 + 194.4 + 0.2000122 + + + 2025-07-24T06:43:35.09 + 194.1 + 0.2999878 + + + 2025-07-24T06:43:35.736 + 193.8 + 0.30000305 + + + 2025-07-24T06:43:35.942 + 193.6 + 0.19999695 + + + 2025-07-24T06:43:35 + 193.3 + 0.30000305 + + + 2025-07-24T06:43:36 + 193.1 + 0.19999695 + + + 2025-07-24T06:43:36.19 + 192.8 + 0.30000305 + + + 2025-07-24T06:43:36.556 + 192.6 + 0.19999695 + + + 2025-07-24T06:43:36.758 + 192.3 + 0.30000305 + + + 2025-07-24T06:43:36 + 192.1 + 0.19999695 + + + 2025-07-24T06:43:37 + 191.9 + 0.2000122 + + + 2025-07-24T06:43:36 + 191.6 + 0.2999878 + + + 2025-07-24T06:43:37.367 + 191.4 + 0.2000122 + + + 2025-07-24T06:43:37.569 + 191.2 + 0.19999695 + + + 2025-07-24T06:43:37 + 191 + 0.19999695 + + + 2025-07-24T06:43:37.772 + 190.8 + 0.19999695 + + + 2025-07-24T06:43:38 + 190.6 + 0.19999695 + + + 2025-07-24T06:43:38.179 + 190.4 + 0.2000122 + + + 2025-07-24T06:43:38.381 + 190.2 + 0.19999695 + + + 2025-07-24T06:43:38 + 190.1 + 0.099990845 + + + 2025-07-24T06:43:38.583 + 189.9 + 0.2000122 + + + 2025-07-24T06:43:38.792 + 189.7 + 0.19999695 + + + 2025-07-24T06:43:38.994 + 189.5 + 0.19999695 + + + 2025-07-24T06:43:38 + 189.3 + 0.19999695 + + + 2025-07-24T06:43:38 + 189.1 + 0.19999695 + + + 2025-07-24T06:43:39.407 + 189 + 0.1000061 + + + 2025-07-24T06:43:39.61 + 188.8 + 0.19999695 + + + 2025-07-24T06:43:39.817 + 188.6 + 0.19999695 + + + 2025-07-24T06:43:39.817 + 188.5 + 0.1000061 + + + 2025-07-24T06:43:40 + 188.3 + 0.19999695 + + + 2025-07-24T06:43:40 + 188.1 + 0.19999695 + + + 2025-07-24T06:43:40.43 + 187.9 + 0.2000122 + + + 2025-07-24T06:43:40.09 + 187.7 + 0.19999695 + + + 2025-07-24T06:43:40.5 + 187.6 + 0.099990845 + + + 2025-07-24T06:43:40.834 + 187.4 + 0.2000122 + + + 2025-07-24T06:43:41 + 187.3 + 0.099990845 + + + 2025-07-24T06:43:41.243 + 187.1 + 0.19999695 + + + 2025-07-24T06:43:41.19 + 187 + 0.1000061 + + + 2025-07-24T06:43:41.19 + 186.8 + 0.19999695 + + + 2025-07-24T06:43:41.652 + 186.7 + 0.1000061 + + + 2025-07-24T06:43:41.854 + 186.5 + 0.19999695 + + + 2025-07-24T06:43:42 + 186.3 + 0.19999695 + + + 2025-07-24T06:43:41 + 186.2 + 0.1000061 + + + 2025-07-24T06:43:42 + 186 + 0.19999695 + + + 2025-07-24T06:43:42 + 185.9 + 0.1000061 + + + 2025-07-24T06:43:42.681 + 185.7 + 0.19999695 + + + 2025-07-24T06:43:42.681 + 185.6 + 0.099990845 + + + 2025-07-24T06:43:42 + 185.4 + 0.2000122 + + + 2025-07-24T06:43:42 + 185.3 + 0.099990845 + + + 2025-07-24T06:43:42 + 185.2 + 0.1000061 + + + 2025-07-24T06:43:43.19 + 185.1 + 0.099990845 + + + 2025-07-24T06:43:43.19 + 184.9 + 0.2000122 + + + 2025-07-24T06:43:43.699 + 184.8 + 0.099990845 + + + 2025-07-24T06:43:43 + 184.6 + 0.19999695 + + + 2025-07-24T06:43:44.108 + 184.5 + 0.1000061 + + + 2025-07-24T06:43:44 + 184.3 + 0.19999695 + + + 2025-07-24T06:43:44.19 + 184.2 + 0.1000061 + + + 2025-07-24T06:43:44.518 + 184 + 0.19999695 + + + 2025-07-24T06:43:44 + 183.9 + 0.1000061 + + + 2025-07-24T06:43:44.934 + 183.7 + 0.19999695 + + + 2025-07-24T06:43:45 + 183.6 + 0.099990845 + + + 2025-07-24T06:43:45 + 183.4 + 0.2000122 + + + 2025-07-24T06:43:45.341 + 183.3 + 0.099990845 + + + 2025-07-24T06:43:45.19 + 183.2 + 0.1000061 + + + 2025-07-24T06:43:45.746 + 183 + 0.19999695 + + + 2025-07-24T06:43:45.746 + 182.9 + 0.1000061 + + + 2025-07-24T06:43:46 + 182.7 + 0.19999695 + + + 2025-07-24T06:43:46 + 182.6 + 0.099990845 + + + 2025-07-24T06:43:46.356 + 182.5 + 0.1000061 + + + 2025-07-24T06:43:46 + 182.3 + 0.19999695 + + + 2025-07-24T06:43:46.558 + 182.2 + 0.1000061 + + + 2025-07-24T06:43:46 + 182.1 + 0.099990845 + + + 2025-07-24T06:43:46.978 + 181.9 + 0.2000122 + + + 2025-07-24T06:43:47 + 181.8 + 0.099990845 + + + 2025-07-24T06:43:46 + 181.7 + 0.1000061 + + + 2025-07-24T06:43:47.385 + 181.6 + 0.099990845 + + + 2025-07-24T06:43:47.09 + 181.4 + 0.2000122 + + + 2025-07-24T06:43:47.789 + 181.3 + 0.099990845 + + + 2025-07-24T06:43:47 + 181.1 + 0.19999695 + + + 2025-07-24T06:43:48 + 181 + 0.1000061 + + + 2025-07-24T06:43:48 + 180.9 + 0.1000061 + + + 2025-07-24T06:43:48 + 180.7 + 0.19999695 + + + 2025-07-24T06:43:48.605 + 180.6 + 0.099990845 + + + 2025-07-24T06:43:48.605 + 180.5 + 0.1000061 + + + 2025-07-24T06:43:48 + 180.3 + 0.19999695 + + + 2025-07-24T06:43:49 + 180.2 + 0.1000061 + + + 2025-07-24T06:43:49.244 + 180.1 + 0.099990845 + + + 2025-07-24T06:43:48 + 179.9 + 0.2000122 + + + 2025-07-24T06:43:49.446 + 179.8 + 0.099990845 + + + 2025-07-24T06:43:49.5 + 179.7 + 0.1000061 + + + 2025-07-24T06:43:49.853 + 179.5 + 0.19999695 + + + 2025-07-24T06:43:50.06 + 179.4 + 0.1000061 + + + 2025-07-24T06:43:50 + 179.3 + 0.099990845 + + + 2025-07-24T06:43:50 + 179.2 + 0.1000061 + + + 2025-07-24T06:43:50.3 + 179 + 0.19999695 + + + 2025-07-24T06:43:50.675 + 178.9 + 0.1000061 + + + 2025-07-24T06:43:50.675 + 178.7 + 0.19999695 + + + 2025-07-24T06:43:50 + 178.6 + 0.099990845 + + + 2025-07-24T06:43:50 + 178.4 + 0.2000122 + + + 2025-07-24T06:43:50 + 178.3 + 0.099990845 + + + 2025-07-24T06:43:51.496 + 178.2 + 0.1000061 + + + 2025-07-24T06:43:51.496 + 178 + 0.19999695 + + + 2025-07-24T06:43:51 + 177.9 + 0.1000061 + + + 2025-07-24T06:43:51.912 + 177.8 + 0.099990845 + + + 2025-07-24T06:43:51 + 177.7 + 0.1000061 + + + 2025-07-24T06:43:52 + 177.5 + 0.19999695 + + + 2025-07-24T06:43:52.323 + 177.4 + 0.1000061 + + + 2025-07-24T06:43:52.3 + 177.3 + 0.099990845 + + + 2025-07-24T06:43:52.74 + 177.1 + 0.19999695 + + + 2025-07-24T06:43:52.942 + 176.9 + 0.2000122 + + + 2025-07-24T06:43:53 + 176.8 + 0.099990845 + + + 2025-07-24T06:43:52 + 176.7 + 0.1000061 + + + 2025-07-24T06:43:53.2 + 176.6 + 0.099990845 + + + 2025-07-24T06:43:53.558 + 176.4 + 0.2000122 + + + 2025-07-24T06:43:53.558 + 176.3 + 0.099990845 + + + 2025-07-24T06:43:53 + 176.1 + 0.19999695 + + + 2025-07-24T06:43:54 + 175.9 + 0.2000122 + + + 2025-07-24T06:43:53 + 175.8 + 0.099990845 + + + 2025-07-24T06:43:54.372 + 175.6 + 0.19999695 + + + 2025-07-24T06:43:54 + 175.5 + 0.1000061 + + + 2025-07-24T06:43:54.3 + 175.4 + 0.1000061 + + + 2025-07-24T06:43:54.779 + 175.2 + 0.19999695 + + + 2025-07-24T06:43:54.981 + 175.1 + 0.099990845 + + + 2025-07-24T06:43:55.183 + 175 + 0.1000061 + + + 2025-07-24T06:43:54 + 174.8 + 0.19999695 + + + 2025-07-24T06:43:55.3 + 174.7 + 0.1000061 + + + 2025-07-24T06:43:55.588 + 174.5 + 0.19999695 + + + 2025-07-24T06:43:55.791 + 174.4 + 0.1000061 + + + 2025-07-24T06:43:55 + 174.3 + 0.099990845 + + + 2025-07-24T06:43:56 + 174.1 + 0.19999695 + + + 2025-07-24T06:43:56.1 + 174 + 0.1000061 + + + 2025-07-24T06:43:56.404 + 173.9 + 0.1000061 + + + 2025-07-24T06:43:56.608 + 173.7 + 0.19999695 + + + 2025-07-24T06:43:56 + 173.6 + 0.099990845 + + + 2025-07-24T06:43:56.815 + 173.5 + 0.1000061 + + + 2025-07-24T06:43:56 + 173.3 + 0.19999695 + + + 2025-07-24T06:43:57.23 + 173.2 + 0.1000061 + + + 2025-07-24T06:43:57.436 + 173.1 + 0.099990845 + + + 2025-07-24T06:43:57.3 + 173 + 0.1000061 + + + 2025-07-24T06:43:57.64 + 172.8 + 0.19999695 + + + 2025-07-24T06:43:57 + 172.7 + 0.1000061 + + + 2025-07-24T06:43:58.053 + 172.5 + 0.19999695 + + + 2025-07-24T06:43:58.053 + 172.4 + 0.1000061 + + + 2025-07-24T06:43:57 + 172.2 + 0.19999695 + + + 2025-07-24T06:43:58 + 172.1 + 0.099990845 + + + 2025-07-24T06:43:58.674 + 172 + 0.1000061 + + + 2025-07-24T06:43:58.877 + 171.9 + 0.1000061 + + + 2025-07-24T06:43:58.877 + 171.8 + 0.099990845 + + + 2025-07-24T06:43:59 + 171.6 + 0.19999695 + + + 2025-07-24T06:43:58 + 171.5 + 0.1000061 + + + 2025-07-24T06:43:59.488 + 171.4 + 0.1000061 + + + 2025-07-24T06:43:59.29 + 171.2 + 0.19999695 + + + 2025-07-24T06:43:59.69 + 171.1 + 0.099990845 + + + 2025-07-24T06:43:59.895 + 170.9 + 0.2000122 + + + 2025-07-24T06:44:00.113 + 170.8 + 0.099990845 + + + 2025-07-24T06:44:00.315 + 170.7 + 0.1000061 + + + 2025-07-24T06:44:00.24 + 170.6 + 0.099990845 + + + 2025-07-24T06:44:00.518 + 170.5 + 0.1000061 + + + 2025-07-24T06:44:00.722 + 170.3 + 0.19999695 + + + 2025-07-24T06:44:00.932 + 170.2 + 0.1000061 + + + 2025-07-24T06:44:01 + 170 + 0.19999695 + + + 2025-07-24T06:44:01.03 + 169.8 + 0.19999695 + + + 2025-07-24T06:44:01.34 + 169.7 + 0.1000061 + + + 2025-07-24T06:44:01.546 + 169.6 + 0.099990845 + + + 2025-07-24T06:44:01.3 + 169.5 + 0.1000061 + + + 2025-07-24T06:44:01.757 + 169.4 + 0.1000061 + + + 2025-07-24T06:44:02 + 169.3 + 0.099990845 + + + 2025-07-24T06:44:02 + 169.2 + 0.1000061 + + + 2025-07-24T06:44:02.378 + 169 + 0.19999695 + + + 2025-07-24T06:44:02 + 168.9 + 0.1000061 + + + 2025-07-24T06:44:02.585 + 168.7 + 0.19999695 + + + 2025-07-24T06:44:02 + 168.6 + 0.099990845 + + + 2025-07-24T06:44:02.989 + 168.5 + 0.1000061 + + + 2025-07-24T06:44:03.193 + 168.3 + 0.19999695 + + + 2025-07-24T06:44:02 + 168.2 + 0.1000061 + + + 2025-07-24T06:44:03 + 168.1 + 0.099990845 + + + 2025-07-24T06:44:03.602 + 168 + 0.1000061 + + + 2025-07-24T06:44:03.805 + 167.9 + 0.1000061 + + + 2025-07-24T06:44:03.805 + 167.8 + 0.099990845 + + + 2025-07-24T06:44:03 + 167.6 + 0.19999695 + + + 2025-07-24T06:44:04 + 167.5 + 0.1000061 + + + 2025-07-24T06:44:04.414 + 167.3 + 0.19999695 + + + 2025-07-24T06:44:04.621 + 167.2 + 0.1000061 + + + 2025-07-24T06:44:04.621 + 167.1 + 0.099990845 + + + 2025-07-24T06:44:04.831 + 167 + 0.1000061 + + + 2025-07-24T06:44:05 + 166.9 + 0.1000061 + + + 2025-07-24T06:44:05 + 166.7 + 0.19999695 + + + 2025-07-24T06:44:05.2 + 166.6 + 0.099990845 + + + 2025-07-24T06:44:05.2 + 166.5 + 0.1000061 + + + 2025-07-24T06:44:05.2 + 166.3 + 0.19999695 + + + 2025-07-24T06:44:05 + 166.2 + 0.1000061 + + + 2025-07-24T06:44:06 + 166 + 0.19999695 + + + 2025-07-24T06:44:06.03 + 165.9 + 0.1000061 + + + 2025-07-24T06:44:06 + 165.8 + 0.099990845 + + + 2025-07-24T06:44:06 + 165.7 + 0.1000061 + + + 2025-07-24T06:44:06.3 + 165.5 + 0.19999695 + + + 2025-07-24T06:44:06.3 + 165.4 + 0.1000061 + + + 2025-07-24T06:44:06 + 165.3 + 0.099990845 + + + 2025-07-24T06:44:07 + 165.2 + 0.1000061 + + + 2025-07-24T06:44:06 + 165 + 0.19999695 + + + 2025-07-24T06:44:06 + 164.9 + 0.1000061 + + + 2025-07-24T06:44:06 + 164.7 + 0.19999695 + + + 2025-07-24T06:44:07 + 164.6 + 0.099990845 + + + 2025-07-24T06:44:07 + 164.5 + 0.1000061 + + + 2025-07-24T06:44:08 + 164.4 + 0.1000061 + + + 2025-07-24T06:44:07 + 164.3 + 0.099990845 + + + 2025-07-24T06:44:08 + 164.2 + 0.1000061 + + + 2025-07-24T06:44:08.43 + 164.1 + 0.099990845 + + + 2025-07-24T06:44:08.43 + 164 + 0.1000061 + + + 2025-07-24T06:44:08.43 + 163.8 + 0.19999695 + + + 2025-07-24T06:44:08 + 163.7 + 0.1000061 + + + 2025-07-24T06:44:09.255 + 163.6 + 0.099990845 + + + 2025-07-24T06:44:08 + 163.5 + 0.1000061 + + + 2025-07-24T06:44:09.35 + 163.3 + 0.19999695 + + + 2025-07-24T06:44:09.661 + 163.2 + 0.1000061 + + + 2025-07-24T06:44:09.863 + 163 + 0.19999695 + + + 2025-07-24T06:44:10.078 + 162.9 + 0.1000061 + + + 2025-07-24T06:44:10 + 162.8 + 0.099990845 + + + 2025-07-24T06:44:10 + 162.7 + 0.1000061 + + + 2025-07-24T06:44:10.485 + 162.6 + 0.099990845 + + + 2025-07-24T06:44:10.687 + 162.4 + 0.2000122 + + + 2025-07-24T06:44:10 + 162.3 + 0.099990845 + + + 2025-07-24T06:44:10.891 + 162.2 + 0.1000061 + + + 2025-07-24T06:44:11 + 162 + 0.19999695 + + + 2025-07-24T06:44:11.306 + 161.9 + 0.1000061 + + + 2025-07-24T06:44:11.512 + 161.8 + 0.099990845 + + + 2025-07-24T06:44:11.4 + 161.7 + 0.1000061 + + + 2025-07-24T06:44:11.722 + 161.6 + 0.099990845 + + + 2025-07-24T06:44:10 + 161.5 + 0.1000061 + + + 2025-07-24T06:44:12.129 + 161.3 + 0.19999695 + + + 2025-07-24T06:44:12 + 161.2 + 0.1000061 + + + 2025-07-24T06:44:10 + 161.1 + 0.099990845 + + + 2025-07-24T06:44:12.534 + 161 + 0.1000061 + + + 2025-07-24T06:44:12 + 160.8 + 0.19999695 + + + 2025-07-24T06:44:12.943 + 160.7 + 0.1000061 + + + 2025-07-24T06:44:13 + 160.6 + 0.099990845 + + + 2025-07-24T06:44:12 + 160.5 + 0.1000061 + + + 2025-07-24T06:44:13.361 + 160.4 + 0.1000061 + + + 2025-07-24T06:44:13.564 + 160.3 + 0.099990845 + + + 2025-07-24T06:44:13.766 + 160.1 + 0.19999695 + + + 2025-07-24T06:44:13.766 + 160 + 0.1000061 + + + 2025-07-24T06:44:13 + 159.9 + 0.1000061 + + + 2025-07-24T06:44:14 + 159.8 + 0.099990845 + + + 2025-07-24T06:44:14.391 + 159.7 + 0.1000061 + + + 2025-07-24T06:44:14 + 159.6 + 0.099990845 + + + 2025-07-24T06:44:14.601 + 159.4 + 0.2000122 + + + 2025-07-24T06:44:14.805 + 159.3 + 0.099990845 + + + 2025-07-24T06:44:15.01 + 159.2 + 0.1000061 + + + 2025-07-24T06:44:15 + 159.1 + 0.099990845 + + + 2025-07-24T06:44:15.19 + 158.9 + 0.2000122 + + + 2025-07-24T06:44:15.419 + 158.8 + 0.099990845 + + + 2025-07-24T06:44:15.621 + 158.7 + 0.1000061 + + + 2025-07-24T06:44:15.826 + 158.6 + 0.099990845 + + + 2025-07-24T06:44:15.826 + 158.5 + 0.1000061 + + + 2025-07-24T06:44:15.98 + 158.4 + 0.1000061 + + + 2025-07-24T06:44:16 + 158.3 + 0.099990845 + + + 2025-07-24T06:44:16.433 + 158.2 + 0.1000061 + + + 2025-07-24T06:44:16.635 + 158 + 0.19999695 + + + 2025-07-24T06:44:16.635 + 157.9 + 0.1000061 + + + 2025-07-24T06:44:16 + 157.8 + 0.099990845 + + + 2025-07-24T06:44:17 + 157.7 + 0.1000061 + + + 2025-07-24T06:44:17.249 + 157.6 + 0.099990845 + + + 2025-07-24T06:44:16 + 157.5 + 0.1000061 + + + 2025-07-24T06:44:17.453 + 157.4 + 0.1000061 + + + 2025-07-24T06:44:17.5 + 157.2 + 0.19999695 + + + 2025-07-24T06:44:17.86 + 157.1 + 0.099990845 + + + 2025-07-24T06:44:18 + 157 + 0.1000061 + + + 2025-07-24T06:44:17 + 156.9 + 0.1000061 + + + 2025-07-24T06:44:18 + 156.8 + 0.099990845 + + + 2025-07-24T06:44:17 + 156.7 + 0.1000061 + + + 2025-07-24T06:44:18.693 + 156.6 + 0.099990845 + + + 2025-07-24T06:44:18.693 + 156.5 + 0.1000061 + + + 2025-07-24T06:44:18 + 156.4 + 0.1000061 + + + 2025-07-24T06:44:19 + 156.2 + 0.19999695 + + + 2025-07-24T06:44:18 + 156 + 0.19999695 + + + 2025-07-24T06:44:19.51 + 155.9 + 0.1000061 + + + 2025-07-24T06:44:19.51 + 155.8 + 0.099990845 + + + 2025-07-24T06:44:19.712 + 155.7 + 0.1000061 + + + 2025-07-24T06:44:19.92 + 155.6 + 0.099990845 + + + 2025-07-24T06:44:20.122 + 155.6 + 0 + + + 2025-07-24T06:44:20.339 + 155.4 + 0.2000122 + + + 2025-07-24T06:44:20.339 + 155.3 + 0.099990845 + + + 2025-07-24T06:44:20.543 + 155.2 + 0.1000061 + + + 2025-07-24T06:44:20.75 + 155 + 0.19999695 + + + 2025-07-24T06:44:20.955 + 154.9 + 0.1000061 + + + 2025-07-24T06:44:20.8 + 154.8 + 0.099990845 + + + 2025-07-24T06:44:21 + 154.7 + 0.1000061 + + + 2025-07-24T06:44:21.363 + 154.5 + 0.19999695 + + + 2025-07-24T06:44:21.572 + 154.4 + 0.1000061 + + + 2025-07-24T06:44:21.572 + 154.3 + 0.099990845 + + + 2025-07-24T06:44:21 + 154.2 + 0.1000061 + + + 2025-07-24T06:44:22 + 154.1 + 0.099990845 + + + 2025-07-24T06:44:22.184 + 154 + 0.1000061 + + + 2025-07-24T06:44:22.399 + 153.9 + 0.1000061 + + + 2025-07-24T06:44:22 + 153.7 + 0.19999695 + + + 2025-07-24T06:44:22.59 + 153.6 + 0.099990845 + + + 2025-07-24T06:44:22.813 + 153.5 + 0.1000061 + + + 2025-07-24T06:44:23.026 + 153.3 + 0.19999695 + + + 2025-07-24T06:44:22 + 153.2 + 0.1000061 + + + 2025-07-24T06:44:22 + 153.1 + 0.099990845 + + + 2025-07-24T06:44:23 + 153 + 0.1000061 + + + 2025-07-24T06:44:23.644 + 152.9 + 0.1000061 + + + 2025-07-24T06:44:23.847 + 152.7 + 0.19999695 + + + 2025-07-24T06:44:23 + 152.6 + 0.099990845 + + + 2025-07-24T06:44:24 + 152.5 + 0.1000061 + + + 2025-07-24T06:44:24 + 152.4 + 0.1000061 + + + 2025-07-24T06:44:24.463 + 152.3 + 0.099990845 + + + 2025-07-24T06:44:24 + 152.1 + 0.19999695 + + + 2025-07-24T06:44:24.668 + 152 + 0.1000061 + + + 2025-07-24T06:44:24.874 + 151.9 + 0.1000061 + + + 2025-07-24T06:44:25.077 + 151.8 + 0.099990845 + + + 2025-07-24T06:44:25.29 + 151.6 + 0.19999695 + + + 2025-07-24T06:44:24 + 151.5 + 0.1000061 + + + 2025-07-24T06:44:25.497 + 151.4 + 0.1000061 + + + 2025-07-24T06:44:25.703 + 151.3 + 0.099990845 + + + 2025-07-24T06:44:25.905 + 151.2 + 0.1000061 + + + 2025-07-24T06:44:25.89 + 151.1 + 0.099990845 + + + 2025-07-24T06:44:26 + 150.9 + 0.2000122 + + + 2025-07-24T06:44:26.31 + 150.8 + 0.099990845 + + + 2025-07-24T06:44:26.523 + 150.7 + 0.1000061 + + + 2025-07-24T06:44:26.725 + 150.6 + 0.099990845 + + + 2025-07-24T06:44:26 + 150.5 + 0.1000061 + + + 2025-07-24T06:44:26.941 + 150.4 + 0.1000061 + + + 2025-07-24T06:44:27 + 150.3 + 0.099990845 + + + 2025-07-24T06:44:27.352 + 150.2 + 0.1000061 + + + 2025-07-24T06:44:27.352 + 150.1 + 0.099990845 + + + 2025-07-24T06:44:26 + 149.9 + 0.2000122 + + + 2025-07-24T06:44:27.764 + 149.8 + 0.099990845 + + + 2025-07-24T06:44:27.966 + 149.7 + 0.1000061 + + + 2025-07-24T06:44:28.175 + 149.5 + 0.19999695 + + + 2025-07-24T06:44:28 + 149.4 + 0.1000061 + + + 2025-07-24T06:44:27 + 149.3 + 0.099990845 + + + 2025-07-24T06:44:28.582 + 149.2 + 0.1000061 + + + 2025-07-24T06:44:28.789 + 149.1 + 0.099990845 + + + 2025-07-24T06:44:28 + 149 + 0.1000061 + + + 2025-07-24T06:44:29 + 148.9 + 0.1000061 + + + 2025-07-24T06:44:29 + 148.7 + 0.19999695 + + + 2025-07-24T06:44:29.427 + 148.6 + 0.099990845 + + + 2025-07-24T06:44:29.427 + 148.4 + 0.2000122 + + + 2025-07-24T06:44:29.634 + 148.3 + 0.099990845 + + + 2025-07-24T06:44:29.836 + 148.2 + 0.1000061 + + + 2025-07-24T06:44:30 + 148.1 + 0.099990845 + + + 2025-07-24T06:44:30.241 + 148 + 0.1000061 + + + 2025-07-24T06:44:30 + 147.9 + 0.1000061 + + + 2025-07-24T06:44:30 + 147.8 + 0.099990845 + + + 2025-07-24T06:44:30.655 + 147.7 + 0.1000061 + + + 2025-07-24T06:44:30.858 + 147.5 + 0.19999695 + + + 2025-07-24T06:44:30.9 + 147.4 + 0.1000061 + + + 2025-07-24T06:44:31 + 147.3 + 0.099990845 + + + 2025-07-24T06:44:30 + 147.2 + 0.1000061 + + + 2025-07-24T06:44:31.482 + 147 + 0.19999695 + + + 2025-07-24T06:44:31.684 + 146.9 + 0.1000061 + + + 2025-07-24T06:44:31.58 + 146.8 + 0.099990845 + + + 2025-07-24T06:44:31.89 + 146.7 + 0.1000061 + + + 2025-07-24T06:44:32.1 + 146.6 + 0.099990845 + + + 2025-07-24T06:44:32.31 + 146.4 + 0.2000122 + + + 2025-07-24T06:44:32.31 + 146.3 + 0.099990845 + + + 2025-07-24T06:44:31.58 + 146.2 + 0.1000061 + + + 2025-07-24T06:44:32.737 + 146.1 + 0.099990845 + + + 2025-07-24T06:44:32.939 + 146 + 0.1000061 + + + 2025-07-24T06:44:32 + 145.9 + 0.1000061 + + + 2025-07-24T06:44:32 + 145.8 + 0.099990845 + + + 2025-07-24T06:44:33.352 + 145.7 + 0.1000061 + + + 2025-07-24T06:44:33.56 + 145.5 + 0.19999695 + + + 2025-07-24T06:44:33.762 + 145.4 + 0.1000061 + + + 2025-07-24T06:44:33 + 145.3 + 0.099990845 + + + 2025-07-24T06:44:34 + 145.2 + 0.1000061 + + + 2025-07-24T06:44:34 + 145 + 0.19999695 + + + 2025-07-24T06:44:34.376 + 144.9 + 0.1000061 + + + 2025-07-24T06:44:34.578 + 144.8 + 0.099990845 + + + 2025-07-24T06:44:34.578 + 144.7 + 0.1000061 + + + 2025-07-24T06:44:34.781 + 144.6 + 0.099990845 + + + 2025-07-24T06:44:35 + 144.5 + 0.1000061 + + + 2025-07-24T06:44:35 + 144.4 + 0.1000061 + + + 2025-07-24T06:44:34 + 144.3 + 0.099990845 + + + 2025-07-24T06:44:35.395 + 144.1 + 0.19999695 + + + 2025-07-24T06:44:35.6 + 144 + 0.1000061 + + + 2025-07-24T06:44:35.803 + 143.9 + 0.1000061 + + + 2025-07-24T06:44:35.69 + 143.8 + 0.099990845 + + + 2025-07-24T06:44:36 + 143.7 + 0.1000061 + + + 2025-07-24T06:44:36 + 143.5 + 0.19999695 + + + 2025-07-24T06:44:36.413 + 143.4 + 0.1000061 + + + 2025-07-24T06:44:36.621 + 143.3 + 0.099990845 + + + 2025-07-24T06:44:35.69 + 143.2 + 0.1000061 + + + 2025-07-24T06:44:36.69 + 143.1 + 0.099990845 + + + 2025-07-24T06:44:37 + 143 + 0.1000061 + + + 2025-07-24T06:44:37.24 + 142.9 + 0.1000061 + + + 2025-07-24T06:44:37.448 + 142.7 + 0.19999695 + + + 2025-07-24T06:44:36.69 + 142.6 + 0.099990845 + + + 2025-07-24T06:44:37.53 + 142.5 + 0.1000061 + + + 2025-07-24T06:44:37.852 + 142.4 + 0.1000061 + + + 2025-07-24T06:44:38 + 142.3 + 0.099990845 + + + 2025-07-24T06:44:38.19 + 142.1 + 0.19999695 + + + 2025-07-24T06:44:37.59 + 142 + 0.1000061 + + + 2025-07-24T06:44:38 + 142 + 0 + + + 2025-07-24T06:44:38.693 + 141.9 + 0.1000061 + + + 2025-07-24T06:44:38.896 + 141.8 + 0.099990845 + + + 2025-07-24T06:44:38.896 + 141.7 + 0.1000061 + + + 2025-07-24T06:44:39 + 141.6 + 0.099990845 + + + 2025-07-24T06:44:38 + 141.4 + 0.2000122 + + + 2025-07-24T06:44:39.511 + 141.3 + 0.099990845 + + + 2025-07-24T06:44:39.511 + 141.2 + 0.1000061 + + + 2025-07-24T06:44:38.7 + 141.1 + 0.099990845 + + + 2025-07-24T06:44:39.919 + 141 + 0.1000061 + + + 2025-07-24T06:44:40 + 140.9 + 0.1000061 + + + 2025-07-24T06:44:40.323 + 140.7 + 0.19999695 + + + 2025-07-24T06:44:40.323 + 140.6 + 0.099990845 + + + 2025-07-24T06:44:39.59 + 140.5 + 0.1000061 + + + 2025-07-24T06:44:40.728 + 140.5 + 0 + + + 2025-07-24T06:44:40.59 + 140.4 + 0.1000061 + + + 2025-07-24T06:44:40 + 140.3 + 0.099990845 + + + 2025-07-24T06:44:41 + 140.1 + 0.19999695 + + + 2025-07-24T06:44:40.59 + 140 + 0.1000061 + + + 2025-07-24T06:44:40.59 + 139.9 + 0.1000061 + + + 2025-07-24T06:44:41 + 139.8 + 0.099990845 + + + 2025-07-24T06:44:41 + 139.7 + 0.1000061 + + + 2025-07-24T06:44:42 + 139.6 + 0.099990845 + + + 2025-07-24T06:44:42 + 139.5 + 0.1000061 + + + 2025-07-24T06:44:42 + 139.4 + 0.1000061 + + + 2025-07-24T06:44:41.59 + 139.3 + 0.099990845 + + + 2025-07-24T06:44:42.4 + 139.2 + 0.1000061 + + + 2025-07-24T06:44:42.4 + 139 + 0.19999695 + + + 2025-07-24T06:44:43 + 138.9 + 0.1000061 + + + 2025-07-24T06:44:42 + 138.8 + 0.099990845 + + + 2025-07-24T06:44:42.69 + 138.7 + 0.1000061 + + + 2025-07-24T06:44:43 + 138.6 + 0.099990845 + + + 2025-07-24T06:44:43 + 138.6 + 0 + + + 2025-07-24T06:44:43.69 + 138.4 + 0.2000122 + + + 2025-07-24T06:44:43.69 + 138.3 + 0.099990845 + + + 2025-07-24T06:44:43.69 + 138.3 + 0 + + + 2025-07-24T06:44:44 + 138.1 + 0.19999695 + + + 2025-07-24T06:44:44 + 138 + 0.1000061 + + + 2025-07-24T06:44:43.69 + 137.9 + 0.1000061 + + + 2025-07-24T06:44:43.69 + 137.8 + 0.099990845 + + + 2025-07-24T06:44:43.69 + 137.7 + 0.1000061 + + + 2025-07-24T06:44:44.79 + 137.5 + 0.19999695 + + + 2025-07-24T06:44:45 + 137.4 + 0.1000061 + + + 2025-07-24T06:44:44 + 137.3 + 0.099990845 + + + 2025-07-24T06:44:44.79 + 137.2 + 0.1000061 + + + 2025-07-24T06:44:44.79 + 137.1 + 0.099990845 + + + 2025-07-24T06:44:45.8 + 137 + 0.1000061 + + + 2025-07-24T06:44:46 + 136.9 + 0.1000061 + + + 2025-07-24T06:44:46 + 136.8 + 0.099990845 + + + 2025-07-24T06:44:46.373 + 136.7 + 0.1000061 + + + 2025-07-24T06:44:46.579 + 136.6 + 0.099990845 + + + 2025-07-24T06:44:46.53 + 136.5 + 0.1000061 + + + 2025-07-24T06:44:46.781 + 136.4 + 0.1000061 + + + 2025-07-24T06:44:47 + 136.3 + 0.099990845 + + + 2025-07-24T06:44:47 + 136.1 + 0.19999695 + + + 2025-07-24T06:44:46 + 136 + 0.1000061 + + + 2025-07-24T06:44:46.7 + 135.9 + 0.1000061 + + + 2025-07-24T06:44:47.598 + 135.7 + 0.19999695 + + + 2025-07-24T06:44:47.801 + 135.6 + 0.099990845 + + + 2025-07-24T06:44:48.005 + 135.5 + 0.1000061 + + + 2025-07-24T06:44:48 + 135.5 + 0 + + + 2025-07-24T06:44:47.8 + 135.4 + 0.1000061 + + + 2025-07-24T06:44:48 + 135.4 + 0 + + + 2025-07-24T06:44:48.618 + 135.3 + 0.099990845 + + + 2025-07-24T06:44:48.821 + 135.2 + 0.1000061 + + + 2025-07-24T06:44:48.821 + 135.1 + 0.099990845 + + + 2025-07-24T06:44:48 + 135 + 0.1000061 + + + 2025-07-24T06:44:49.236 + 134.8 + 0.19999695 + + + 2025-07-24T06:44:49.439 + 134.6 + 0.19999695 + + + 2025-07-24T06:44:48.8 + 134.5 + 0.1000061 + + + 2025-07-24T06:44:49.643 + 134.4 + 0.1000061 + + + 2025-07-24T06:44:49.851 + 134.3 + 0.099990845 + + + 2025-07-24T06:44:50 + 134.2 + 0.1000061 + + + 2025-07-24T06:44:50.257 + 134.1 + 0.099990845 + + + 2025-07-24T06:44:50 + 134.1 + 0 + + + 2025-07-24T06:44:50 + 134 + 0.1000061 + + + 2025-07-24T06:44:50.663 + 134 + 0 + + + 2025-07-24T06:44:50 + 133.9 + 0.1000061 + + + 2025-07-24T06:44:51 + 133.7 + 0.19999695 + + + 2025-07-24T06:44:51 + 133.6 + 0.099990845 + + + 2025-07-24T06:44:50 + 133.4 + 0.2000122 + + + 2025-07-24T06:44:51.509 + 133.3 + 0.099990845 + + + 2025-07-24T06:44:51.53 + 133.2 + 0.1000061 + + + 2025-07-24T06:44:51.715 + 133.1 + 0.099990845 + + + 2025-07-24T06:44:51.927 + 133 + 0.1000061 + + + 2025-07-24T06:44:52.135 + 132.9 + 0.1000061 + + + 2025-07-24T06:44:52.338 + 132.8 + 0.099990845 + + + 2025-07-24T06:44:51.8 + 132.7 + 0.1000061 + + + 2025-07-24T06:44:52.543 + 132.6 + 0.099990845 + + + 2025-07-24T06:44:52.745 + 132.5 + 0.1000061 + + + 2025-07-24T06:44:52.95 + 132.5 + 0 + + + 2025-07-24T06:44:53.154 + 132.4 + 0.1000061 + + + 2025-07-24T06:44:52.8 + 132.2 + 0.19999695 + + + 2025-07-24T06:44:53 + 132.1 + 0.099990845 + + + 2025-07-24T06:44:53.565 + 132 + 0.1000061 + + + 2025-07-24T06:44:53.768 + 131.8 + 0.19999695 + + + 2025-07-24T06:44:53.768 + 131.7 + 0.1000061 + + + 2025-07-24T06:44:53.8 + 131.5 + 0.19999695 + + + 2025-07-24T06:44:54 + 131.4 + 0.1000061 + + + 2025-07-24T06:44:54.374 + 131.4 + 0 + + + 2025-07-24T06:44:54.579 + 131.3 + 0.099990845 + + + 2025-07-24T06:44:54.579 + 131.2 + 0.1000061 + + + 2025-07-24T06:44:54.785 + 131.1 + 0.099990845 + + + 2025-07-24T06:44:55 + 131 + 0.1000061 + + + 2025-07-24T06:44:55 + 130.9 + 0.1000061 + + + 2025-07-24T06:44:54 + 130.8 + 0.099990845 + + + 2025-07-24T06:44:55.403 + 130.7 + 0.1000061 + + + 2025-07-24T06:44:55.605 + 130.6 + 0.099990845 + + + 2025-07-24T06:44:55 + 130.4 + 0.2000122 + + + 2025-07-24T06:44:56.012 + 130.3 + 0.099990845 + + + 2025-07-24T06:44:56 + 130.2 + 0.1000061 + + + 2025-07-24T06:44:56 + 130.1 + 0.099990845 + + + 2025-07-24T06:44:56 + 130 + 0.1000061 + + + 2025-07-24T06:44:56.54 + 129.9 + 0.1000061 + + + 2025-07-24T06:44:56.829 + 129.8 + 0.099990845 + + + 2025-07-24T06:44:56.829 + 129.7 + 0.1000061 + + + 2025-07-24T06:44:56 + 129.6 + 0.099990845 + + + 2025-07-24T06:44:57.233 + 129.5 + 0.1000061 + + + 2025-07-24T06:44:57.436 + 129.4 + 0.1000061 + + + 2025-07-24T06:44:57.4 + 129.3 + 0.099990845 + + + 2025-07-24T06:44:57.643 + 129.2 + 0.1000061 + + + 2025-07-24T06:44:57 + 129.1 + 0.099990845 + + + 2025-07-24T06:44:58 + 128.9 + 0.2000122 + + + 2025-07-24T06:44:58.264 + 128.8 + 0.099990845 + + + 2025-07-24T06:44:58.2 + 128.7 + 0.1000061 + + + 2025-07-24T06:44:58 + 128.6 + 0.099990845 + + + 2025-07-24T06:44:57.8 + 128.4 + 0.2000122 + + + 2025-07-24T06:44:58.883 + 128.3 + 0.099990845 + + + 2025-07-24T06:44:59 + 128.2 + 0.1000061 + + + 2025-07-24T06:44:59 + 128.1 + 0.099990845 + + + 2025-07-24T06:44:58 + 128 + 0.1000061 + + + 2025-07-24T06:44:58.8 + 128 + 0 + + + 2025-07-24T06:44:59.7 + 127.9 + 0.099998474 + + + 2025-07-24T06:44:59.7 + 127.8 + 0.099998474 + + + 2025-07-24T06:44:59 + 127.6 + 0.20000458 + + + 2025-07-24T06:45:00.111 + 127.5 + 0.099998474 + + + 2025-07-24T06:45:00.313 + 127.4 + 0.099998474 + + + 2025-07-24T06:45:00 + 127.3 + 0.099998474 + + + 2025-07-24T06:45:00 + 127.2 + 0.1000061 + + + 2025-07-24T06:45:00 + 127.1 + 0.099998474 + + + 2025-07-24T06:45:00.918 + 127 + 0.099998474 + + + 2025-07-24T06:45:00 + 126.9 + 0.099998474 + + + 2025-07-24T06:45:00 + 126.8 + 0.099998474 + + + 2025-07-24T06:45:01.338 + 126.7 + 0.1000061 + + + 2025-07-24T06:45:01.4 + 126.5 + 0.19999695 + + + 2025-07-24T06:45:01.745 + 126.4 + 0.099998474 + + + 2025-07-24T06:45:01.949 + 126.3 + 0.099998474 + + + 2025-07-24T06:45:02 + 126.2 + 0.1000061 + + + 2025-07-24T06:45:02 + 126.1 + 0.099998474 + + + 2025-07-24T06:45:01.8 + 126.1 + 0 + + + 2025-07-24T06:45:02.563 + 126 + 0.099998474 + + + 2025-07-24T06:45:02.563 + 125.9 + 0.099998474 + + + 2025-07-24T06:45:02 + 125.8 + 0.099998474 + + + 2025-07-24T06:45:03 + 125.7 + 0.1000061 + + + 2025-07-24T06:45:02.8 + 125.5 + 0.19999695 + + + 2025-07-24T06:45:03.377 + 125.4 + 0.099998474 + + + 2025-07-24T06:45:03 + 125.2 + 0.20000458 + + + 2025-07-24T06:45:02.8 + 125.1 + 0.099998474 + + + 2025-07-24T06:45:03.789 + 125 + 0.099998474 + + + 2025-07-24T06:45:03 + 124.9 + 0.099998474 + + + 2025-07-24T06:45:03.93 + 124.8 + 0.099998474 + + + 2025-07-24T06:45:04 + 124.7 + 0.1000061 + + + 2025-07-24T06:45:04 + 124.6 + 0.099998474 + + + 2025-07-24T06:45:04.61 + 124.5 + 0.099998474 + + + 2025-07-24T06:45:04.814 + 124.4 + 0.099998474 + + + 2025-07-24T06:45:04 + 124.3 + 0.099998474 + + + 2025-07-24T06:45:04 + 124.2 + 0.1000061 + + + 2025-07-24T06:45:04 + 124.1 + 0.099998474 + + + 2025-07-24T06:45:05.426 + 124 + 0.099998474 + + + 2025-07-24T06:45:05.628 + 123.9 + 0.099998474 + + + 2025-07-24T06:45:05.61 + 123.7 + 0.20000458 + + + 2025-07-24T06:45:05.834 + 123.6 + 0.099998474 + + + 2025-07-24T06:45:06 + 123.5 + 0.099998474 + + + 2025-07-24T06:45:06 + 123.4 + 0.099998474 + + + 2025-07-24T06:45:06 + 123.3 + 0.099998474 + + + 2025-07-24T06:45:06.5 + 123.1 + 0.20000458 + + + 2025-07-24T06:45:06.647 + 123 + 0.099998474 + + + 2025-07-24T06:45:06.849 + 122.9 + 0.099998474 + + + 2025-07-24T06:45:07.058 + 122.8 + 0.099998474 + + + 2025-07-24T06:45:07 + 122.7 + 0.1000061 + + + 2025-07-24T06:45:07.3 + 122.6 + 0.099998474 + + + 2025-07-24T06:45:07.462 + 122.5 + 0.099998474 + + + 2025-07-24T06:45:07.669 + 122.4 + 0.099998474 + + + 2025-07-24T06:45:07.882 + 122.3 + 0.099998474 + + + 2025-07-24T06:45:07.882 + 122.2 + 0.1000061 + + + 2025-07-24T06:45:07.9 + 122.1 + 0.099998474 + + + 2025-07-24T06:45:08.29 + 122 + 0.099998474 + + + 2025-07-24T06:45:08 + 121.8 + 0.19999695 + + + 2025-07-24T06:45:07.9 + 121.7 + 0.1000061 + + + 2025-07-24T06:45:08.694 + 121.6 + 0.099998474 + + + 2025-07-24T06:45:08 + 121.5 + 0.099998474 + + + 2025-07-24T06:45:08 + 121.4 + 0.099998474 + + + 2025-07-24T06:45:08 + 121.3 + 0.099998474 + + + 2025-07-24T06:45:08.97 + 121.2 + 0.1000061 + + + 2025-07-24T06:45:09.516 + 121.1 + 0.099998474 + + + 2025-07-24T06:45:09.724 + 121 + 0.099998474 + + + 2025-07-24T06:45:09.926 + 120.9 + 0.099998474 + + + 2025-07-24T06:45:10 + 120.7 + 0.20000458 + + + 2025-07-24T06:45:10 + 120.6 + 0.099998474 + + + 2025-07-24T06:45:10.334 + 120.5 + 0.099998474 + + + 2025-07-24T06:45:10.537 + 120.4 + 0.099998474 + + + 2025-07-24T06:45:10.747 + 120.3 + 0.099998474 + + + 2025-07-24T06:45:10.747 + 120.2 + 0.1000061 + + + 2025-07-24T06:45:11 + 120.1 + 0.099998474 + + + 2025-07-24T06:45:11 + 120 + 0.099998474 + + + 2025-07-24T06:45:11.363 + 119.8 + 0.19999695 + + + 2025-07-24T06:45:11.39 + 119.7 + 0.1000061 + + + 2025-07-24T06:45:11.569 + 119.6 + 0.099998474 + + + 2025-07-24T06:45:11.776 + 119.5 + 0.099998474 + + + 2025-07-24T06:45:11.979 + 119.4 + 0.099998474 + + + 2025-07-24T06:45:12 + 119.3 + 0.099998474 + + + 2025-07-24T06:45:11.97 + 119.2 + 0.1000061 + + + 2025-07-24T06:45:12 + 119 + 0.19999695 + + + 2025-07-24T06:45:12.591 + 119 + 0 + + + 2025-07-24T06:45:12.793 + 118.9 + 0.099998474 + + + 2025-07-24T06:45:12.997 + 118.8 + 0.099998474 + + + 2025-07-24T06:45:12 + 118.7 + 0.1000061 + + + 2025-07-24T06:45:12 + 118.5 + 0.19999695 + + + 2025-07-24T06:45:13 + 118.4 + 0.099998474 + + + 2025-07-24T06:45:13.606 + 118.3 + 0.099998474 + + + 2025-07-24T06:45:13.606 + 118.1 + 0.20000458 + + + 2025-07-24T06:45:13 + 118 + 0.099998474 + + + 2025-07-24T06:45:14 + 117.9 + 0.099998474 + + + 2025-07-24T06:45:14 + 117.7 + 0.20000458 + + + 2025-07-24T06:45:14.423 + 117.6 + 0.099998474 + + + 2025-07-24T06:45:14 + 117.5 + 0.099998474 + + + 2025-07-24T06:45:13.9 + 117.4 + 0.099998474 + + + 2025-07-24T06:45:14.828 + 117.3 + 0.099998474 + + + 2025-07-24T06:45:15 + 117.2 + 0.1000061 + + + 2025-07-24T06:45:14.93 + 117.1 + 0.099998474 + + + 2025-07-24T06:45:14 + 117 + 0.099998474 + + + 2025-07-24T06:45:15.459 + 116.9 + 0.099998474 + + + 2025-07-24T06:45:15.664 + 116.8 + 0.099998474 + + + 2025-07-24T06:45:15.871 + 116.7 + 0.1000061 + + + 2025-07-24T06:45:15.871 + 116.6 + 0.099998474 + + + 2025-07-24T06:45:16 + 116.5 + 0.099998474 + + + 2025-07-24T06:45:16 + 116.3 + 0.19999695 + + + 2025-07-24T06:45:16 + 116.2 + 0.1000061 + + + 2025-07-24T06:45:16.685 + 116 + 0.19999695 + + + 2025-07-24T06:45:16.685 + 115.9 + 0.099998474 + + + 2025-07-24T06:45:16.892 + 115.8 + 0.099998474 + + + 2025-07-24T06:45:16 + 115.7 + 0.1000061 + + + 2025-07-24T06:45:16 + 115.6 + 0.099998474 + + + 2025-07-24T06:45:16 + 115.4 + 0.19999695 + + + 2025-07-24T06:45:17.521 + 115.4 + 0 + + + 2025-07-24T06:45:17.723 + 115.3 + 0.099998474 + + + 2025-07-24T06:45:17.925 + 115.2 + 0.1000061 + + + 2025-07-24T06:45:17 + 115.1 + 0.099998474 + + + 2025-07-24T06:45:18 + 115 + 0.099998474 + + + 2025-07-24T06:45:18 + 114.9 + 0.099998474 + + + 2025-07-24T06:45:18.09 + 114.7 + 0.20000458 + + + 2025-07-24T06:45:18.09 + 114.6 + 0.099998474 + + + 2025-07-24T06:45:18 + 114.4 + 0.19999695 + + + 2025-07-24T06:45:19 + 114.3 + 0.099998474 + + + 2025-07-24T06:45:19 + 114.1 + 0.20000458 + + + 2025-07-24T06:45:19.09 + 114 + 0.099998474 + + + 2025-07-24T06:45:19.09 + 113.9 + 0.099998474 + + + 2025-07-24T06:45:19.09 + 113.8 + 0.099998474 + + + 2025-07-24T06:45:19 + 113.6 + 0.20000458 + + + 2025-07-24T06:45:19 + 113.5 + 0.099998474 + + + 2025-07-24T06:45:20 + 113.4 + 0.099998474 + + + 2025-07-24T06:45:20 + 113.3 + 0.099998474 + + + 2025-07-24T06:45:20 + 113.2 + 0.1000061 + + + 2025-07-24T06:45:20.5 + 113 + 0.19999695 + + + 2025-07-24T06:45:20.5 + 112.9 + 0.099998474 + + + 2025-07-24T06:45:20 + 112.8 + 0.099998474 + + + 2025-07-24T06:45:20 + 112.7 + 0.1000061 + + + 2025-07-24T06:45:20 + 112.6 + 0.099998474 + + + 2025-07-24T06:45:21.09 + 112.5 + 0.099998474 + + + 2025-07-24T06:45:21.09 + 112.4 + 0.099998474 + + + 2025-07-24T06:45:21.09 + 112.3 + 0.099998474 + + + 2025-07-24T06:45:21 + 112.1 + 0.20000458 + + + 2025-07-24T06:45:22 + 112 + 0.099998474 + + + 2025-07-24T06:45:22 + 111.9 + 0.099998474 + + + 2025-07-24T06:45:22 + 111.8 + 0.099998474 + + + 2025-07-24T06:45:22 + 111.6 + 0.20000458 + + + 2025-07-24T06:45:22.743 + 111.5 + 0.099998474 + + + 2025-07-24T06:45:22.743 + 111.4 + 0.099998474 + + + 2025-07-24T06:45:22.83 + 111.2 + 0.20000458 + + + 2025-07-24T06:45:22 + 111.1 + 0.099998474 + + + 2025-07-24T06:45:23.356 + 111 + 0.099998474 + + + 2025-07-24T06:45:23.561 + 110.9 + 0.099998474 + + + 2025-07-24T06:45:23.561 + 110.8 + 0.099998474 + + + 2025-07-24T06:45:23.09 + 110.7 + 0.1000061 + + + 2025-07-24T06:45:23.972 + 110.5 + 0.19999695 + + + 2025-07-24T06:45:24 + 110.4 + 0.099998474 + + + 2025-07-24T06:45:24.08 + 110.3 + 0.099998474 + + + 2025-07-24T06:45:24 + 110.2 + 0.1000061 + + + 2025-07-24T06:45:24.08 + 110.1 + 0.099998474 + + + 2025-07-24T06:45:24.79 + 109.9 + 0.19999695 + + + 2025-07-24T06:45:24.993 + 109.8 + 0.099998474 + + + 2025-07-24T06:45:24 + 109.6 + 0.20000458 + + + 2025-07-24T06:45:24 + 109.5 + 0.099998474 + + + 2025-07-24T06:45:25.401 + 109.4 + 0.099998474 + + + 2025-07-24T06:45:25.613 + 109.2 + 0.20000458 + + + 2025-07-24T06:45:25.613 + 109.1 + 0.099998474 + + + 2025-07-24T06:45:25.821 + 109 + 0.099998474 + + + 2025-07-24T06:45:26 + 108.9 + 0.099998474 + + + 2025-07-24T06:45:26 + 108.8 + 0.099998474 + + + 2025-07-24T06:45:26.437 + 108.7 + 0.1000061 + + + 2025-07-24T06:45:26 + 108.6 + 0.099998474 + + + 2025-07-24T06:45:26.646 + 108.5 + 0.099998474 + + + 2025-07-24T06:45:26.85 + 108.4 + 0.099998474 + + + 2025-07-24T06:45:27.052 + 108.2 + 0.20000458 + + + 2025-07-24T06:45:27.11 + 108.1 + 0.099998474 + + + 2025-07-24T06:45:26 + 108 + 0.099998474 + + + 2025-07-24T06:45:27.474 + 107.8 + 0.19999695 + + + 2025-07-24T06:45:27.677 + 107.7 + 0.1000061 + + + 2025-07-24T06:45:27.879 + 107.6 + 0.099998474 + + + 2025-07-24T06:45:27 + 107.4 + 0.19999695 + + + 2025-07-24T06:45:28.083 + 107.3 + 0.099998474 + + + 2025-07-24T06:45:28.285 + 107.2 + 0.1000061 + + + 2025-07-24T06:45:28 + 107 + 0.19999695 + + + 2025-07-24T06:45:28 + 106.9 + 0.099998474 + + + 2025-07-24T06:45:28.19 + 106.8 + 0.099998474 + + + 2025-07-24T06:45:28.911 + 106.7 + 0.1000061 + + + 2025-07-24T06:45:28 + 106.5 + 0.19999695 + + + 2025-07-24T06:45:29.321 + 106.4 + 0.099998474 + + + 2025-07-24T06:45:29.321 + 106.3 + 0.099998474 + + + 2025-07-24T06:45:29.2 + 106.2 + 0.1000061 + + + 2025-07-24T06:45:29.727 + 106 + 0.19999695 + + + 2025-07-24T06:45:29.934 + 105.9 + 0.099998474 + + + 2025-07-24T06:45:30.136 + 105.8 + 0.099998474 + + + 2025-07-24T06:45:30 + 105.7 + 0.1000061 + + + 2025-07-24T06:45:30.341 + 105.5 + 0.19999695 + + + 2025-07-24T06:45:30.543 + 105.4 + 0.099998474 + + + 2025-07-24T06:45:30.772 + 105.3 + 0.099998474 + + + 2025-07-24T06:45:30 + 105.2 + 0.1000061 + + + 2025-07-24T06:45:31 + 105 + 0.19999695 + + + 2025-07-24T06:45:31 + 104.9 + 0.099998474 + + + 2025-07-24T06:45:31.38 + 104.7 + 0.20000458 + + + 2025-07-24T06:45:31.38 + 104.6 + 0.099998474 + + + 2025-07-24T06:45:31.583 + 104.5 + 0.099998474 + + + 2025-07-24T06:45:31.786 + 104.3 + 0.19999695 + + + 2025-07-24T06:45:32 + 104.2 + 0.1000061 + + + 2025-07-24T06:45:32 + 104 + 0.19999695 + + + 2025-07-24T06:45:32 + 103.9 + 0.099998474 + + + 2025-07-24T06:45:32 + 103.8 + 0.099998474 + + + 2025-07-24T06:45:32.6 + 103.6 + 0.20000458 + + + 2025-07-24T06:45:32.805 + 103.5 + 0.099998474 + + + 2025-07-24T06:45:33.012 + 103.4 + 0.099998474 + + + 2025-07-24T06:45:32 + 103.3 + 0.099998474 + + + 2025-07-24T06:45:32 + 103.1 + 0.20000458 + + + 2025-07-24T06:45:33 + 103 + 0.099998474 + + + 2025-07-24T06:45:33.626 + 102.9 + 0.099998474 + + + 2025-07-24T06:45:33 + 102.7 + 0.20000458 + + + 2025-07-24T06:45:33.83 + 102.6 + 0.099998474 + + + 2025-07-24T06:45:34 + 102.5 + 0.099998474 + + + 2025-07-24T06:45:34 + 102.4 + 0.099998474 + + + 2025-07-24T06:45:34.447 + 102.3 + 0.099998474 + + + 2025-07-24T06:45:34.2 + 102.1 + 0.20000458 + + + 2025-07-24T06:45:34.649 + 102 + 0.099998474 + + + 2025-07-24T06:45:34.851 + 101.8 + 0.19999695 + + + 2025-07-24T06:45:35 + 101.7 + 0.1000061 + + + 2025-07-24T06:45:35 + 101.6 + 0.099998474 + + + 2025-07-24T06:45:35.19 + 101.5 + 0.099998474 + + + 2025-07-24T06:45:35.477 + 101.3 + 0.19999695 + + + 2025-07-24T06:45:35.688 + 101.2 + 0.1000061 + + + 2025-07-24T06:45:35 + 101.1 + 0.099998474 + + + 2025-07-24T06:45:35.901 + 100.9 + 0.19999695 + + + 2025-07-24T06:45:35 + 100.8 + 0.099998474 + + + 2025-07-24T06:45:36.313 + 100.6 + 0.20000458 + + + 2025-07-24T06:45:36.523 + 100.5 + 0.099998474 + + + 2025-07-24T06:45:36.3 + 100.3 + 0.19999695 + + + 2025-07-24T06:45:36.742 + 100.2 + 0.1000061 + + + 2025-07-24T06:45:36.951 + 100.1 + 0.099998474 + + + 2025-07-24T06:45:37.157 + 100 + 0.099998474 + + + 2025-07-24T06:45:36 + 99.8 + 0.19999695 + + + 2025-07-24T06:45:37.359 + 99.7 + 0.1000061 + + + 2025-07-24T06:45:37.566 + 99.6 + 0.099998474 + + + 2025-07-24T06:45:37.768 + 99.4 + 0.19999695 + + + 2025-07-24T06:45:37.976 + 99.3 + 0.099998474 + + + 2025-07-24T06:45:38 + 99.1 + 0.20000458 + + + 2025-07-24T06:45:38 + 99 + 0.099998474 + + + 2025-07-24T06:45:38.384 + 98.8 + 0.19999695 + + + 2025-07-24T06:45:38.586 + 98.7 + 0.1000061 + + + 2025-07-24T06:45:38.5 + 98.6 + 0.099998474 + + + 2025-07-24T06:45:38.795 + 98.4 + 0.19999695 + + + 2025-07-24T06:45:39 + 98.3 + 0.099998474 + + + 2025-07-24T06:45:39.209 + 98.2 + 0.1000061 + + + 2025-07-24T06:45:39.414 + 98 + 0.19999695 + + + 2025-07-24T06:45:39.3 + 97.9 + 0.099998474 + + + 2025-07-24T06:45:39.617 + 97.7 + 0.20000458 + + + 2025-07-24T06:45:39.828 + 97.6 + 0.099998474 + + + 2025-07-24T06:45:40 + 97.4 + 0.19999695 + + + 2025-07-24T06:45:40 + 97.3 + 0.099998474 + + + 2025-07-24T06:45:39 + 97.1 + 0.20000458 + + + 2025-07-24T06:45:40 + 97 + 0.099998474 + + + 2025-07-24T06:45:40.64 + 96.9 + 0.099998474 + + + 2025-07-24T06:45:40.844 + 96.7 + 0.20000458 + + + 2025-07-24T06:45:40.844 + 96.6 + 0.099998474 + + + 2025-07-24T06:45:40 + 96.4 + 0.19999695 + + + 2025-07-24T06:45:40 + 96.3 + 0.099998474 + + + 2025-07-24T06:45:41.456 + 96.1 + 0.20000458 + + + 2025-07-24T06:45:41.658 + 96 + 0.099998474 + + + 2025-07-24T06:45:41.658 + 95.8 + 0.19999695 + + + 2025-07-24T06:45:41 + 95.7 + 0.1000061 + + + 2025-07-24T06:45:42.068 + 95.6 + 0.099998474 + + + 2025-07-24T06:45:42 + 95.4 + 0.19999695 + + + 2025-07-24T06:45:42.29 + 95.3 + 0.099998474 + + + 2025-07-24T06:45:42 + 95.1 + 0.20000458 + + + 2025-07-24T06:45:42.686 + 95 + 0.099998474 + + + 2025-07-24T06:45:42.889 + 94.8 + 0.19999695 + + + 2025-07-24T06:45:43 + 94.7 + 0.1000061 + + + 2025-07-24T06:45:42 + 94.5 + 0.19999695 + + + 2025-07-24T06:45:43.324 + 94.4 + 0.099998474 + + + 2025-07-24T06:45:43.531 + 94.2 + 0.20000458 + + + 2025-07-24T06:45:43.744 + 94.1 + 0.099998474 + + + 2025-07-24T06:45:43.744 + 93.9 + 0.19999695 + + + 2025-07-24T06:45:44 + 93.8 + 0.099998474 + + + 2025-07-24T06:45:44 + 93.6 + 0.20000458 + + + 2025-07-24T06:45:44.356 + 93.5 + 0.099998474 + + + 2025-07-24T06:45:44.3 + 93.3 + 0.19999695 + + + 2025-07-24T06:45:44.558 + 93.2 + 0.1000061 + + + 2025-07-24T06:45:44.761 + 93 + 0.19999695 + + + 2025-07-24T06:45:44.963 + 92.9 + 0.099998474 + + + 2025-07-24T06:45:45.17 + 92.8 + 0.099998474 + + + 2025-07-24T06:45:44 + 92.6 + 0.20000458 + + + 2025-07-24T06:45:45.375 + 92.5 + 0.099998474 + + + 2025-07-24T06:45:45.6 + 92.3 + 0.19999695 + + + 2025-07-24T06:45:45.805 + 92.2 + 0.1000061 + + + 2025-07-24T06:45:45.805 + 92 + 0.19999695 + + + 2025-07-24T06:45:45 + 91.8 + 0.19999695 + + + 2025-07-24T06:45:46 + 91.7 + 0.1000061 + + + 2025-07-24T06:45:46.42 + 91.5 + 0.19999695 + + + 2025-07-24T06:45:46.631 + 91.4 + 0.099998474 + + + 2025-07-24T06:45:46.631 + 91.2 + 0.20000458 + + + 2025-07-24T06:45:46 + 91 + 0.19999695 + + + 2025-07-24T06:45:47 + 90.9 + 0.099998474 + + + 2025-07-24T06:45:47.24 + 90.7 + 0.20000458 + + + 2025-07-24T06:45:46 + 90.6 + 0.099998474 + + + 2025-07-24T06:45:47.448 + 90.4 + 0.19999695 + + + 2025-07-24T06:45:47.661 + 90.2 + 0.20000458 + + + 2025-07-24T06:45:47.873 + 90.1 + 0.099998474 + + + 2025-07-24T06:45:48 + 89.9 + 0.19999695 + + + 2025-07-24T06:45:48.084 + 89.8 + 0.099998474 + + + 2025-07-24T06:45:48.287 + 89.6 + 0.20000458 + + + 2025-07-24T06:45:48 + 89.5 + 0.099998474 + + + 2025-07-24T06:45:48.701 + 89.3 + 0.19999695 + + + 2025-07-24T06:45:48.701 + 89.1 + 0.20000458 + + + 2025-07-24T06:45:48.903 + 89 + 0.099998474 + + + 2025-07-24T06:45:48 + 88.8 + 0.19999695 + + + 2025-07-24T06:45:49.32 + 88.6 + 0.20000458 + + + 2025-07-24T06:45:49.3 + 88.5 + 0.099998474 + + + 2025-07-24T06:45:49.522 + 88.3 + 0.19999695 + + + 2025-07-24T06:45:49.724 + 88.1 + 0.20000458 + + + 2025-07-24T06:45:49.93 + 88 + 0.099998474 + + + 2025-07-24T06:45:50.132 + 87.8 + 0.19999695 + + + 2025-07-24T06:45:50.2 + 87.6 + 0.20000458 + + + 2025-07-24T06:45:50.335 + 87.5 + 0.099998474 + + + 2025-07-24T06:45:50.538 + 87.3 + 0.19999695 + + + 2025-07-24T06:45:50.742 + 87.1 + 0.20000458 + + + 2025-07-24T06:45:50.944 + 87 + 0.099998474 + + + 2025-07-24T06:45:50 + 86.8 + 0.19999695 + + + 2025-07-24T06:45:51 + 86.6 + 0.20000458 + + + 2025-07-24T06:45:51.355 + 86.4 + 0.19999695 + + + 2025-07-24T06:45:51.557 + 86.3 + 0.099998474 + + + 2025-07-24T06:45:51.557 + 86.1 + 0.20000458 + + + 2025-07-24T06:45:51 + 85.9 + 0.19999695 + + + 2025-07-24T06:45:52 + 85.7 + 0.20000458 + + + 2025-07-24T06:45:52 + 85.5 + 0.19999695 + + + 2025-07-24T06:45:52.375 + 85.4 + 0.099998474 + + + 2025-07-24T06:45:52 + 85.2 + 0.20000458 + + + 2025-07-24T06:45:52.59 + 85 + 0.19999695 + + + 2025-07-24T06:45:52.798 + 84.8 + 0.19999695 + + + 2025-07-24T06:45:53.002 + 84.7 + 0.1000061 + + + 2025-07-24T06:45:52 + 84.5 + 0.19999695 + + + 2025-07-24T06:45:52 + 84.3 + 0.19999695 + + + 2025-07-24T06:45:53 + 84.2 + 0.1000061 + + + 2025-07-24T06:45:53.615 + 84 + 0.19999695 + + + 2025-07-24T06:45:53.818 + 83.8 + 0.19999695 + + + 2025-07-24T06:45:53.818 + 83.6 + 0.20000458 + + + 2025-07-24T06:45:54 + 83.5 + 0.099998474 + + + 2025-07-24T06:45:54 + 83.3 + 0.19999695 + + + 2025-07-24T06:45:54.25 + 83.1 + 0.20000458 + + + 2025-07-24T06:45:54 + 82.9 + 0.19999695 + + + 2025-07-24T06:45:54 + 82.7 + 0.20000458 + + + 2025-07-24T06:45:54 + 82.5 + 0.19999695 + + + 2025-07-24T06:45:55 + 82.4 + 0.099998474 + + + 2025-07-24T06:45:55.04 + 82.2 + 0.20000458 + + + 2025-07-24T06:45:54 + 82 + 0.19999695 + + + 2025-07-24T06:45:54 + 81.8 + 0.19999695 + + + 2025-07-24T06:45:55.3 + 81.7 + 0.1000061 + + + 2025-07-24T06:45:55.3 + 81.5 + 0.19999695 + + + 2025-07-24T06:45:56 + 81.3 + 0.19999695 + + + 2025-07-24T06:45:56 + 81.1 + 0.20000458 + + + 2025-07-24T06:45:56 + 80.9 + 0.19999695 + + + 2025-07-24T06:45:56 + 80.7 + 0.20000458 + + + 2025-07-24T06:45:56 + 80.6 + 0.099998474 + + + 2025-07-24T06:45:56 + 80.4 + 0.19999695 + + + 2025-07-24T06:45:56 + 80.2 + 0.20000458 + + + 2025-07-24T06:45:57 + 80 + 0.19999695 + + + 2025-07-24T06:45:56 + 79.8 + 0.19999695 + + + 2025-07-24T06:45:56 + 79.6 + 0.20000458 + + + 2025-07-24T06:45:57.43 + 79.4 + 0.19999695 + + + 2025-07-24T06:45:57.43 + 79.2 + 0.20000458 + + + 2025-07-24T06:45:57.43 + 79 + 0.19999695 + + + 2025-07-24T06:45:57 + 78.8 + 0.19999695 + + + 2025-07-24T06:45:58 + 78.6 + 0.20000458 + + + 2025-07-24T06:45:58 + 78.4 + 0.19999695 + + + 2025-07-24T06:45:58.43 + 78.3 + 0.099998474 + + + 2025-07-24T06:45:58.43 + 78.1 + 0.20000458 + + + 2025-07-24T06:45:58.43 + 77.9 + 0.19999695 + + + 2025-07-24T06:45:59 + 77.7 + 0.20000458 + + + 2025-07-24T06:45:59 + 77.5 + 0.19999695 + + + 2025-07-24T06:45:59.32 + 77.3 + 0.19999695 + + + 2025-07-24T06:45:59.32 + 77.1 + 0.20000458 + + + 2025-07-24T06:45:59.32 + 76.9 + 0.19999695 + + + 2025-07-24T06:45:59.859 + 76.7 + 0.20000458 + + + 2025-07-24T06:46:00 + 76.5 + 0.19999695 + + + 2025-07-24T06:46:00.1 + 76.3 + 0.19999695 + + + 2025-07-24T06:46:00 + 76.1 + 0.20000458 + + + 2025-07-24T06:46:00 + 75.9 + 0.19999695 + + + 2025-07-24T06:46:00.67 + 75.6 + 0.30000305 + + + 2025-07-24T06:46:00.879 + 75.4 + 0.19999695 + + + 2025-07-24T06:46:00 + 75.2 + 0.20000458 + + + 2025-07-24T06:46:01 + 75 + 0.19999695 + + + 2025-07-24T06:46:00 + 74.8 + 0.19999695 + + + 2025-07-24T06:46:01.497 + 74.6 + 0.20000458 + + + 2025-07-24T06:46:01.497 + 74.3 + 0.29999542 + + + 2025-07-24T06:46:01.43 + 74.1 + 0.20000458 + + + 2025-07-24T06:46:01.912 + 74 + 0.099998474 + + + 2025-07-24T06:46:02.114 + 73.8 + 0.19999695 + + + 2025-07-24T06:46:02 + 73.6 + 0.20000458 + + + 2025-07-24T06:46:02.321 + 73.3 + 0.29999542 + + + 2025-07-24T06:46:02.534 + 73.1 + 0.20000458 + + + 2025-07-24T06:46:02.746 + 72.9 + 0.19999695 + + + 2025-07-24T06:46:02.948 + 72.7 + 0.20000458 + + + 2025-07-24T06:46:02 + 72.5 + 0.19999695 + + + 2025-07-24T06:46:03.151 + 72.3 + 0.19999695 + + + 2025-07-24T06:46:03.359 + 72 + 0.30000305 + + + 2025-07-24T06:46:03.561 + 71.8 + 0.19999695 + + + 2025-07-24T06:46:03.561 + 71.6 + 0.20000458 + + + 2025-07-24T06:46:03.764 + 71.3 + 0.29999542 + + + 2025-07-24T06:46:04 + 71.1 + 0.20000458 + + + 2025-07-24T06:46:04 + 70.9 + 0.19999695 + + + 2025-07-24T06:46:04.382 + 70.7 + 0.20000458 + + + 2025-07-24T06:46:04 + 70.4 + 0.29999542 + + + 2025-07-24T06:46:04.586 + 70.2 + 0.20000458 + + + 2025-07-24T06:46:04.788 + 70 + 0.19999695 + + + 2025-07-24T06:46:04.99 + 69.7 + 0.30000305 + + + 2025-07-24T06:46:05 + 69.5 + 0.19999695 + + + 2025-07-24T06:46:04 + 69.2 + 0.30000305 + + + 2025-07-24T06:46:05.397 + 69 + 0.19999695 + + + 2025-07-24T06:46:05.601 + 68.8 + 0.19999695 + + + 2025-07-24T06:46:05.802 + 68.6 + 0.20000458 + + + 2025-07-24T06:46:05 + 68.4 + 0.19999695 + + + 2025-07-24T06:46:06 + 68.1 + 0.30000305 + + + 2025-07-24T06:46:06 + 67.9 + 0.19999695 + + + 2025-07-24T06:46:06.419 + 67.6 + 0.30000305 + + + 2025-07-24T06:46:06.622 + 67.4 + 0.19999695 + + + 2025-07-24T06:46:06.44 + 67.2 + 0.20000458 + + + 2025-07-24T06:46:06.834 + 66.9 + 0.29999542 + + + 2025-07-24T06:46:07 + 66.7 + 0.20000458 + + + 2025-07-24T06:46:07.248 + 66.4 + 0.29999542 + + + 2025-07-24T06:46:06 + 66.2 + 0.20000458 + + + 2025-07-24T06:46:06 + 65.9 + 0.29999542 + + + 2025-07-24T06:46:07.658 + 65.6 + 0.30000305 + + + 2025-07-24T06:46:07.874 + 65.4 + 0.19999695 + + + 2025-07-24T06:46:08.076 + 65.1 + 0.30000305 + + + 2025-07-24T06:46:08.076 + 64.9 + 0.19999695 + + + 2025-07-24T06:46:08 + 64.7 + 0.20000458 + + + 2025-07-24T06:46:08 + 64.4 + 0.29999542 + + + 2025-07-24T06:46:08.684 + 64.2 + 0.20000458 + + + 2025-07-24T06:46:08 + 63.9 + 0.29999542 + + + 2025-07-24T06:46:08.907 + 63.7 + 0.20000076 + + + 2025-07-24T06:46:09 + 63.4 + 0.29999924 + + + 2025-07-24T06:46:08 + 63.1 + 0.30000305 + + + 2025-07-24T06:46:09.517 + 62.9 + 0.19999695 + + + 2025-07-24T06:46:09.517 + 62.6 + 0.30000305 + + + 2025-07-24T06:46:09.719 + 62.3 + 0.29999924 + + + 2025-07-24T06:46:09.922 + 62 + 0.29999924 + + + 2025-07-24T06:46:10.129 + 61.7 + 0.29999924 + + + 2025-07-24T06:46:10 + 61.4 + 0.29999924 + + + 2025-07-24T06:46:10.334 + 61.2 + 0.20000076 + + + 2025-07-24T06:46:10.545 + 60.9 + 0.29999924 + + + 2025-07-24T06:46:10.754 + 60.6 + 0.30000305 + + + 2025-07-24T06:46:10.957 + 60.3 + 0.29999924 + + + 2025-07-24T06:46:11 + 60 + 0.29999924 + + + 2025-07-24T06:46:11 + 59.8 + 0.20000076 + + + 2025-07-24T06:46:11.368 + 59.5 + 0.29999924 + + + 2025-07-24T06:46:11.575 + 59.2 + 0.29999924 + + + 2025-07-24T06:46:10 + 59 + 0.20000076 + + + 2025-07-24T06:46:11.777 + 58.7 + 0.29999924 + + + 2025-07-24T06:46:12 + 58.4 + 0.29999924 + + + 2025-07-24T06:46:12.205 + 58.2 + 0.20000076 + + + 2025-07-24T06:46:12 + 57.9 + 0.29999924 + + + 2025-07-24T06:46:11 + 57.6 + 0.30000305 + + + 2025-07-24T06:46:12.619 + 57.3 + 0.29999924 + + + 2025-07-24T06:46:12.821 + 57 + 0.29999924 + + + 2025-07-24T06:46:13.029 + 56.7 + 0.29999924 + + + 2025-07-24T06:46:12 + 56.4 + 0.29999924 + + + 2025-07-24T06:46:12 + 56.1 + 0.30000305 + + + 2025-07-24T06:46:13 + 55.7 + 0.3999977 + + + 2025-07-24T06:46:13.637 + 55.4 + 0.29999924 + + + 2025-07-24T06:46:13 + 55.1 + 0.30000305 + + + 2025-07-24T06:46:13.855 + 54.8 + 0.29999924 + + + 2025-07-24T06:46:14.066 + 54.5 + 0.29999924 + + + 2025-07-24T06:46:14 + 54.2 + 0.29999924 + + + 2025-07-24T06:46:14.48 + 53.9 + 0.29999924 + + + 2025-07-24T06:46:13 + 53.6 + 0.30000305 + + + 2025-07-24T06:46:14.684 + 53.4 + 0.19999695 + + + 2025-07-24T06:46:14.888 + 53.1 + 0.30000305 + + + 2025-07-24T06:46:15.09 + 52.8 + 0.29999924 + + + 2025-07-24T06:46:15 + 52.5 + 0.29999924 + + + 2025-07-24T06:46:14 + 52.2 + 0.29999924 + + + 2025-07-24T06:46:15.502 + 51.8 + 0.40000153 + + + 2025-07-24T06:46:15.706 + 51.5 + 0.29999924 + + + 2025-07-24T06:46:15.911 + 51.2 + 0.29999924 + + + 2025-07-24T06:46:16 + 50.8 + 0.40000153 + + + 2025-07-24T06:46:16 + 50.5 + 0.29999924 + + + 2025-07-24T06:46:16.333 + 50.2 + 0.29999924 + + + 2025-07-24T06:46:16.534 + 49.8 + 0.40000153 + + + 2025-07-24T06:46:16.4 + 49.5 + 0.29999924 + + + 2025-07-24T06:46:16.747 + 49.2 + 0.29999924 + + + 2025-07-24T06:46:16.95 + 48.8 + 0.40000153 + + + 2025-07-24T06:46:17 + 48.5 + 0.29999924 + + + 2025-07-24T06:46:17.363 + 48.2 + 0.29999924 + + + 2025-07-24T06:46:16 + 47.9 + 0.29999924 + + + 2025-07-24T06:46:17.571 + 47.6 + 0.30000305 + + + 2025-07-24T06:46:17.774 + 47.3 + 0.29999924 + + + 2025-07-24T06:46:17.977 + 46.9 + 0.3999977 + + + 2025-07-24T06:46:18 + 46.6 + 0.30000305 + + + 2025-07-24T06:46:17.59 + 46.3 + 0.29999924 + + + 2025-07-24T06:46:18 + 45.9 + 0.3999977 + + + 2025-07-24T06:46:18.587 + 45.5 + 0.40000153 + + + 2025-07-24T06:46:18.792 + 45.2 + 0.29999924 + + + 2025-07-24T06:46:18.792 + 44.9 + 0.29999924 + + + 2025-07-24T06:46:18.69 + 44.5 + 0.40000153 + + + 2025-07-24T06:46:19 + 44.1 + 0.40000153 + + + 2025-07-24T06:46:19.401 + 43.8 + 0.29999924 + + + 2025-07-24T06:46:19.606 + 43.4 + 0.3999977 + + + 2025-07-24T06:46:19.606 + 43.1 + 0.30000305 + + + 2025-07-24T06:46:19.808 + 42.8 + 0.29999924 + + + 2025-07-24T06:46:20 + 42.4 + 0.3999977 + + + 2025-07-24T06:46:20.217 + 42.1 + 0.30000305 + + + 2025-07-24T06:46:20 + 41.8 + 0.29999924 + + + 2025-07-24T06:46:20 + 41.5 + 0.29999924 + + + 2025-07-24T06:46:20.622 + 41.1 + 0.40000153 + + + 2025-07-24T06:46:20 + 40.8 + 0.29999924 + + + 2025-07-24T06:46:21.028 + 40.4 + 0.3999977 + + + 2025-07-24T06:46:21 + 40.1 + 0.30000305 + + + 2025-07-24T06:46:20 + 39.7 + 0.3999977 + + + 2025-07-24T06:46:21.436 + 39.3 + 0.40000153 + + + 2025-07-24T06:46:21.6 + 38.9 + 0.3999977 + + + 2025-07-24T06:46:21.843 + 38.5 + 0.40000153 + + + 2025-07-24T06:46:21.843 + 38.1 + 0.40000153 + + + 2025-07-24T06:46:21 + 37.8 + 0.29999924 + + + 2025-07-24T06:46:22 + 37.4 + 0.3999977 + + + 2025-07-24T06:46:22.453 + 37 + 0.40000153 + + + 2025-07-24T06:46:22 + 36.7 + 0.29999924 + + + 2025-07-24T06:46:22.659 + 36.3 + 0.40000153 + + + 2025-07-24T06:46:22 + 36 + 0.29999924 + + + 2025-07-24T06:46:23 + 35.7 + 0.29999924 + + + 2025-07-24T06:46:23.266 + 35.3 + 0.40000153 + + + 2025-07-24T06:46:23.2 + 35 + 0.29999924 + + + 2025-07-24T06:46:23.468 + 34.7 + 0.29999924 + + + 2025-07-24T06:46:22 + 34.3 + 0.40000153 + + + 2025-07-24T06:46:23.877 + 33.9 + 0.3999977 + + + 2025-07-24T06:46:23 + 33.5 + 0.40000153 + + + 2025-07-24T06:46:24 + 33.1 + 0.40000153 + + + 2025-07-24T06:46:24.29 + 32.7 + 0.3999977 + + + 2025-07-24T06:46:23 + 32.3 + 0.40000153 + + + 2025-07-24T06:46:24.695 + 32 + 0.29999924 + + + 2025-07-24T06:46:24.695 + 31.6 + 0.39999962 + + + 2025-07-24T06:46:24 + 31.2 + 0.39999962 + + + 2025-07-24T06:46:25 + 30.9 + 0.30000114 + + + 2025-07-24T06:46:25.325 + 30.5 + 0.39999962 + + + 2025-07-24T06:46:24 + 30.2 + 0.29999924 + + + 2025-07-24T06:46:25.541 + 29.9 + 0.30000114 + + + 2025-07-24T06:46:25.69 + 29.5 + 0.39999962 + + + 2025-07-24T06:46:25.957 + 29.2 + 0.29999924 + + + 2025-07-24T06:46:26.169 + 28.9 + 0.30000114 + + + 2025-07-24T06:46:26 + 28.5 + 0.39999962 + + + 2025-07-24T06:46:26.371 + 28.1 + 0.39999962 + + + 2025-07-24T06:46:26.53 + 27.7 + 0.39999962 + + + 2025-07-24T06:46:26.782 + 27.3 + 0.40000153 + + + 2025-07-24T06:46:26.782 + 27 + 0.29999924 + + + 2025-07-24T06:46:27 + 26.6 + 0.39999962 + + + 2025-07-24T06:46:27 + 26.2 + 0.39999962 + + + 2025-07-24T06:46:27.31 + 25.8 + 0.40000153 + + + 2025-07-24T06:46:27.599 + 25.4 + 0.39999962 + + + 2025-07-24T06:46:27.599 + 25 + 0.39999962 + + + 2025-07-24T06:46:27.69 + 24.7 + 0.29999924 + + + 2025-07-24T06:46:28 + 24.3 + 0.40000153 + + + 2025-07-24T06:46:27.69 + 24 + 0.29999924 + + + 2025-07-24T06:46:28.415 + 23.7 + 0.29999924 + + + 2025-07-24T06:46:28 + 23.3 + 0.40000153 + + + 2025-07-24T06:46:27.69 + 22.9 + 0.39999962 + + + 2025-07-24T06:46:28.819 + 22.5 + 0.39999962 + + + 2025-07-24T06:46:29 + 22.2 + 0.29999924 + + + 2025-07-24T06:46:29 + 21.8 + 0.40000153 + + + 2025-07-24T06:46:28 + 21.4 + 0.39999962 + + + 2025-07-24T06:46:28.69 + 21 + 0.39999962 + + + 2025-07-24T06:46:29.631 + 20.6 + 0.39999962 + + + 2025-07-24T06:46:29.833 + 20.2 + 0.39999962 + + + 2025-07-24T06:46:29.69 + 19.8 + 0.40000153 + + + 2025-07-24T06:46:30 + 19.5 + 0.29999924 + + + 2025-07-24T06:46:29.69 + 19.1 + 0.39999962 + + + 2025-07-24T06:46:30.446 + 18.7 + 0.39999962 + + + 2025-07-24T06:46:30.65 + 18.4 + 0.30000114 + + + 2025-07-24T06:46:30.6 + 18 + 0.39999962 + + + 2025-07-24T06:46:30.851 + 17.7 + 0.29999924 + + + 2025-07-24T06:46:31 + 17.3 + 0.40000153 + + + 2025-07-24T06:46:31 + 17 + 0.29999924 + + + 2025-07-24T06:46:30 + 16.6 + 0.39999962 + + + 2025-07-24T06:46:31.4 + 16.3 + 0.30000114 + + + 2025-07-24T06:46:31.4 + 15.9 + 0.39999962 + + + 2025-07-24T06:46:31.4 + 15.5 + 0.39999962 + + + 2025-07-24T06:46:32 + 15.2 + 0.3000002 + + + 2025-07-24T06:46:32 + 14.8 + 0.39999962 + + + 2025-07-24T06:46:32.2 + 14.4 + 0.40000057 + + + 2025-07-24T06:46:32 + 14 + 0.39999962 + + + 2025-07-24T06:46:32 + 13.7 + 0.3000002 + + + 2025-07-24T06:46:31.79 + 13.3 + 0.39999962 + + + 2025-07-24T06:46:31.79 + 12.9 + 0.40000057 + + + 2025-07-24T06:46:32.8 + 12.5 + 0.39999962 + + + 2025-07-24T06:46:32 + 12.1 + 0.39999962 + + + 2025-07-24T06:46:33 + 11.8 + 0.3000002 + + + 2025-07-24T06:46:32.8 + 11.4 + 0.40000057 + + + 2025-07-24T06:46:32.8 + 11.1 + 0.29999924 + + + 2025-07-24T06:46:33.8 + 10.7 + 0.40000057 + + + 2025-07-24T06:46:33.8 + 10.4 + 0.3000002 + + + 2025-07-24T06:46:34 + 10 + 0.39999962 + + + 2025-07-24T06:46:33.8 + 9.7 + 0.3000002 + + + 2025-07-24T06:46:34 + 9.3 + 0.39999962 + + + 2025-07-24T06:46:33.8 + 9 + 0.3000002 + + + 2025-07-24T06:46:34.8 + 8.6 + 0.39999962 + + + 2025-07-24T06:46:35 + 8.2 + 0.40000057 + + + 2025-07-24T06:46:34.8 + 7.8 + 0.39999962 + + + 2025-07-24T06:46:34 + 7.5 + 0.3000002 + + + 2025-07-24T06:46:34 + 7.1 + 0.4000001 + + + 2025-07-24T06:46:35.53 + 6.8 + 0.2999997 + + + 2025-07-24T06:46:35.53 + 6.4 + 0.4000001 + + + 2025-07-24T06:46:36 + 6 + 0.4000001 + + + 2025-07-24T06:46:36 + 5.7 + 0.3000002 + + + 2025-07-24T06:46:36 + 5.3 + 0.39999962 + + + 2025-07-24T06:46:36.44 + 5 + 0.3000002 + + + 2025-07-24T06:46:36.683 + 4.7 + 0.3000002 + + + 2025-07-24T06:46:36.887 + 4.4 + 0.2999997 + + + 2025-07-24T06:46:37 + 4 + 0.4000001 + + + 2025-07-24T06:46:37 + 3.7 + 0.29999995 + + + 2025-07-24T06:46:37.1 + 3.4 + 0.29999995 + + + 2025-07-24T06:46:37.497 + 3 + 0.4000001 + + + 2025-07-24T06:46:37.702 + 2.6 + 0.4000001 + + + 2025-07-24T06:46:36.8 + 2.3 + 0.29999995 + + + 2025-07-24T06:46:37.904 + 1.9 + 0.39999998 + + + 2025-07-24T06:46:37.7 + 1.5 + 0.39999998 + + + 2025-07-24T06:46:38.32 + 1.1 + 0.39999998 + + + 2025-07-24T06:46:38 + 0.7 + 0.40000004 + + + 2025-07-24T06:46:37.7 + 0.4 + 0.29999998 + + + 2025-07-24T06:46:38.734 + 0 + 0.4 + + + 2025-07-24T06:46:38.937 + 359.6 + 0.3999939 + + + 2025-07-24T06:46:39 + 359.3 + 0.3000183 + + + 2025-07-24T06:46:39 + 359 + 0.2999878 + + + 2025-07-24T06:46:38.8 + 358.6 + 0.3999939 + + + 2025-07-24T06:46:39.557 + 358.3 + 0.3000183 + + + 2025-07-24T06:46:38.8 + 358 + 0.2999878 + + + 2025-07-24T06:46:39.66 + 357.7 + 0.2999878 + + + 2025-07-24T06:46:40 + 357.3 + 0.4000244 + + + 2025-07-24T06:46:39.8 + 357 + 0.2999878 + + + 2025-07-24T06:46:40.375 + 356.6 + 0.3999939 + + + 2025-07-24T06:46:40.58 + 356.2 + 0.3999939 + + + 2025-07-24T06:46:40.4 + 355.8 + 0.4000244 + + + 2025-07-24T06:46:40.782 + 355.5 + 0.2999878 + + + 2025-07-24T06:46:41 + 355.1 + 0.3999939 + + + 2025-07-24T06:46:41 + 354.7 + 0.3999939 + + + 2025-07-24T06:46:40 + 354.4 + 0.3000183 + + + 2025-07-24T06:46:41.34 + 354 + 0.3999939 + + + 2025-07-24T06:46:41.596 + 353.7 + 0.2999878 + + + 2025-07-24T06:46:41.798 + 353.4 + 0.3000183 + + + 2025-07-24T06:46:42.007 + 353.1 + 0.2999878 + + + 2025-07-24T06:46:42 + 352.8 + 0.3000183 + + + 2025-07-24T06:46:42.14 + 352.5 + 0.2999878 + + + 2025-07-24T06:46:42.421 + 352.1 + 0.3999939 + + + 2025-07-24T06:46:42.623 + 351.8 + 0.3000183 + + + 2025-07-24T06:46:41.79 + 351.4 + 0.3999939 + + + 2025-07-24T06:46:42.825 + 351 + 0.3999939 + + + 2025-07-24T06:46:42.8 + 350.6 + 0.3999939 + + + 2025-07-24T06:46:43.236 + 350.2 + 0.3999939 + + + 2025-07-24T06:46:43 + 349.8 + 0.4000244 + + + 2025-07-24T06:46:42.8 + 349.5 + 0.2999878 + + + 2025-07-24T06:46:43.652 + 349.2 + 0.2999878 + + + 2025-07-24T06:46:42.8 + 348.9 + 0.3000183 + + + 2025-07-24T06:46:44 + 348.6 + 0.2999878 + + + 2025-07-24T06:46:44.262 + 348.3 + 0.3000183 + + + 2025-07-24T06:46:43.79 + 347.9 + 0.3999939 + + + 2025-07-24T06:46:44 + 347.6 + 0.2999878 + + + 2025-07-24T06:46:44.668 + 347.2 + 0.3999939 + + + 2025-07-24T06:46:44.871 + 346.8 + 0.4000244 + + + 2025-07-24T06:46:45 + 346.5 + 0.2999878 + + + 2025-07-24T06:46:44.8 + 346.1 + 0.3999939 + + + 2025-07-24T06:46:44 + 345.7 + 0.3999939 + + + 2025-07-24T06:46:45.483 + 345.4 + 0.3000183 + + + 2025-07-24T06:46:45.685 + 345 + 0.3999939 + + + 2025-07-24T06:46:45.685 + 344.7 + 0.2999878 + + + 2025-07-24T06:46:45.888 + 344.3 + 0.4000244 + + + 2025-07-24T06:46:46.102 + 344 + 0.2999878 + + + 2025-07-24T06:46:46.304 + 343.6 + 0.3999939 + + + 2025-07-24T06:46:46.27 + 343.3 + 0.3000183 + + + 2025-07-24T06:46:46 + 342.9 + 0.3999939 + + + 2025-07-24T06:46:46.709 + 342.6 + 0.2999878 + + + 2025-07-24T06:46:46.918 + 342.3 + 0.3000183 + + + 2025-07-24T06:46:47.131 + 342 + 0.2999878 + + + 2025-07-24T06:46:46.93 + 341.6 + 0.3999939 + + + 2025-07-24T06:46:47.343 + 341.3 + 0.3000183 + + + 2025-07-24T06:46:47.548 + 341 + 0.2999878 + + + 2025-07-24T06:46:47.75 + 340.6 + 0.3999939 + + + 2025-07-24T06:46:47.75 + 340.2 + 0.3999939 + + + 2025-07-24T06:46:47.9 + 339.9 + 0.3000183 + + + 2025-07-24T06:46:48.167 + 339.5 + 0.3999939 + + + 2025-07-24T06:46:48.379 + 339.2 + 0.2999878 + + + 2025-07-24T06:46:47.9 + 338.9 + 0.3000183 + + + 2025-07-24T06:46:48.591 + 338.6 + 0.2999878 + + + 2025-07-24T06:46:47.9 + 338.3 + 0.3000183 + + + 2025-07-24T06:46:49 + 337.9 + 0.3999939 + + + 2025-07-24T06:46:49.22 + 337.6 + 0.2999878 + + + 2025-07-24T06:46:48.94 + 337.3 + 0.3000183 + + + 2025-07-24T06:46:49.425 + 336.9 + 0.3999939 + + + 2025-07-24T06:46:49.627 + 336.6 + 0.2999878 + + + 2025-07-24T06:46:49.83 + 336.2 + 0.3999939 + + + 2025-07-24T06:46:49.83 + 335.9 + 0.3000183 + + + 2025-07-24T06:46:50 + 335.6 + 0.2999878 + + + 2025-07-24T06:46:50 + 335.2 + 0.3999939 + + + 2025-07-24T06:46:50.445 + 334.9 + 0.3000183 + + + 2025-07-24T06:46:50.647 + 334.6 + 0.2999878 + + + 2025-07-24T06:46:50.647 + 334.3 + 0.3000183 + + + 2025-07-24T06:46:50.849 + 333.9 + 0.3999939 + + + 2025-07-24T06:46:50 + 333.6 + 0.2999878 + + + 2025-07-24T06:46:51.257 + 333.2 + 0.3999939 + + + 2025-07-24T06:46:51.46 + 332.9 + 0.3000183 + + + 2025-07-24T06:46:51.46 + 332.6 + 0.2999878 + + + 2025-07-24T06:46:51.663 + 332.3 + 0.3000183 + + + 2025-07-24T06:46:51.867 + 332 + 0.2999878 + + + 2025-07-24T06:46:52.069 + 331.7 + 0.2999878 + + + 2025-07-24T06:46:51.94 + 331.4 + 0.3000183 + + + 2025-07-24T06:46:52.286 + 331.1 + 0.2999878 + + + 2025-07-24T06:46:52 + 330.7 + 0.3999939 + + + 2025-07-24T06:46:52.696 + 330.4 + 0.3000183 + + + 2025-07-24T06:46:52.903 + 330 + 0.3999939 + + + 2025-07-24T06:46:53 + 329.7 + 0.2999878 + + + 2025-07-24T06:46:52 + 329.4 + 0.3000183 + + + 2025-07-24T06:46:53.316 + 329.1 + 0.2999878 + + + 2025-07-24T06:46:53.53 + 328.8 + 0.3000183 + + + 2025-07-24T06:46:53.53 + 328.5 + 0.2999878 + + + 2025-07-24T06:46:52.97 + 328.2 + 0.2999878 + + + 2025-07-24T06:46:53.943 + 327.9 + 0.3000183 + + + 2025-07-24T06:46:54.156 + 327.5 + 0.3999939 + + + 2025-07-24T06:46:53.93 + 327.2 + 0.2999878 + + + 2025-07-24T06:46:54.359 + 326.9 + 0.3000183 + + + 2025-07-24T06:46:54.565 + 326.6 + 0.2999878 + + + 2025-07-24T06:46:54.774 + 326.4 + 0.2000122 + + + 2025-07-24T06:46:54.979 + 326.1 + 0.2999878 + + + 2025-07-24T06:46:54 + 325.8 + 0.3000183 + + + 2025-07-24T06:46:55 + 325.5 + 0.2999878 + + + 2025-07-24T06:46:55.385 + 325.1 + 0.3999939 + + + 2025-07-24T06:46:55.588 + 324.8 + 0.3000183 + + + 2025-07-24T06:46:55.792 + 324.5 + 0.2999878 + + + 2025-07-24T06:46:55.792 + 324.1 + 0.3999939 + + + 2025-07-24T06:46:56 + 323.8 + 0.3000183 + + + 2025-07-24T06:46:56 + 323.5 + 0.2999878 + + + 2025-07-24T06:46:56.401 + 323.2 + 0.2999878 + + + 2025-07-24T06:46:56 + 322.9 + 0.3000183 + + + 2025-07-24T06:46:56.606 + 322.6 + 0.2999878 + + + 2025-07-24T06:46:56.808 + 322.3 + 0.3000183 + + + 2025-07-24T06:46:57 + 322.1 + 0.19998169 + + + 2025-07-24T06:46:57.233 + 321.8 + 0.3000183 + + + 2025-07-24T06:46:56 + 321.5 + 0.2999878 + + + 2025-07-24T06:46:57.436 + 321.1 + 0.3999939 + + + 2025-07-24T06:46:57.645 + 320.8 + 0.3000183 + + + 2025-07-24T06:46:57.852 + 320.5 + 0.2999878 + + + 2025-07-24T06:46:57 + 320.2 + 0.2999878 + + + 2025-07-24T06:46:58.067 + 319.9 + 0.3000183 + + + 2025-07-24T06:46:58 + 319.7 + 0.19998169 + + + 2025-07-24T06:46:58 + 319.4 + 0.3000183 + + + 2025-07-24T06:46:58 + 319.1 + 0.2999878 + + + 2025-07-24T06:46:57.97 + 318.8 + 0.3000183 + + + 2025-07-24T06:46:58.88 + 318.5 + 0.2999878 + + + 2025-07-24T06:46:58 + 318.2 + 0.2999878 + + + 2025-07-24T06:46:59.294 + 317.9 + 0.3000183 + + + 2025-07-24T06:46:58 + 317.6 + 0.2999878 + + + 2025-07-24T06:46:58.9 + 317.3 + 0.3000183 + + + 2025-07-24T06:46:59.708 + 317 + 0.2999878 + + + 2025-07-24T06:46:59.91 + 316.7 + 0.2999878 + + + 2025-07-24T06:46:59 + 316.4 + 0.3000183 + + + 2025-07-24T06:47:00 + 316.1 + 0.2999878 + + + 2025-07-24T06:47:00.32 + 315.8 + 0.3000183 + + + 2025-07-24T06:47:00.527 + 315.5 + 0.2999878 + + + 2025-07-24T06:47:00.739 + 315.2 + 0.2999878 + + + 2025-07-24T06:47:00 + 314.9 + 0.3000183 + + + 2025-07-24T06:47:01 + 314.7 + 0.19998169 + + + 2025-07-24T06:47:01 + 314.4 + 0.3000183 + + + 2025-07-24T06:47:01.349 + 314.1 + 0.2999878 + + + 2025-07-24T06:47:01.349 + 313.9 + 0.2000122 + + + 2025-07-24T06:47:01.552 + 313.6 + 0.2999878 + + + 2025-07-24T06:47:01.765 + 313.3 + 0.3000183 + + + 2025-07-24T06:47:01.97 + 313 + 0.2999878 + + + 2025-07-24T06:47:02.178 + 312.7 + 0.2999878 + + + 2025-07-24T06:47:02 + 312.4 + 0.3000183 + + + 2025-07-24T06:47:02 + 312.1 + 0.2999878 + + + 2025-07-24T06:47:02.586 + 311.9 + 0.2000122 + + + 2025-07-24T06:47:02.795 + 311.6 + 0.2999878 + + + 2025-07-24T06:47:02 + 311.3 + 0.3000183 + + + 2025-07-24T06:47:02 + 311 + 0.2999878 + + + 2025-07-24T06:47:02 + 310.7 + 0.2999878 + + + 2025-07-24T06:47:03 + 310.5 + 0.2000122 + + + 2025-07-24T06:47:03.622 + 310.2 + 0.2999878 + + + 2025-07-24T06:47:03.09 + 309.9 + 0.3000183 + + + 2025-07-24T06:47:03.828 + 309.6 + 0.2999878 + + + 2025-07-24T06:47:04 + 309.3 + 0.3000183 + + + 2025-07-24T06:47:04.24 + 309 + 0.2999878 + + + 2025-07-24T06:47:04 + 308.7 + 0.2999878 + + + 2025-07-24T06:47:04 + 308.4 + 0.3000183 + + + 2025-07-24T06:47:04.659 + 308.1 + 0.2999878 + + + 2025-07-24T06:47:04.862 + 307.9 + 0.2000122 + + + 2025-07-24T06:47:05 + 307.6 + 0.2999878 + + + 2025-07-24T06:47:05 + 307.4 + 0.2000122 + + + 2025-07-24T06:47:05.08 + 307.1 + 0.2999878 + + + 2025-07-24T06:47:05.479 + 306.8 + 0.3000183 + + + 2025-07-24T06:47:05.69 + 306.5 + 0.2999878 + + + 2025-07-24T06:47:05 + 306.2 + 0.2999878 + + + 2025-07-24T06:47:05.897 + 305.9 + 0.3000183 + + + 2025-07-24T06:47:06.101 + 305.6 + 0.2999878 + + + 2025-07-24T06:47:06.304 + 305.3 + 0.3000183 + + + 2025-07-24T06:47:06 + 305 + 0.2999878 + + + 2025-07-24T06:47:06 + 304.7 + 0.2999878 + + + 2025-07-24T06:47:06.719 + 304.4 + 0.3000183 + + + 2025-07-24T06:47:06.921 + 304.2 + 0.19998169 + + + 2025-07-24T06:47:06 + 304 + 0.2000122 + + + 2025-07-24T06:47:06 + 303.7 + 0.2999878 + + + 2025-07-24T06:47:07.348 + 303.5 + 0.2000122 + + + 2025-07-24T06:47:07.559 + 303.1 + 0.3999939 + + + 2025-07-24T06:47:07.559 + 302.8 + 0.3000183 + + + 2025-07-24T06:47:07 + 302.5 + 0.2999878 + + + 2025-07-24T06:47:08 + 302.2 + 0.2999878 + + + 2025-07-24T06:47:08 + 302 + 0.2000122 + + + 2025-07-24T06:47:08.08 + 301.7 + 0.2999878 + + + 2025-07-24T06:47:08 + 301.5 + 0.2000122 + + + 2025-07-24T06:47:08.08 + 301.2 + 0.2999878 + + + 2025-07-24T06:47:08.59 + 301 + 0.2000122 + + + 2025-07-24T06:47:09 + 300.7 + 0.2999878 + + + 2025-07-24T06:47:09 + 300.4 + 0.3000183 + + + 2025-07-24T06:47:08 + 300.2 + 0.19998169 + + + 2025-07-24T06:47:09.08 + 299.9 + 0.3000183 + + + 2025-07-24T06:47:09.4 + 299.6 + 0.2999878 + + + 2025-07-24T06:47:09.4 + 299.3 + 0.3000183 + + + 2025-07-24T06:47:09 + 299 + 0.2999878 + + + 2025-07-24T06:47:10 + 298.7 + 0.2999878 + + + 2025-07-24T06:47:10.09 + 298.5 + 0.2000122 + + + 2025-07-24T06:47:10 + 298.3 + 0.2000122 + + + 2025-07-24T06:47:10 + 298 + 0.2999878 + + + 2025-07-24T06:47:10.09 + 297.8 + 0.2000122 + + + 2025-07-24T06:47:10.09 + 297.5 + 0.2999878 + + + 2025-07-24T06:47:10 + 297.2 + 0.2999878 + + + 2025-07-24T06:47:10 + 296.9 + 0.3000183 + + + 2025-07-24T06:47:10 + 296.6 + 0.2999878 + + + 2025-07-24T06:47:11.07 + 296.3 + 0.3000183 + + + 2025-07-24T06:47:11.07 + 296.1 + 0.19998169 + + + 2025-07-24T06:47:11.07 + 295.9 + 0.2000122 + + + 2025-07-24T06:47:11 + 295.6 + 0.2999878 + + + 2025-07-24T06:47:12 + 295.4 + 0.2000122 + + + 2025-07-24T06:47:12 + 295.1 + 0.2999878 + + + 2025-07-24T06:47:12.593 + 294.8 + 0.3000183 + + + 2025-07-24T06:47:12.593 + 294.6 + 0.19998169 + + + 2025-07-24T06:47:12.74 + 294.3 + 0.3000183 + + + 2025-07-24T06:47:13 + 294 + 0.2999878 + + + 2025-07-24T06:47:13.21 + 293.8 + 0.2000122 + + + 2025-07-24T06:47:12 + 293.5 + 0.2999878 + + + 2025-07-24T06:47:13 + 293.3 + 0.2000122 + + + 2025-07-24T06:47:13.19 + 293 + 0.2999878 + + + 2025-07-24T06:47:13.832 + 292.8 + 0.2000122 + + + 2025-07-24T06:47:14.034 + 292.5 + 0.2999878 + + + 2025-07-24T06:47:14 + 292.2 + 0.2999878 + + + 2025-07-24T06:47:14 + 291.9 + 0.3000183 + + + 2025-07-24T06:47:14 + 291.7 + 0.19998169 + + + 2025-07-24T06:47:14.643 + 291.4 + 0.3000183 + + + 2025-07-24T06:47:14.643 + 291.1 + 0.2999878 + + + 2025-07-24T06:47:14.19 + 290.9 + 0.2000122 + + + 2025-07-24T06:47:14 + 290.6 + 0.2999878 + + + 2025-07-24T06:47:15.19 + 290.4 + 0.2000122 + + + 2025-07-24T06:47:15.464 + 290.1 + 0.2999878 + + + 2025-07-24T06:47:15.464 + 289.9 + 0.2000122 + + + 2025-07-24T06:47:15.19 + 289.6 + 0.2999878 + + + 2025-07-24T06:47:15.875 + 289.4 + 0.2000122 + + + 2025-07-24T06:47:16.077 + 289.1 + 0.2999878 + + + 2025-07-24T06:47:16.28 + 288.9 + 0.2000122 + + + 2025-07-24T06:47:16.28 + 288.7 + 0.19998169 + + + 2025-07-24T06:47:16 + 288.4 + 0.3000183 + + + 2025-07-24T06:47:16.685 + 288.2 + 0.19998169 + + + 2025-07-24T06:47:16.887 + 287.9 + 0.3000183 + + + 2025-07-24T06:47:17 + 287.7 + 0.19998169 + + + 2025-07-24T06:47:17 + 287.5 + 0.2000122 + + + 2025-07-24T06:47:16 + 287.2 + 0.2999878 + + + 2025-07-24T06:47:17.498 + 287 + 0.2000122 + + + 2025-07-24T06:47:17.7 + 286.7 + 0.2999878 + + + 2025-07-24T06:47:17 + 286.5 + 0.2000122 + + + 2025-07-24T06:47:17.904 + 286.2 + 0.2999878 + + + 2025-07-24T06:47:18.11 + 286 + 0.2000122 + + + 2025-07-24T06:47:18.331 + 285.8 + 0.2000122 + + + 2025-07-24T06:47:18 + 285.6 + 0.19998169 + + + 2025-07-24T06:47:18.2 + 285.3 + 0.3000183 + + + 2025-07-24T06:47:18.743 + 285 + 0.2999878 + + + 2025-07-24T06:47:18.956 + 284.7 + 0.2999878 + + + 2025-07-24T06:47:19.16 + 284.5 + 0.2000122 + + + 2025-07-24T06:47:18 + 284.2 + 0.2999878 + + + 2025-07-24T06:47:19.19 + 284 + 0.2000122 + + + 2025-07-24T06:47:19.569 + 283.8 + 0.2000122 + + + 2025-07-24T06:47:19.775 + 283.6 + 0.19998169 + + + 2025-07-24T06:47:19 + 283.3 + 0.3000183 + + + 2025-07-24T06:47:20 + 283.1 + 0.19998169 + + + 2025-07-24T06:47:19 + 282.9 + 0.2000122 + + + 2025-07-24T06:47:20.393 + 282.6 + 0.2999878 + + + 2025-07-24T06:47:20.595 + 282.4 + 0.2000122 + + + 2025-07-24T06:47:20.09 + 282.2 + 0.19998169 + + + 2025-07-24T06:47:20.802 + 281.9 + 0.3000183 + + + 2025-07-24T06:47:21 + 281.7 + 0.19998169 + + + 2025-07-24T06:47:21.206 + 281.4 + 0.3000183 + + + 2025-07-24T06:47:20 + 281.2 + 0.19998169 + + + 2025-07-24T06:47:21.413 + 281 + 0.2000122 + + + 2025-07-24T06:47:21.619 + 280.8 + 0.2000122 + + + 2025-07-24T06:47:21.821 + 280.6 + 0.19998169 + + + 2025-07-24T06:47:22.032 + 280.3 + 0.3000183 + + + 2025-07-24T06:47:22 + 280.1 + 0.19998169 + + + 2025-07-24T06:47:22 + 279.9 + 0.2000122 + + + 2025-07-24T06:47:22 + 279.6 + 0.2999878 + + + 2025-07-24T06:47:22.65 + 279.3 + 0.3000183 + + + 2025-07-24T06:47:22.853 + 279.1 + 0.19998169 + + + 2025-07-24T06:47:22.853 + 278.9 + 0.2000122 + + + 2025-07-24T06:47:22 + 278.6 + 0.2999878 + + + 2025-07-24T06:47:22 + 278.4 + 0.2000122 + + + 2025-07-24T06:47:23.467 + 278.2 + 0.19998169 + + + 2025-07-24T06:47:23.4 + 278 + 0.2000122 + + + 2025-07-24T06:47:23.671 + 277.7 + 0.2999878 + + + 2025-07-24T06:47:23.878 + 277.4 + 0.3000183 + + + 2025-07-24T06:47:24.08 + 277.2 + 0.19998169 + + + 2025-07-24T06:47:24.289 + 277 + 0.2000122 + + + 2025-07-24T06:47:24.29 + 276.7 + 0.2999878 + + + 2025-07-24T06:47:24 + 276.5 + 0.2000122 + + + 2025-07-24T06:47:24.706 + 276.3 + 0.2000122 + + + 2025-07-24T06:47:24.916 + 276.1 + 0.19998169 + + + 2025-07-24T06:47:25 + 275.8 + 0.3000183 + + + 2025-07-24T06:47:24 + 275.6 + 0.19998169 + + + 2025-07-24T06:47:25.328 + 275.4 + 0.2000122 + + + 2025-07-24T06:47:25.53 + 275.2 + 0.19998169 + + + 2025-07-24T06:47:25.3 + 275 + 0.2000122 + + + 2025-07-24T06:47:25.734 + 274.7 + 0.2999878 + + + 2025-07-24T06:47:25.939 + 274.5 + 0.2000122 + + + 2025-07-24T06:47:26 + 274.2 + 0.2999878 + + + 2025-07-24T06:47:26.358 + 274 + 0.2000122 + + + 2025-07-24T06:47:26.3 + 273.9 + 0.1000061 + + + 2025-07-24T06:47:26.563 + 273.7 + 0.19998169 + + + 2025-07-24T06:47:26.77 + 273.5 + 0.2000122 + + + 2025-07-24T06:47:26.979 + 273.2 + 0.2999878 + + + 2025-07-24T06:47:26 + 273 + 0.2000122 + + + 2025-07-24T06:47:26 + 272.7 + 0.2999878 + + + 2025-07-24T06:47:27.385 + 272.5 + 0.2000122 + + + 2025-07-24T06:47:27.589 + 272.3 + 0.2000122 + + + 2025-07-24T06:47:27.791 + 272 + 0.2999878 + + + 2025-07-24T06:47:27.791 + 271.8 + 0.2000122 + + + 2025-07-24T06:47:28 + 271.6 + 0.19998169 + + + 2025-07-24T06:47:28 + 271.4 + 0.2000122 + + + 2025-07-24T06:47:28.408 + 271.2 + 0.19998169 + + + 2025-07-24T06:47:28.613 + 271 + 0.2000122 + + + 2025-07-24T06:47:28.613 + 270.8 + 0.2000122 + + + 2025-07-24T06:47:28.816 + 270.6 + 0.19998169 + + + 2025-07-24T06:47:29 + 270.3 + 0.3000183 + + + 2025-07-24T06:47:29.239 + 270 + 0.2999878 + + + 2025-07-24T06:47:28.29 + 269.8 + 0.2000122 + + + 2025-07-24T06:47:29.443 + 269.6 + 0.19998169 + + + 2025-07-24T06:47:29.65 + 269.4 + 0.2000122 + + + 2025-07-24T06:47:29.852 + 269.2 + 0.19998169 + + + 2025-07-24T06:47:30.058 + 269 + 0.2000122 + + + 2025-07-24T06:47:30 + 268.8 + 0.2000122 + + + 2025-07-24T06:47:30 + 268.6 + 0.19998169 + + + 2025-07-24T06:47:30 + 268.4 + 0.2000122 + + + 2025-07-24T06:47:30.685 + 268.2 + 0.19998169 + + + 2025-07-24T06:47:30.685 + 268 + 0.2000122 + + + 2025-07-24T06:47:30 + 267.8 + 0.2000122 + + + 2025-07-24T06:47:30 + 267.6 + 0.19998169 + + + 2025-07-24T06:47:30 + 267.3 + 0.3000183 + + + 2025-07-24T06:47:31.3 + 267.1 + 0.19998169 + + + 2025-07-24T06:47:31.509 + 266.9 + 0.2000122 + + + 2025-07-24T06:47:31.711 + 266.7 + 0.19998169 + + + 2025-07-24T06:47:31.919 + 266.5 + 0.2000122 + + + 2025-07-24T06:47:32.135 + 266.3 + 0.2000122 + + + 2025-07-24T06:47:32 + 266.1 + 0.19998169 + + + 2025-07-24T06:47:32.339 + 265.9 + 0.2000122 + + + 2025-07-24T06:47:32.544 + 265.7 + 0.19998169 + + + 2025-07-24T06:47:32.757 + 265.4 + 0.3000183 + + + 2025-07-24T06:47:32.757 + 265.2 + 0.19998169 + + + 2025-07-24T06:47:33 + 265 + 0.2000122 + + + 2025-07-24T06:47:33.165 + 264.8 + 0.2000122 + + + 2025-07-24T06:47:33.367 + 264.6 + 0.19998169 + + + 2025-07-24T06:47:33.575 + 264.4 + 0.2000122 + + + 2025-07-24T06:47:33.575 + 264.3 + 0.1000061 + + + 2025-07-24T06:47:33.777 + 264.1 + 0.19998169 + + + 2025-07-24T06:47:33.979 + 263.9 + 0.2000122 + + + 2025-07-24T06:47:34 + 263.7 + 0.19998169 + + + 2025-07-24T06:47:33 + 263.4 + 0.3000183 + + + 2025-07-24T06:47:34 + 263.2 + 0.19998169 + + + 2025-07-24T06:47:34.586 + 263 + 0.2000122 + + + 2025-07-24T06:47:34.792 + 262.8 + 0.2000122 + + + 2025-07-24T06:47:34.994 + 262.6 + 0.19998169 + + + 2025-07-24T06:47:34 + 262.4 + 0.2000122 + + + 2025-07-24T06:47:34 + 262.2 + 0.19998169 + + + 2025-07-24T06:47:35.4 + 262.1 + 0.1000061 + + + 2025-07-24T06:47:35.3 + 261.9 + 0.2000122 + + + 2025-07-24T06:47:35.806 + 261.7 + 0.19998169 + + + 2025-07-24T06:47:35 + 261.5 + 0.2000122 + + + 2025-07-24T06:47:36 + 261.3 + 0.2000122 + + + 2025-07-24T06:47:36 + 261.1 + 0.19998169 + + + 2025-07-24T06:47:35 + 260.9 + 0.2000122 + + + 2025-07-24T06:47:36 + 260.8 + 0.1000061 + + + 2025-07-24T06:47:36.626 + 260.6 + 0.19998169 + + + 2025-07-24T06:47:36.7 + 260.4 + 0.2000122 + + + 2025-07-24T06:47:37 + 260.2 + 0.19998169 + + + 2025-07-24T06:47:37.239 + 260 + 0.2000122 + + + 2025-07-24T06:47:36 + 259.9 + 0.1000061 + + + 2025-07-24T06:47:37.441 + 259.7 + 0.19998169 + + + 2025-07-24T06:47:37.3 + 259.6 + 0.1000061 + + + 2025-07-24T06:47:37.856 + 259.4 + 0.2000122 + + + 2025-07-24T06:47:38 + 259.2 + 0.19998169 + + + 2025-07-24T06:47:37 + 259 + 0.2000122 + + + 2025-07-24T06:47:38 + 258.8 + 0.2000122 + + + 2025-07-24T06:47:38.3 + 258.6 + 0.19998169 + + + 2025-07-24T06:47:38.671 + 258.4 + 0.2000122 + + + 2025-07-24T06:47:38.671 + 258.3 + 0.1000061 + + + 2025-07-24T06:47:38 + 258.1 + 0.19998169 + + + 2025-07-24T06:47:38 + 257.9 + 0.2000122 + + + 2025-07-24T06:47:38 + 257.7 + 0.19998169 + + + 2025-07-24T06:47:39.492 + 257.6 + 0.1000061 + + + 2025-07-24T06:47:39.492 + 257.3 + 0.3000183 + + + 2025-07-24T06:47:39.3 + 257.2 + 0.099975586 + + + 2025-07-24T06:47:39.897 + 256.9 + 0.3000183 + + + 2025-07-24T06:47:39 + 256.7 + 0.19998169 + + + 2025-07-24T06:47:40 + 256.6 + 0.1000061 + + + 2025-07-24T06:47:40.302 + 256.4 + 0.2000122 + + + 2025-07-24T06:47:40.43 + 256.2 + 0.19998169 + + + 2025-07-24T06:47:40.713 + 256.1 + 0.1000061 + + + 2025-07-24T06:47:40 + 255.9 + 0.2000122 + + + 2025-07-24T06:47:41 + 255.7 + 0.19999695 + + + 2025-07-24T06:47:41 + 255.5 + 0.19999695 + + + 2025-07-24T06:47:40 + 255.3 + 0.19999695 + + + 2025-07-24T06:47:41.533 + 255.2 + 0.1000061 + + + 2025-07-24T06:47:41.735 + 255 + 0.19999695 + + + 2025-07-24T06:47:41.63 + 254.9 + 0.1000061 + + + 2025-07-24T06:47:42 + 254.7 + 0.19999695 + + + 2025-07-24T06:47:41 + 254.5 + 0.19999695 + + + 2025-07-24T06:47:42.349 + 254.3 + 0.19999695 + + + 2025-07-24T06:47:42 + 254.1 + 0.19999695 + + + 2025-07-24T06:47:42.3 + 253.9 + 0.2000122 + + + 2025-07-24T06:47:42.761 + 253.7 + 0.19999695 + + + 2025-07-24T06:47:42.967 + 253.6 + 0.099990845 + + + 2025-07-24T06:47:42 + 253.4 + 0.2000122 + + + 2025-07-24T06:47:42 + 253.2 + 0.19999695 + + + 2025-07-24T06:47:43.28 + 253.1 + 0.099990845 + + + 2025-07-24T06:47:43.28 + 252.8 + 0.30000305 + + + 2025-07-24T06:47:43.28 + 252.7 + 0.1000061 + + + 2025-07-24T06:47:43 + 252.5 + 0.19999695 + + + 2025-07-24T06:47:44 + 252.3 + 0.19999695 + + + 2025-07-24T06:47:44.04 + 252.1 + 0.19999695 + + + 2025-07-24T06:47:44.04 + 251.9 + 0.2000122 + + + 2025-07-24T06:47:44 + 251.7 + 0.19999695 + + + 2025-07-24T06:47:44.44 + 251.6 + 0.099990845 + + + 2025-07-24T06:47:44.44 + 251.4 + 0.2000122 + + + 2025-07-24T06:47:45 + 251.3 + 0.099990845 + + + 2025-07-24T06:47:45 + 251.1 + 0.19999695 + + + 2025-07-24T06:47:44 + 251 + 0.1000061 + + + 2025-07-24T06:47:44 + 250.7 + 0.30000305 + + + 2025-07-24T06:47:44 + 250.5 + 0.19999695 + + + 2025-07-24T06:47:45.43 + 250.3 + 0.19999695 + + + 2025-07-24T06:47:45 + 250.2 + 0.1000061 + + + 2025-07-24T06:47:46 + 250 + 0.19999695 + + + 2025-07-24T06:47:45 + 249.9 + 0.1000061 + + + 2025-07-24T06:47:46 + 249.7 + 0.19999695 + + + 2025-07-24T06:47:46 + 249.5 + 0.19999695 + + + 2025-07-24T06:47:46.3 + 249.3 + 0.19999695 + + + 2025-07-24T06:47:46.3 + 249.1 + 0.19999695 + + + 2025-07-24T06:47:46 + 249 + 0.1000061 + + + 2025-07-24T06:47:46 + 248.8 + 0.19999695 + + + 2025-07-24T06:47:47.385 + 248.6 + 0.19999695 + + + 2025-07-24T06:47:47.43 + 248.4 + 0.2000122 + + + 2025-07-24T06:47:47.793 + 248.2 + 0.19999695 + + + 2025-07-24T06:47:47.793 + 248 + 0.19999695 + + + 2025-07-24T06:47:48 + 247.9 + 0.1000061 + + + 2025-07-24T06:47:48 + 247.7 + 0.19999695 + + + 2025-07-24T06:47:48 + 247.6 + 0.099990845 + + + 2025-07-24T06:47:48.614 + 247.4 + 0.2000122 + + + 2025-07-24T06:47:48.614 + 247.2 + 0.19999695 + + + 2025-07-24T06:47:48.4 + 247 + 0.19999695 + + + 2025-07-24T06:47:49 + 246.8 + 0.19999695 + + + 2025-07-24T06:47:49.225 + 246.7 + 0.1000061 + + + 2025-07-24T06:47:48 + 246.6 + 0.099990845 + + + 2025-07-24T06:47:49.429 + 246.4 + 0.2000122 + + + 2025-07-24T06:47:49.43 + 246.2 + 0.19999695 + + + 2025-07-24T06:47:49.84 + 246 + 0.19999695 + + + 2025-07-24T06:47:50 + 245.8 + 0.19999695 + + + 2025-07-24T06:47:50 + 245.7 + 0.1000061 + + + 2025-07-24T06:47:50 + 245.6 + 0.099990845 + + + 2025-07-24T06:47:50 + 245.5 + 0.1000061 + + + 2025-07-24T06:47:50.654 + 245.3 + 0.19999695 + + + 2025-07-24T06:47:50.4 + 245.1 + 0.19999695 + + + 2025-07-24T06:47:50 + 244.9 + 0.2000122 + + + 2025-07-24T06:47:50 + 244.7 + 0.19999695 + + + 2025-07-24T06:47:50 + 244.6 + 0.099990845 + + + 2025-07-24T06:47:51.466 + 244.4 + 0.2000122 + + + 2025-07-24T06:47:51.668 + 244.3 + 0.099990845 + + + 2025-07-24T06:47:51.43 + 244.1 + 0.19999695 + + + 2025-07-24T06:47:51.873 + 243.9 + 0.2000122 + + + 2025-07-24T06:47:52.08 + 243.8 + 0.099990845 + + + 2025-07-24T06:47:52.282 + 243.6 + 0.19999695 + + + 2025-07-24T06:47:52.282 + 243.5 + 0.1000061 + + + 2025-07-24T06:47:52.4 + 243.3 + 0.19999695 + + + 2025-07-24T06:47:52.694 + 243.1 + 0.19999695 + + + 2025-07-24T06:47:52.896 + 243 + 0.1000061 + + + 2025-07-24T06:47:53.106 + 242.8 + 0.19999695 + + + 2025-07-24T06:47:52 + 242.6 + 0.19999695 + + + 2025-07-24T06:47:53.2 + 242.4 + 0.2000122 + + + 2025-07-24T06:47:53.52 + 242.3 + 0.099990845 + + + 2025-07-24T06:47:53.722 + 242.1 + 0.19999695 + + + 2025-07-24T06:47:53.43 + 242 + 0.1000061 + + + 2025-07-24T06:47:54 + 241.8 + 0.19999695 + + + 2025-07-24T06:47:54 + 241.7 + 0.1000061 + + + 2025-07-24T06:47:54.339 + 241.5 + 0.19999695 + + + 2025-07-24T06:47:54.541 + 241.4 + 0.1000061 + + + 2025-07-24T06:47:54.43 + 241.2 + 0.19999695 + + + 2025-07-24T06:47:54.748 + 241 + 0.19999695 + + + 2025-07-24T06:47:54 + 240.9 + 0.1000061 + + + 2025-07-24T06:47:55.157 + 240.7 + 0.19999695 + + + 2025-07-24T06:47:54 + 240.5 + 0.19999695 + + + 2025-07-24T06:47:54 + 240.4 + 0.1000061 + + + 2025-07-24T06:47:55.562 + 240.2 + 0.19999695 + + + 2025-07-24T06:47:55.4 + 240.1 + 0.099990845 + + + 2025-07-24T06:47:55.968 + 239.9 + 0.2000122 + + + 2025-07-24T06:47:56 + 239.7 + 0.19999695 + + + 2025-07-24T06:47:55 + 239.6 + 0.099990845 + + + 2025-07-24T06:47:56.379 + 239.4 + 0.2000122 + + + 2025-07-24T06:47:56.581 + 239.3 + 0.099990845 + + + 2025-07-24T06:47:56.789 + 239.1 + 0.19999695 + + + 2025-07-24T06:47:56.789 + 238.9 + 0.2000122 + + + 2025-07-24T06:47:57 + 238.7 + 0.19999695 + + + 2025-07-24T06:47:57 + 238.6 + 0.099990845 + + + 2025-07-24T06:47:57.405 + 238.5 + 0.1000061 + + + 2025-07-24T06:47:57.41 + 238.3 + 0.19999695 + + + 2025-07-24T06:47:57.607 + 238.2 + 0.1000061 + + + 2025-07-24T06:47:57.809 + 238 + 0.19999695 + + + 2025-07-24T06:47:58 + 237.8 + 0.19999695 + + + 2025-07-24T06:47:58.214 + 237.7 + 0.1000061 + + + 2025-07-24T06:47:58.1 + 237.5 + 0.19999695 + + + 2025-07-24T06:47:58 + 237.5 + 0 + + + 2025-07-24T06:47:58.622 + 237.3 + 0.19999695 + + + 2025-07-24T06:47:58.825 + 237.2 + 0.1000061 + + + 2025-07-24T06:47:59.028 + 237 + 0.19999695 + + + 2025-07-24T06:47:59 + 236.9 + 0.1000061 + + + 2025-07-24T06:47:58 + 236.7 + 0.19999695 + + + 2025-07-24T06:47:59.446 + 236.5 + 0.19999695 + + + 2025-07-24T06:47:59.654 + 236.4 + 0.1000061 + + + 2025-07-24T06:47:59.654 + 236.3 + 0.099990845 + + + 2025-07-24T06:47:59 + 236.1 + 0.19999695 + + + 2025-07-24T06:48:00.069 + 236 + 0.1000061 + + + 2025-07-24T06:48:00 + 235.8 + 0.19999695 + + + 2025-07-24T06:47:59 + 235.7 + 0.1000061 + + + 2025-07-24T06:48:00 + 235.5 + 0.19999695 + + + 2025-07-24T06:48:00.689 + 235.3 + 0.19999695 + + + 2025-07-24T06:48:00.895 + 235.2 + 0.1000061 + + + 2025-07-24T06:48:01.097 + 235.1 + 0.099990845 + + + 2025-07-24T06:48:00 + 234.9 + 0.2000122 + + + 2025-07-24T06:48:00 + 234.8 + 0.099990845 + + + 2025-07-24T06:48:01.517 + 234.7 + 0.1000061 + + + 2025-07-24T06:48:01.723 + 234.5 + 0.19999695 + + + 2025-07-24T06:48:01.723 + 234.4 + 0.1000061 + + + 2025-07-24T06:48:02 + 234.2 + 0.19999695 + + + 2025-07-24T06:48:02 + 234.1 + 0.099990845 + + + 2025-07-24T06:48:02.345 + 233.9 + 0.2000122 + + + 2025-07-24T06:48:02.557 + 233.8 + 0.099990845 + + + 2025-07-24T06:48:02.557 + 233.6 + 0.19999695 + + + 2025-07-24T06:48:02.761 + 233.5 + 0.1000061 + + + 2025-07-24T06:48:02.963 + 233.4 + 0.1000061 + + + 2025-07-24T06:48:03.17 + 233.3 + 0.099990845 + + + 2025-07-24T06:48:03.1 + 233.1 + 0.19999695 + + + 2025-07-24T06:48:03 + 233 + 0.1000061 + + + 2025-07-24T06:48:03.581 + 232.9 + 0.1000061 + + + 2025-07-24T06:48:03.786 + 232.7 + 0.19999695 + + + 2025-07-24T06:48:03.988 + 232.6 + 0.099990845 + + + 2025-07-24T06:48:03 + 232.5 + 0.1000061 + + + 2025-07-24T06:48:04 + 232.3 + 0.19999695 + + + 2025-07-24T06:48:04.412 + 232.2 + 0.1000061 + + + 2025-07-24T06:48:04.617 + 232 + 0.19999695 + + + 2025-07-24T06:48:04.617 + 231.9 + 0.1000061 + + + 2025-07-24T06:48:05 + 231.8 + 0.099990845 + + + 2025-07-24T06:48:05 + 231.6 + 0.19999695 + + + 2025-07-24T06:48:05.242 + 231.5 + 0.1000061 + + + 2025-07-24T06:48:05 + 231.3 + 0.19999695 + + + 2025-07-24T06:48:05.444 + 231.2 + 0.1000061 + + + 2025-07-24T06:48:05.649 + 231 + 0.19999695 + + + 2025-07-24T06:48:05.861 + 230.9 + 0.1000061 + + + 2025-07-24T06:48:06.064 + 230.7 + 0.19999695 + + + 2025-07-24T06:48:05.58 + 230.6 + 0.099990845 + + + 2025-07-24T06:48:06 + 230.5 + 0.1000061 + + + 2025-07-24T06:48:06 + 230.3 + 0.19999695 + + + 2025-07-24T06:48:06.683 + 230.2 + 0.1000061 + + + 2025-07-24T06:48:06.683 + 230.1 + 0.099990845 + + + 2025-07-24T06:48:06.894 + 230 + 0.1000061 + + + 2025-07-24T06:48:06 + 229.8 + 0.19999695 + + + 2025-07-24T06:48:07.318 + 229.7 + 0.1000061 + + + 2025-07-24T06:48:07.2 + 229.6 + 0.099990845 + + + 2025-07-24T06:48:07.521 + 229.5 + 0.1000061 + + + 2025-07-24T06:48:07.726 + 229.3 + 0.19999695 + + + 2025-07-24T06:48:07.941 + 229.2 + 0.1000061 + + + 2025-07-24T06:48:08.146 + 229.1 + 0.099990845 + + + 2025-07-24T06:48:08.1 + 228.9 + 0.2000122 + + + 2025-07-24T06:48:08 + 228.8 + 0.099990845 + + + 2025-07-24T06:48:08.563 + 228.7 + 0.1000061 + + + 2025-07-24T06:48:08.772 + 228.5 + 0.19999695 + + + 2025-07-24T06:48:08.772 + 228.4 + 0.1000061 + + + 2025-07-24T06:48:09 + 228.3 + 0.099990845 + + + 2025-07-24T06:48:09 + 228.2 + 0.1000061 + + + 2025-07-24T06:48:09.384 + 228 + 0.19999695 + + + 2025-07-24T06:48:09.59 + 227.9 + 0.1000061 + + + 2025-07-24T06:48:09.59 + 227.8 + 0.099990845 + + + 2025-07-24T06:48:09.59 + 227.6 + 0.19999695 + + + 2025-07-24T06:48:10 + 227.5 + 0.1000061 + + + 2025-07-24T06:48:10.199 + 227.4 + 0.1000061 + + + 2025-07-24T06:48:10 + 227.3 + 0.099990845 + + + 2025-07-24T06:48:10 + 227.1 + 0.19999695 + + + 2025-07-24T06:48:10 + 227 + 0.1000061 + + + 2025-07-24T06:48:10.822 + 226.9 + 0.1000061 + + + 2025-07-24T06:48:11.024 + 226.7 + 0.19999695 + + + 2025-07-24T06:48:11 + 226.6 + 0.099990845 + + + 2025-07-24T06:48:10 + 226.5 + 0.1000061 + + + 2025-07-24T06:48:11.429 + 226.3 + 0.19999695 + + + 2025-07-24T06:48:11.634 + 226.2 + 0.1000061 + + + 2025-07-24T06:48:11.839 + 226.1 + 0.099990845 + + + 2025-07-24T06:48:12 + 225.9 + 0.2000122 + + + 2025-07-24T06:48:12 + 225.8 + 0.099990845 + + + 2025-07-24T06:48:12 + 225.7 + 0.1000061 + + + 2025-07-24T06:48:12.446 + 225.6 + 0.099990845 + + + 2025-07-24T06:48:12 + 225.4 + 0.2000122 + + + 2025-07-24T06:48:12.652 + 225.3 + 0.099990845 + + + 2025-07-24T06:48:12.856 + 225.2 + 0.1000061 + + + 2025-07-24T06:48:13 + 225.1 + 0.099990845 + + + 2025-07-24T06:48:13.261 + 224.9 + 0.2000122 + + + 2025-07-24T06:48:12 + 224.8 + 0.099990845 + + + 2025-07-24T06:48:13.463 + 224.7 + 0.1000061 + + + 2025-07-24T06:48:13.672 + 224.5 + 0.19999695 + + + 2025-07-24T06:48:13.888 + 224.4 + 0.1000061 + + + 2025-07-24T06:48:14 + 224.3 + 0.099990845 + + + 2025-07-24T06:48:14 + 224.2 + 0.1000061 + + + 2025-07-24T06:48:14.302 + 224.1 + 0.099990845 + + + 2025-07-24T06:48:14 + 224 + 0.1000061 + + + 2025-07-24T06:48:14.709 + 223.8 + 0.19999695 + + + 2025-07-24T06:48:14 + 223.7 + 0.1000061 + + + 2025-07-24T06:48:14.913 + 223.5 + 0.19999695 + + + 2025-07-24T06:48:15 + 223.4 + 0.1000061 + + + 2025-07-24T06:48:15.33 + 223.3 + 0.099990845 + + + 2025-07-24T06:48:15.33 + 223.2 + 0.1000061 + + + 2025-07-24T06:48:15 + 223 + 0.19999695 + + + 2025-07-24T06:48:15.747 + 222.9 + 0.1000061 + + + 2025-07-24T06:48:15.953 + 222.8 + 0.099990845 + + + 2025-07-24T06:48:16.157 + 222.6 + 0.19999695 + + + 2025-07-24T06:48:16 + 222.5 + 0.1000061 + + + 2025-07-24T06:48:16 + 222.4 + 0.1000061 + + + 2025-07-24T06:48:16.562 + 222.3 + 0.099990845 + + + 2025-07-24T06:48:16.765 + 222.1 + 0.19999695 + + + 2025-07-24T06:48:17 + 222 + 0.1000061 + + + 2025-07-24T06:48:17 + 221.9 + 0.1000061 + + + 2025-07-24T06:48:17 + 221.8 + 0.099990845 + + + 2025-07-24T06:48:17.376 + 221.6 + 0.19999695 + + + 2025-07-24T06:48:17.578 + 221.5 + 0.1000061 + + + 2025-07-24T06:48:17.578 + 221.4 + 0.1000061 + + + 2025-07-24T06:48:17.783 + 221.3 + 0.099990845 + + + 2025-07-24T06:48:18 + 221.1 + 0.19999695 + + + 2025-07-24T06:48:18.201 + 221 + 0.1000061 + + + 2025-07-24T06:48:18 + 220.9 + 0.1000061 + + + 2025-07-24T06:48:18 + 220.8 + 0.099990845 + + + 2025-07-24T06:48:18.614 + 220.6 + 0.19999695 + + + 2025-07-24T06:48:18.816 + 220.5 + 0.1000061 + + + 2025-07-24T06:48:19.026 + 220.4 + 0.1000061 + + + 2025-07-24T06:48:19 + 220.3 + 0.099990845 + + + 2025-07-24T06:48:18 + 220.2 + 0.1000061 + + + 2025-07-24T06:48:19 + 220 + 0.19999695 + + + 2025-07-24T06:48:19 + 219.9 + 0.1000061 + + + 2025-07-24T06:48:19.6 + 219.8 + 0.099990845 + + + 2025-07-24T06:48:19.6 + 219.7 + 0.1000061 + + + 2025-07-24T06:48:20 + 219.6 + 0.099990845 + + + 2025-07-24T06:48:20 + 219.5 + 0.1000061 + + + 2025-07-24T06:48:20 + 219.3 + 0.19999695 + + + 2025-07-24T06:48:20 + 219.2 + 0.1000061 + + + 2025-07-24T06:48:20.4 + 219 + 0.19999695 + + + 2025-07-24T06:48:20.4 + 218.9 + 0.1000061 + + + 2025-07-24T06:48:21 + 218.8 + 0.099990845 + + + 2025-07-24T06:48:21 + 218.7 + 0.1000061 + + + 2025-07-24T06:48:21 + 218.6 + 0.099990845 + + + 2025-07-24T06:48:21.3 + 218.4 + 0.2000122 + + + 2025-07-24T06:48:21.3 + 218.3 + 0.099990845 + + + 2025-07-24T06:48:22 + 218.1 + 0.19999695 + + + 2025-07-24T06:48:22 + 218 + 0.1000061 + + + 2025-07-24T06:48:22 + 217.8 + 0.19999695 + + + 2025-07-24T06:48:22.1 + 217.7 + 0.1000061 + + + 2025-07-24T06:48:22 + 217.6 + 0.099990845 + + + 2025-07-24T06:48:22 + 217.5 + 0.1000061 + + + 2025-07-24T06:48:22 + 217.4 + 0.1000061 + + + 2025-07-24T06:48:22 + 217.2 + 0.19999695 + + + 2025-07-24T06:48:23 + 217.1 + 0.099990845 + + + 2025-07-24T06:48:22 + 217 + 0.1000061 + + + 2025-07-24T06:48:23 + 216.9 + 0.1000061 + + + 2025-07-24T06:48:23 + 216.8 + 0.099990845 + + + 2025-07-24T06:48:23 + 216.6 + 0.19999695 + + + 2025-07-24T06:48:24 + 216.5 + 0.1000061 + + + 2025-07-24T06:48:24 + 216.4 + 0.1000061 + + + 2025-07-24T06:48:24 + 216.3 + 0.099990845 + + + 2025-07-24T06:48:24.445 + 216.1 + 0.19999695 + + + 2025-07-24T06:48:24 + 216 + 0.1000061 + + + 2025-07-24T06:48:24.74 + 215.9 + 0.1000061 + + + 2025-07-24T06:48:24.857 + 215.8 + 0.099990845 + + + 2025-07-24T06:48:25.063 + 215.6 + 0.19999695 + + + 2025-07-24T06:48:25.274 + 215.5 + 0.1000061 + + + 2025-07-24T06:48:24 + 215.4 + 0.1000061 + + + 2025-07-24T06:48:25 + 215.2 + 0.19999695 + + + 2025-07-24T06:48:25.678 + 215.1 + 0.099990845 + + + 2025-07-24T06:48:25.881 + 215 + 0.1000061 + + + 2025-07-24T06:48:26.084 + 214.9 + 0.1000061 + + + 2025-07-24T06:48:26 + 214.7 + 0.19999695 + + + 2025-07-24T06:48:25.8 + 214.6 + 0.099990845 + + + 2025-07-24T06:48:26 + 214.5 + 0.1000061 + + + 2025-07-24T06:48:26.702 + 214.4 + 0.1000061 + + + 2025-07-24T06:48:25.8 + 214.3 + 0.099990845 + + + 2025-07-24T06:48:26.904 + 214.1 + 0.19999695 + + + 2025-07-24T06:48:27 + 214 + 0.1000061 + + + 2025-07-24T06:48:26 + 213.9 + 0.1000061 + + + 2025-07-24T06:48:27.515 + 213.8 + 0.099990845 + + + 2025-07-24T06:48:27.515 + 213.6 + 0.19999695 + + + 2025-07-24T06:48:27.727 + 213.5 + 0.1000061 + + + 2025-07-24T06:48:27.929 + 213.4 + 0.1000061 + + + 2025-07-24T06:48:28.131 + 213.3 + 0.099990845 + + + 2025-07-24T06:48:28 + 213.2 + 0.1000061 + + + 2025-07-24T06:48:28 + 213.1 + 0.099990845 + + + 2025-07-24T06:48:28.543 + 213 + 0.1000061 + + + 2025-07-24T06:48:28.749 + 212.9 + 0.1000061 + + + 2025-07-24T06:48:28.956 + 212.7 + 0.19999695 + + + 2025-07-24T06:48:29 + 212.6 + 0.099990845 + + + 2025-07-24T06:48:29 + 212.5 + 0.1000061 + + + 2025-07-24T06:48:29.369 + 212.4 + 0.1000061 + + + 2025-07-24T06:48:29.573 + 212.3 + 0.099990845 + + + 2025-07-24T06:48:29.66 + 212.2 + 0.1000061 + + + 2025-07-24T06:48:29.776 + 212.1 + 0.099990845 + + + 2025-07-24T06:48:30 + 212 + 0.1000061 + + + 2025-07-24T06:48:30 + 211.9 + 0.1000061 + + + 2025-07-24T06:48:30.387 + 211.8 + 0.099990845 + + + 2025-07-24T06:48:29.79 + 211.7 + 0.1000061 + + + 2025-07-24T06:48:30.594 + 211.6 + 0.099990845 + + + 2025-07-24T06:48:30.812 + 211.5 + 0.1000061 + + + 2025-07-24T06:48:31.015 + 211.4 + 0.1000061 + + + 2025-07-24T06:48:31 + 211.3 + 0.099990845 + + + 2025-07-24T06:48:30.8 + 211.2 + 0.1000061 + + + 2025-07-24T06:48:31.23 + 211.1 + 0.099990845 + + + 2025-07-24T06:48:31.629 + 211 + 0.1000061 + + + 2025-07-24T06:48:31.831 + 210.9 + 0.1000061 + + + 2025-07-24T06:48:31.831 + 210.8 + 0.099990845 + + + 2025-07-24T06:48:32 + 210.7 + 0.1000061 + + + 2025-07-24T06:48:32 + 210.5 + 0.19999695 + + + 2025-07-24T06:48:32.438 + 210.4 + 0.1000061 + + + 2025-07-24T06:48:31.8 + 210.3 + 0.099990845 + + + 2025-07-24T06:48:31.8 + 210.2 + 0.1000061 + + + 2025-07-24T06:48:32.843 + 210.1 + 0.099990845 + + + 2025-07-24T06:48:32.8 + 210 + 0.1000061 + + + 2025-07-24T06:48:33.247 + 209.8 + 0.19999695 + + + 2025-07-24T06:48:33 + 209.7 + 0.1000061 + + + 2025-07-24T06:48:32.8 + 209.6 + 0.099990845 + + + 2025-07-24T06:48:33.655 + 209.5 + 0.1000061 + + + 2025-07-24T06:48:33.7 + 209.4 + 0.1000061 + + + 2025-07-24T06:48:34 + 209.3 + 0.099990845 + + + 2025-07-24T06:48:34 + 209.2 + 0.1000061 + + + 2025-07-24T06:48:33.7 + 209.1 + 0.099990845 + + + 2025-07-24T06:48:34 + 209 + 0.1000061 + + + 2025-07-24T06:48:34.53 + 208.9 + 0.1000061 + + + 2025-07-24T06:48:34.87 + 208.8 + 0.099990845 + + + 2025-07-24T06:48:34.87 + 208.6 + 0.19999695 + + + 2025-07-24T06:48:35 + 208.5 + 0.1000061 + + + 2025-07-24T06:48:34 + 208.4 + 0.1000061 + + + 2025-07-24T06:48:34.8 + 208.3 + 0.099990845 + + + 2025-07-24T06:48:35.683 + 208.2 + 0.1000061 + + + 2025-07-24T06:48:35.683 + 208.1 + 0.099990845 + + + 2025-07-24T06:48:36 + 208 + 0.1000061 + + + 2025-07-24T06:48:36.088 + 207.9 + 0.1000061 + + + 2025-07-24T06:48:35.79 + 207.8 + 0.099990845 + + + 2025-07-24T06:48:36.495 + 207.7 + 0.1000061 + + + 2025-07-24T06:48:36 + 207.6 + 0.099990845 + + + 2025-07-24T06:48:35.79 + 207.4 + 0.2000122 + + + 2025-07-24T06:48:36.902 + 207.3 + 0.099990845 + + + 2025-07-24T06:48:36.9 + 207.2 + 0.1000061 + + + 2025-07-24T06:48:36.9 + 207.1 + 0.099990845 + + + 2025-07-24T06:48:36 + 207 + 0.1000061 + + + 2025-07-24T06:48:36.9 + 206.9 + 0.1000061 + + + 2025-07-24T06:48:37.714 + 206.8 + 0.099990845 + + + 2025-07-24T06:48:37.916 + 206.7 + 0.1000061 + + + 2025-07-24T06:48:38 + 206.5 + 0.19999695 + + + 2025-07-24T06:48:38.126 + 206.4 + 0.1000061 + + + 2025-07-24T06:48:38.334 + 206.3 + 0.099990845 + + + 2025-07-24T06:48:38.54 + 206.2 + 0.1000061 + + + 2025-07-24T06:48:38.54 + 206.1 + 0.099990845 + + + 2025-07-24T06:48:38.72 + 206 + 0.1000061 + + + 2025-07-24T06:48:39 + 205.9 + 0.1000061 + + + 2025-07-24T06:48:39 + 205.8 + 0.099990845 + + + 2025-07-24T06:48:39.364 + 205.7 + 0.1000061 + + + 2025-07-24T06:48:39.364 + 205.6 + 0.099990845 + + + 2025-07-24T06:48:39.44 + 205.5 + 0.1000061 + + + 2025-07-24T06:48:39.775 + 205.4 + 0.1000061 + + + 2025-07-24T06:48:39.985 + 205.3 + 0.099990845 + + + 2025-07-24T06:48:39.93 + 205.2 + 0.1000061 + + + 2025-07-24T06:48:40.1 + 205.1 + 0.099990845 + + + 2025-07-24T06:48:40.23 + 205 + 0.1000061 + + + 2025-07-24T06:48:40.605 + 204.9 + 0.1000061 + + + 2025-07-24T06:48:40.807 + 204.8 + 0.099990845 + + + 2025-07-24T06:48:39.93 + 204.7 + 0.1000061 + + + 2025-07-24T06:48:41 + 204.6 + 0.099990845 + + + 2025-07-24T06:48:40.93 + 204.5 + 0.1000061 + + + 2025-07-24T06:48:41.423 + 204.4 + 0.1000061 + + + 2025-07-24T06:48:41.423 + 204.3 + 0.099990845 + + + 2025-07-24T06:48:40.93 + 204.2 + 0.1000061 + + + 2025-07-24T06:48:41.829 + 204.2 + 0 + + + 2025-07-24T06:48:42 + 204.1 + 0.099990845 + + + 2025-07-24T06:48:42.233 + 204 + 0.1000061 + + + 2025-07-24T06:48:42 + 203.9 + 0.1000061 + + + 2025-07-24T06:48:41.8 + 203.8 + 0.099990845 + + + 2025-07-24T06:48:42.638 + 203.7 + 0.1000061 + + + 2025-07-24T06:48:41.8 + 203.7 + 0 + + + 2025-07-24T06:48:43 + 203.6 + 0.099990845 + + + 2025-07-24T06:48:42 + 203.5 + 0.1000061 + + + 2025-07-24T06:48:42.93 + 203.4 + 0.1000061 + + + 2025-07-24T06:48:43 + 203.3 + 0.099990845 + + + 2025-07-24T06:48:43.67 + 203.2 + 0.1000061 + + + 2025-07-24T06:48:43.69 + 203.2 + 0 + + + 2025-07-24T06:48:43.874 + 203.1 + 0.099990845 + + + 2025-07-24T06:48:44.078 + 203 + 0.1000061 + + + 2025-07-24T06:48:44.28 + 203 + 0 + + + 2025-07-24T06:48:44.485 + 202.9 + 0.1000061 + + + 2025-07-24T06:48:44.48 + 202.8 + 0.099990845 + + + 2025-07-24T06:48:44.687 + 202.7 + 0.1000061 + + + 2025-07-24T06:48:44.895 + 202.7 + 0 + + + 2025-07-24T06:48:45.1 + 202.6 + 0.099990845 + + + 2025-07-24T06:48:45.305 + 202.6 + 0 + + + 2025-07-24T06:48:45.2 + 202.5 + 0.1000061 + + + 2025-07-24T06:48:45.507 + 202.4 + 0.1000061 + + + 2025-07-24T06:48:45.711 + 202.4 + 0 + + + 2025-07-24T06:48:45.921 + 202.3 + 0.099990845 + + + 2025-07-24T06:48:46 + 202.2 + 0.1000061 + + + 2025-07-24T06:48:45.93 + 202.2 + 0 + + + 2025-07-24T06:48:46.345 + 202.1 + 0.099990845 + + + 2025-07-24T06:48:46.547 + 202 + 0.1000061 + + + 2025-07-24T06:48:45.93 + 201.9 + 0.1000061 + + + 2025-07-24T06:48:46.751 + 201.8 + 0.099990845 + + + 2025-07-24T06:48:47 + 201.7 + 0.1000061 + + + 2025-07-24T06:48:47 + 201.6 + 0.099990845 + + + 2025-07-24T06:48:47.371 + 201.5 + 0.1000061 + + + 2025-07-24T06:48:46.9 + 201.4 + 0.1000061 + + + 2025-07-24T06:48:47.573 + 201.2 + 0.19999695 + + + 2025-07-24T06:48:46.9 + 201.1 + 0.099990845 + + + 2025-07-24T06:48:47.977 + 201 + 0.1000061 + + + 2025-07-24T06:48:48.18 + 200.8 + 0.19999695 + + + 2025-07-24T06:48:47.97 + 200.7 + 0.1000061 + + + 2025-07-24T06:48:48 + 200.5 + 0.19999695 + + + 2025-07-24T06:48:48.59 + 200.4 + 0.1000061 + + + 2025-07-24T06:48:48.792 + 200.3 + 0.099990845 + + + 2025-07-24T06:48:48.792 + 200.2 + 0.1000061 + + + 2025-07-24T06:48:49 + 200 + 0.19999695 + + + 2025-07-24T06:48:49.198 + 199.9 + 0.1000061 + + + 2025-07-24T06:48:49.403 + 199.8 + 0.099990845 + + + 2025-07-24T06:48:49.609 + 199.7 + 0.1000061 + + + 2025-07-24T06:48:49.609 + 199.5 + 0.19999695 + + + 2025-07-24T06:48:49.815 + 199.4 + 0.1000061 + + + 2025-07-24T06:48:50 + 199.3 + 0.099990845 + + + 2025-07-24T06:48:50.223 + 199.1 + 0.19999695 + + + 2025-07-24T06:48:49.98 + 199 + 0.1000061 + + + 2025-07-24T06:48:50 + 198.8 + 0.19999695 + + + 2025-07-24T06:48:50.636 + 198.7 + 0.1000061 + + + 2025-07-24T06:48:50.84 + 198.6 + 0.099990845 + + + 2025-07-24T06:48:51 + 198.4 + 0.2000122 + + + 2025-07-24T06:48:50.93 + 198.3 + 0.099990845 + + + 2025-07-24T06:48:50 + 198.2 + 0.1000061 + + + 2025-07-24T06:48:51.454 + 198 + 0.19999695 + + + 2025-07-24T06:48:51.661 + 197.9 + 0.1000061 + + + 2025-07-24T06:48:51.661 + 197.8 + 0.099990845 + + + 2025-07-24T06:48:52 + 197.7 + 0.1000061 + + + 2025-07-24T06:48:52.072 + 197.6 + 0.099990845 + + + 2025-07-24T06:48:52 + 197.5 + 0.1000061 + + + 2025-07-24T06:48:52.483 + 197.3 + 0.19999695 + + + 2025-07-24T06:48:52 + 197.3 + 0 + + + 2025-07-24T06:48:51.96 + 197.2 + 0.1000061 + + + 2025-07-24T06:48:52.891 + 197.1 + 0.099990845 + + + 2025-07-24T06:48:52 + 197.1 + 0 + + + 2025-07-24T06:48:53.305 + 197.2 + -0.099990845 + + + 2025-07-24T06:48:53 + 197.2 + 0 + + + 2025-07-24T06:48:53.511 + 197.3 + -0.1000061 + + + 2025-07-24T06:48:53.731 + 197.4 + -0.099990845 + + + 2025-07-24T06:48:53.938 + 197.5 + -0.1000061 + + + 2025-07-24T06:48:54 + 197.7 + -0.19999695 + + + 2025-07-24T06:48:54 + 197.8 + -0.1000061 + + + 2025-07-24T06:48:54.35 + 198 + -0.19999695 + + + 2025-07-24T06:48:54.552 + 198.2 + -0.19999695 + + + 2025-07-24T06:48:54.552 + 198.4 + -0.19999695 + + + 2025-07-24T06:48:54.764 + 198.7 + -0.30000305 + + + 2025-07-24T06:48:55 + 198.9 + -0.19999695 + + + 2025-07-24T06:48:55 + 199.2 + -0.30000305 + + + 2025-07-24T06:48:55.378 + 199.4 + -0.19999695 + + + 2025-07-24T06:48:55.378 + 199.7 + -0.30000305 + + + 2025-07-24T06:48:55.581 + 199.9 + -0.19999695 + + + 2025-07-24T06:48:55.784 + 200.2 + -0.30000305 + + + 2025-07-24T06:48:55.784 + 200.5 + -0.30000305 + + + 2025-07-24T06:48:56.08 + 200.7 + -0.19999695 + + + 2025-07-24T06:48:56 + 201 + -0.30000305 + + + 2025-07-24T06:48:56 + 201.3 + -0.30000305 + + + 2025-07-24T06:48:56.08 + 201.6 + -0.30000305 + + + 2025-07-24T06:48:56.08 + 201.8 + -0.19999695 + + + 2025-07-24T06:48:56.08 + 202.1 + -0.30000305 + + + 2025-07-24T06:48:56 + 202.4 + -0.2999878 + + + 2025-07-24T06:48:57 + 202.6 + -0.2000122 + + + 2025-07-24T06:48:57.09 + 202.9 + -0.2999878 + + + 2025-07-24T06:48:57.09 + 203.2 + -0.30000305 + + + 2025-07-24T06:48:57.09 + 203.5 + -0.30000305 + + + 2025-07-24T06:48:57.6 + 203.7 + -0.19999695 + + + 2025-07-24T06:48:58 + 204 + -0.30000305 + + + 2025-07-24T06:48:58.08 + 204.3 + -0.30000305 + + + 2025-07-24T06:48:58 + 204.6 + -0.30000305 + + + 2025-07-24T06:48:58.08 + 204.8 + -0.19999695 + + + 2025-07-24T06:48:58.5 + 205.1 + -0.30000305 + + + 2025-07-24T06:48:58.5 + 205.4 + -0.2999878 + + + 2025-07-24T06:48:59 + 205.7 + -0.30000305 + + + 2025-07-24T06:48:59 + 206 + -0.30000305 + + + 2025-07-24T06:48:58 + 206.3 + -0.30000305 + + + 2025-07-24T06:48:59.09 + 206.5 + -0.19999695 + + + 2025-07-24T06:48:59.09 + 206.8 + -0.30000305 + + + 2025-07-24T06:48:59.09 + 207.1 + -0.30000305 + + + 2025-07-24T06:48:59.09 + 207.4 + -0.2999878 + + + 2025-07-24T06:49:00 + 207.7 + -0.30000305 + + + 2025-07-24T06:49:00 + 207.9 + -0.19999695 + + + 2025-07-24T06:49:00 + 208.2 + -0.30000305 + + + 2025-07-24T06:49:00 + 208.5 + -0.30000305 + + + 2025-07-24T06:49:00.801 + 208.8 + -0.30000305 + + + 2025-07-24T06:49:00.801 + 209.1 + -0.30000305 + + + 2025-07-24T06:49:00 + 209.4 + -0.2999878 + + + 2025-07-24T06:49:00 + 209.6 + -0.2000122 + + + 2025-07-24T06:49:01.42 + 209.9 + -0.2999878 + + + 2025-07-24T06:49:01.626 + 210.2 + -0.30000305 + + + 2025-07-24T06:49:01.626 + 210.4 + -0.19999695 + + + 2025-07-24T06:49:02 + 210.7 + -0.30000305 + + + 2025-07-24T06:49:02 + 211 + -0.30000305 + + + 2025-07-24T06:49:02.233 + 211.2 + -0.19999695 + + + 2025-07-24T06:49:02.19 + 211.5 + -0.30000305 + + + 2025-07-24T06:49:02 + 211.7 + -0.19999695 + + + 2025-07-24T06:49:02.19 + 212 + -0.30000305 + + + 2025-07-24T06:49:02.846 + 212.3 + -0.30000305 + + + 2025-07-24T06:49:03.051 + 212.5 + -0.19999695 + + + 2025-07-24T06:49:03 + 212.8 + -0.30000305 + + + 2025-07-24T06:49:02 + 213.1 + -0.30000305 + + + 2025-07-24T06:49:03.2 + 213.3 + -0.19999695 + + + 2025-07-24T06:49:03.668 + 213.6 + -0.30000305 + + + 2025-07-24T06:49:03.87 + 213.9 + -0.2999878 + + + 2025-07-24T06:49:04 + 214.2 + -0.30000305 + + + 2025-07-24T06:49:04.074 + 214.4 + -0.19999695 + + + 2025-07-24T06:49:04.276 + 214.7 + -0.30000305 + + + 2025-07-24T06:49:04 + 215 + -0.30000305 + + + 2025-07-24T06:49:04 + 215.2 + -0.19999695 + + + 2025-07-24T06:49:04.09 + 215.5 + -0.30000305 + + + 2025-07-24T06:49:04.889 + 215.8 + -0.30000305 + + + 2025-07-24T06:49:04 + 216.1 + -0.30000305 + + + 2025-07-24T06:49:04 + 216.4 + -0.2999878 + + + 2025-07-24T06:49:04 + 216.7 + -0.30000305 + + + 2025-07-24T06:49:05.495 + 217 + -0.30000305 + + + 2025-07-24T06:49:05.706 + 217.2 + -0.19999695 + + + 2025-07-24T06:49:05.91 + 217.4 + -0.19999695 + + + 2025-07-24T06:49:06.113 + 217.6 + -0.2000122 + + + 2025-07-24T06:49:06 + 217.8 + -0.19999695 + + + 2025-07-24T06:49:06.319 + 218.1 + -0.30000305 + + + 2025-07-24T06:49:06.528 + 218.3 + -0.19999695 + + + 2025-07-24T06:49:06.73 + 218.5 + -0.19999695 + + + 2025-07-24T06:49:06.8 + 218.8 + -0.30000305 + + + 2025-07-24T06:49:07 + 219 + -0.19999695 + + + 2025-07-24T06:49:07 + 219.3 + -0.30000305 + + + 2025-07-24T06:49:07.341 + 219.5 + -0.19999695 + + + 2025-07-24T06:49:07.55 + 219.7 + -0.19999695 + + + 2025-07-24T06:49:07.19 + 220 + -0.30000305 + + + 2025-07-24T06:49:07.752 + 220.2 + -0.19999695 + + + 2025-07-24T06:49:07.96 + 220.5 + -0.30000305 + + + 2025-07-24T06:49:08.168 + 220.7 + -0.19999695 + + + 2025-07-24T06:49:08 + 221 + -0.30000305 + + + 2025-07-24T06:49:08 + 221.2 + -0.19999695 + + + 2025-07-24T06:49:08.579 + 221.5 + -0.30000305 + + + 2025-07-24T06:49:08.793 + 221.8 + -0.30000305 + + + 2025-07-24T06:49:09 + 222 + -0.19999695 + + + 2025-07-24T06:49:08 + 222.3 + -0.30000305 + + + 2025-07-24T06:49:08 + 222.6 + -0.30000305 + + + 2025-07-24T06:49:09.411 + 222.8 + -0.19999695 + + + 2025-07-24T06:49:09.615 + 223.1 + -0.30000305 + + + 2025-07-24T06:49:09.19 + 223.4 + -0.2999878 + + + 2025-07-24T06:49:09.82 + 223.6 + -0.2000122 + + + 2025-07-24T06:49:10 + 223.8 + -0.19999695 + + + 2025-07-24T06:49:10 + 224.1 + -0.30000305 + + + 2025-07-24T06:49:10 + 224.3 + -0.19999695 + + + 2025-07-24T06:49:10 + 224.6 + -0.30000305 + + + 2025-07-24T06:49:10.647 + 224.8 + -0.19999695 + + + 2025-07-24T06:49:10.85 + 225 + -0.19999695 + + + 2025-07-24T06:49:11 + 225.2 + -0.19999695 + + + 2025-07-24T06:49:11 + 225.5 + -0.30000305 + + + 2025-07-24T06:49:10 + 225.7 + -0.19999695 + + + 2025-07-24T06:49:11.457 + 225.9 + -0.19999695 + + + 2025-07-24T06:49:11.66 + 226.2 + -0.30000305 + + + 2025-07-24T06:49:11.87 + 226.4 + -0.19999695 + + + 2025-07-24T06:49:11.87 + 226.6 + -0.2000122 + + + 2025-07-24T06:49:12 + 226.8 + -0.19999695 + + + 2025-07-24T06:49:12.282 + 227.1 + -0.30000305 + + + 2025-07-24T06:49:12 + 227.3 + -0.19999695 + + + 2025-07-24T06:49:12.3 + 227.5 + -0.19999695 + + + 2025-07-24T06:49:12.692 + 227.8 + -0.30000305 + + + 2025-07-24T06:49:12.894 + 228 + -0.19999695 + + + 2025-07-24T06:49:12 + 228.2 + -0.19999695 + + + 2025-07-24T06:49:13.314 + 228.5 + -0.30000305 + + + 2025-07-24T06:49:13 + 228.7 + -0.19999695 + + + 2025-07-24T06:49:13.527 + 229 + -0.30000305 + + + 2025-07-24T06:49:13.729 + 229.2 + -0.19999695 + + + 2025-07-24T06:49:13.934 + 229.4 + -0.19999695 + + + 2025-07-24T06:49:14 + 229.7 + -0.30000305 + + + 2025-07-24T06:49:14 + 229.9 + -0.19999695 + + + 2025-07-24T06:49:14.343 + 230.1 + -0.2000122 + + + 2025-07-24T06:49:14.548 + 230.4 + -0.2999878 + + + 2025-07-24T06:49:14.2 + 230.6 + -0.2000122 + + + 2025-07-24T06:49:14.768 + 230.8 + -0.19999695 + + + 2025-07-24T06:49:15 + 231 + -0.19999695 + + + 2025-07-24T06:49:15 + 231.2 + -0.19999695 + + + 2025-07-24T06:49:14 + 231.5 + -0.30000305 + + + 2025-07-24T06:49:15.29 + 231.7 + -0.19999695 + + + 2025-07-24T06:49:15.613 + 231.9 + -0.19999695 + + + 2025-07-24T06:49:15.82 + 232.1 + -0.2000122 + + + 2025-07-24T06:49:16.024 + 232.3 + -0.19999695 + + + 2025-07-24T06:49:16 + 232.6 + -0.30000305 + + + 2025-07-24T06:49:16 + 232.8 + -0.19999695 + + + 2025-07-24T06:49:16 + 233.1 + -0.30000305 + + + 2025-07-24T06:49:16.637 + 233.3 + -0.19999695 + + + 2025-07-24T06:49:16.6 + 233.5 + -0.19999695 + + + 2025-07-24T06:49:16.847 + 233.8 + -0.30000305 + + + 2025-07-24T06:49:16 + 234 + -0.19999695 + + + 2025-07-24T06:49:16 + 234.3 + -0.30000305 + + + 2025-07-24T06:49:17.462 + 234.5 + -0.19999695 + + + 2025-07-24T06:49:17.3 + 234.8 + -0.30000305 + + + 2025-07-24T06:49:17.664 + 235 + -0.19999695 + + + 2025-07-24T06:49:17.87 + 235.2 + -0.19999695 + + + 2025-07-24T06:49:18.074 + 235.4 + -0.19999695 + + + 2025-07-24T06:49:18 + 235.6 + -0.2000122 + + + 2025-07-24T06:49:17.3 + 235.9 + -0.2999878 + + + 2025-07-24T06:49:18 + 236.1 + -0.2000122 + + + 2025-07-24T06:49:18.697 + 236.3 + -0.19999695 + + + 2025-07-24T06:49:18.901 + 236.5 + -0.19999695 + + + 2025-07-24T06:49:19 + 236.8 + -0.30000305 + + + 2025-07-24T06:49:19 + 237 + -0.19999695 + + + 2025-07-24T06:49:19.322 + 237.2 + -0.19999695 + + + 2025-07-24T06:49:19.524 + 237.3 + -0.1000061 + + + 2025-07-24T06:49:19.726 + 237.4 + -0.099990845 + + + 2025-07-24T06:49:19.726 + 237.6 + -0.2000122 + + + 2025-07-24T06:49:19.929 + 237.8 + -0.19999695 + + + 2025-07-24T06:49:20 + 237.9 + -0.099990845 + + + 2025-07-24T06:49:20.35 + 238.1 + -0.2000122 + + + 2025-07-24T06:49:20.29 + 238.3 + -0.19999695 + + + 2025-07-24T06:49:20.558 + 238.4 + -0.099990845 + + + 2025-07-24T06:49:20.767 + 238.6 + -0.2000122 + + + 2025-07-24T06:49:20.974 + 238.8 + -0.19999695 + + + 2025-07-24T06:49:20 + 239 + -0.19999695 + + + 2025-07-24T06:49:20 + 239.2 + -0.19999695 + + + 2025-07-24T06:49:21.395 + 239.4 + -0.19999695 + + + 2025-07-24T06:49:21.6 + 239.6 + -0.2000122 + + + 2025-07-24T06:49:21.804 + 239.8 + -0.19999695 + + + 2025-07-24T06:49:21.804 + 240 + -0.19999695 + + + 2025-07-24T06:49:22 + 240.2 + -0.19999695 + + + 2025-07-24T06:49:22 + 240.4 + -0.19999695 + + + 2025-07-24T06:49:22.415 + 240.6 + -0.2000122 + + + 2025-07-24T06:49:22.2 + 240.8 + -0.19999695 + + + 2025-07-24T06:49:22.619 + 241 + -0.19999695 + + + 2025-07-24T06:49:22.827 + 241.2 + -0.19999695 + + + 2025-07-24T06:49:23 + 241.3 + -0.1000061 + + + 2025-07-24T06:49:23.232 + 241.5 + -0.19999695 + + + 2025-07-24T06:49:23 + 241.7 + -0.19999695 + + + 2025-07-24T06:49:23 + 241.9 + -0.19999695 + + + 2025-07-24T06:49:23.648 + 242.1 + -0.2000122 + + + 2025-07-24T06:49:23.878 + 242.2 + -0.099990845 + + + 2025-07-24T06:49:23.878 + 242.4 + -0.19999695 + + + 2025-07-24T06:49:24 + 242.6 + -0.2000122 + + + 2025-07-24T06:49:24.282 + 242.8 + -0.19999695 + + + 2025-07-24T06:49:24 + 242.9 + -0.099990845 + + + 2025-07-24T06:49:24.3 + 243.1 + -0.2000122 + + + 2025-07-24T06:49:24.695 + 243.2 + -0.099990845 + + + 2025-07-24T06:49:24.901 + 243.4 + -0.19999695 + + + 2025-07-24T06:49:24 + 243.6 + -0.2000122 + + + 2025-07-24T06:49:24 + 243.8 + -0.19999695 + + + 2025-07-24T06:49:25.3 + 244 + -0.19999695 + + + 2025-07-24T06:49:25.511 + 244.2 + -0.19999695 + + + 2025-07-24T06:49:25.713 + 244.3 + -0.1000061 + + + 2025-07-24T06:49:25.925 + 244.5 + -0.19999695 + + + 2025-07-24T06:49:26 + 244.6 + -0.1000061 + + + 2025-07-24T06:49:26 + 244.9 + -0.2999878 + + + 2025-07-24T06:49:26.335 + 245.1 + -0.2000122 + + + 2025-07-24T06:49:26.538 + 245.3 + -0.19999695 + + + 2025-07-24T06:49:26.748 + 245.5 + -0.19999695 + + + 2025-07-24T06:49:26.748 + 245.7 + -0.19999695 + + + 2025-07-24T06:49:27 + 245.9 + -0.19999695 + + + 2025-07-24T06:49:27 + 246.1 + -0.2000122 + + + 2025-07-24T06:49:27.359 + 246.3 + -0.19999695 + + + 2025-07-24T06:49:27.567 + 246.5 + -0.19999695 + + + 2025-07-24T06:49:27.567 + 246.7 + -0.19999695 + + + 2025-07-24T06:49:27.769 + 246.8 + -0.1000061 + + + 2025-07-24T06:49:27.972 + 247 + -0.19999695 + + + 2025-07-24T06:49:28.175 + 247.2 + -0.19999695 + + + 2025-07-24T06:49:28 + 247.3 + -0.1000061 + + + 2025-07-24T06:49:28 + 247.4 + -0.099990845 + + + 2025-07-24T06:49:28.584 + 247.6 + -0.2000122 + + + 2025-07-24T06:49:28.794 + 247.7 + -0.099990845 + + + 2025-07-24T06:49:29.005 + 247.9 + -0.19999695 + + + 2025-07-24T06:49:28 + 248 + -0.1000061 + + + 2025-07-24T06:49:28 + 248.2 + -0.19999695 + + + 2025-07-24T06:49:29.418 + 248.3 + -0.1000061 + + + 2025-07-24T06:49:29.623 + 248.5 + -0.19999695 + + + 2025-07-24T06:49:29.623 + 248.7 + -0.19999695 + + + 2025-07-24T06:49:29.44 + 248.8 + -0.1000061 + + + 2025-07-24T06:49:30 + 249 + -0.19999695 + + + 2025-07-24T06:49:30 + 249.2 + -0.19999695 + + + 2025-07-24T06:49:30.438 + 249.4 + -0.19999695 + + + 2025-07-24T06:49:30 + 249.6 + -0.2000122 + + + 2025-07-24T06:49:30.647 + 249.8 + -0.19999695 + + + 2025-07-24T06:49:30.86 + 249.9 + -0.099990845 + + + 2025-07-24T06:49:31.066 + 250.1 + -0.2000122 + + + 2025-07-24T06:49:31 + 250.3 + -0.19999695 + + + 2025-07-24T06:49:30 + 250.5 + -0.19999695 + + + 2025-07-24T06:49:31.478 + 250.7 + -0.19999695 + + + 2025-07-24T06:49:31.683 + 250.8 + -0.1000061 + + + 2025-07-24T06:49:31.888 + 251 + -0.19999695 + + + 2025-07-24T06:49:32 + 251.2 + -0.19999695 + + + 2025-07-24T06:49:32 + 251.4 + -0.19999695 + + + 2025-07-24T06:49:32.303 + 251.5 + -0.1000061 + + + 2025-07-24T06:49:32 + 251.7 + -0.19999695 + + + 2025-07-24T06:49:32 + 251.8 + -0.1000061 + + + 2025-07-24T06:49:32.709 + 251.9 + -0.099990845 + + + 2025-07-24T06:49:32.919 + 252.1 + -0.2000122 + + + 2025-07-24T06:49:32 + 252.3 + -0.19999695 + + + 2025-07-24T06:49:32 + 252.4 + -0.099990845 + + + 2025-07-24T06:49:33 + 252.6 + -0.2000122 + + + 2025-07-24T06:49:33 + 252.7 + -0.099990845 + + + 2025-07-24T06:49:33.3 + 252.8 + -0.1000061 + + + 2025-07-24T06:49:33.3 + 253 + -0.19999695 + + + 2025-07-24T06:49:34 + 253.1 + -0.1000061 + + + 2025-07-24T06:49:34 + 253.3 + -0.19999695 + + + 2025-07-24T06:49:34 + 253.4 + -0.099990845 + + + 2025-07-24T06:49:34.47 + 253.6 + -0.2000122 + + + 2025-07-24T06:49:34.47 + 253.8 + -0.19999695 + + + 2025-07-24T06:49:34.47 + 253.9 + -0.099990845 + + + 2025-07-24T06:49:35 + 254.1 + -0.2000122 + + + 2025-07-24T06:49:35 + 254.3 + -0.19999695 + + + 2025-07-24T06:49:35 + 254.4 + -0.099990845 + + + 2025-07-24T06:49:35 + 254.6 + -0.2000122 + + + 2025-07-24T06:49:35 + 254.8 + -0.19999695 + + + 2025-07-24T06:49:35.43 + 255 + -0.19999695 + + + 2025-07-24T06:49:36 + 255.2 + -0.19999695 + + + 2025-07-24T06:49:36 + 255.3 + -0.1000061 + + + 2025-07-24T06:49:36 + 255.5 + -0.19999695 + + + 2025-07-24T06:49:36 + 255.7 + -0.19999695 + + + 2025-07-24T06:49:36.43 + 255.9 + -0.19999695 + + + 2025-07-24T06:49:36.43 + 256 + -0.1000061 + + + 2025-07-24T06:49:36.43 + 256.1 + -0.1000061 + + + 2025-07-24T06:49:36 + 256.3 + -0.19998169 + + + 2025-07-24T06:49:36 + 256.5 + -0.2000122 + + + 2025-07-24T06:49:37.34 + 256.6 + -0.1000061 + + + 2025-07-24T06:49:37.34 + 256.8 + -0.19998169 + + + 2025-07-24T06:49:37.34 + 256.9 + -0.1000061 + + + 2025-07-24T06:49:37.43 + 257.1 + -0.2000122 + + + 2025-07-24T06:49:38 + 257.2 + -0.1000061 + + + 2025-07-24T06:49:38.19 + 257.3 + -0.099975586 + + + 2025-07-24T06:49:38 + 257.5 + -0.2000122 + + + 2025-07-24T06:49:38 + 257.6 + -0.1000061 + + + 2025-07-24T06:49:38.748 + 257.8 + -0.19998169 + + + 2025-07-24T06:49:38.748 + 258 + -0.2000122 + + + 2025-07-24T06:49:39 + 258.1 + -0.1000061 + + + 2025-07-24T06:49:39 + 258.3 + -0.19998169 + + + 2025-07-24T06:49:39.368 + 258.5 + -0.2000122 + + + 2025-07-24T06:49:39.573 + 258.6 + -0.1000061 + + + 2025-07-24T06:49:39.573 + 258.8 + -0.19998169 + + + 2025-07-24T06:49:39.47 + 258.9 + -0.1000061 + + + 2025-07-24T06:49:40 + 259.1 + -0.2000122 + + + 2025-07-24T06:49:40 + 259.3 + -0.19998169 + + + 2025-07-24T06:49:40 + 259.5 + -0.2000122 + + + 2025-07-24T06:49:40 + 259.7 + -0.2000122 + + + 2025-07-24T06:49:40.593 + 259.8 + -0.099975586 + + + 2025-07-24T06:49:40.798 + 260 + -0.2000122 + + + 2025-07-24T06:49:41.003 + 260.1 + -0.1000061 + + + 2025-07-24T06:49:40 + 260.2 + -0.1000061 + + + 2025-07-24T06:49:40 + 260.4 + -0.19998169 + + + 2025-07-24T06:49:41.416 + 260.5 + -0.1000061 + + + 2025-07-24T06:49:41.4 + 260.7 + -0.2000122 + + + 2025-07-24T06:49:41.82 + 260.8 + -0.099975586 + + + 2025-07-24T06:49:41.82 + 261 + -0.2000122 + + + 2025-07-24T06:49:42 + 261.2 + -0.2000122 + + + 2025-07-24T06:49:42 + 261.3 + -0.099975586 + + + 2025-07-24T06:49:42.21 + 261.5 + -0.2000122 + + + 2025-07-24T06:49:42 + 261.6 + -0.1000061 + + + 2025-07-24T06:49:42.639 + 261.8 + -0.19998169 + + + 2025-07-24T06:49:42.59 + 261.9 + -0.1000061 + + + 2025-07-24T06:49:43 + 262.1 + -0.2000122 + + + 2025-07-24T06:49:43.249 + 262.2 + -0.1000061 + + + 2025-07-24T06:49:42 + 262.4 + -0.19998169 + + + 2025-07-24T06:49:43.46 + 262.5 + -0.1000061 + + + 2025-07-24T06:49:43.5 + 262.7 + -0.2000122 + + + 2025-07-24T06:49:43.864 + 262.9 + -0.19998169 + + + 2025-07-24T06:49:44 + 263.1 + -0.2000122 + + + 2025-07-24T06:49:44 + 263.3 + -0.19998169 + + + 2025-07-24T06:49:44 + 263.4 + -0.1000061 + + + 2025-07-24T06:49:44 + 263.5 + -0.1000061 + + + 2025-07-24T06:49:44.683 + 263.7 + -0.2000122 + + + 2025-07-24T06:49:44.66 + 263.8 + -0.099975586 + + + 2025-07-24T06:49:44.58 + 264 + -0.2000122 + + + 2025-07-24T06:49:45 + 264.3 + -0.2999878 + + + 2025-07-24T06:49:44 + 264.5 + -0.2000122 + + + 2025-07-24T06:49:44 + 264.7 + -0.2000122 + + + 2025-07-24T06:49:45.518 + 264.8 + -0.099975586 + + + 2025-07-24T06:49:45.59 + 265 + -0.2000122 + + + 2025-07-24T06:49:45.928 + 265.1 + -0.1000061 + + + 2025-07-24T06:49:46.13 + 265.3 + -0.19998169 + + + 2025-07-24T06:49:46 + 265.4 + -0.1000061 + + + 2025-07-24T06:49:46.338 + 265.5 + -0.1000061 + + + 2025-07-24T06:49:46.51 + 265.7 + -0.2000122 + + + 2025-07-24T06:49:46.747 + 265.8 + -0.099975586 + + + 2025-07-24T06:49:46.747 + 266 + -0.2000122 + + + 2025-07-24T06:49:47 + 266.2 + -0.2000122 + + + 2025-07-24T06:49:47 + 266.3 + -0.099975586 + + + 2025-07-24T06:49:47.3 + 266.5 + -0.2000122 + + + 2025-07-24T06:49:47.571 + 266.7 + -0.2000122 + + + 2025-07-24T06:49:47.571 + 266.8 + -0.099975586 + + + 2025-07-24T06:49:47.58 + 267 + -0.2000122 + + + 2025-07-24T06:49:48 + 267.1 + -0.1000061 + + + 2025-07-24T06:49:48.187 + 267.2 + -0.1000061 + + + 2025-07-24T06:49:48 + 267.3 + -0.099975586 + + + 2025-07-24T06:49:48 + 267.5 + -0.2000122 + + + 2025-07-24T06:49:48 + 267.7 + -0.2000122 + + + 2025-07-24T06:49:48.802 + 267.9 + -0.19998169 + + + 2025-07-24T06:49:49.004 + 268.1 + -0.2000122 + + + 2025-07-24T06:49:48 + 268.3 + -0.19998169 + + + 2025-07-24T06:49:48 + 268.4 + -0.1000061 + + + 2025-07-24T06:49:49 + 268.6 + -0.2000122 + + + 2025-07-24T06:49:49.619 + 268.7 + -0.1000061 + + + 2025-07-24T06:49:49.821 + 268.8 + -0.099975586 + + + 2025-07-24T06:49:49.59 + 269 + -0.2000122 + + + 2025-07-24T06:49:50 + 269.1 + -0.1000061 + + + 2025-07-24T06:49:50 + 269.3 + -0.19998169 + + + 2025-07-24T06:49:50.435 + 269.5 + -0.2000122 + + + 2025-07-24T06:49:50 + 269.7 + -0.2000122 + + + 2025-07-24T06:49:50.41 + 269.9 + -0.19998169 + + + 2025-07-24T06:49:50.841 + 270 + -0.1000061 + + + 2025-07-24T06:49:51.045 + 270.2 + -0.2000122 + + + 2025-07-24T06:49:51.249 + 270.3 + -0.099975586 + + + 2025-07-24T06:49:50 + 270.4 + -0.1000061 + + + 2025-07-24T06:49:51.42 + 270.5 + -0.1000061 + + + 2025-07-24T06:49:51.662 + 270.7 + -0.2000122 + + + 2025-07-24T06:49:51.867 + 270.9 + -0.19998169 + + + 2025-07-24T06:49:52 + 271.1 + -0.2000122 + + + 2025-07-24T06:49:52 + 271.3 + -0.19998169 + + + 2025-07-24T06:49:52.2 + 271.5 + -0.2000122 + + + 2025-07-24T06:49:52 + 271.7 + -0.2000122 + + + 2025-07-24T06:49:52.692 + 271.8 + -0.099975586 + + + 2025-07-24T06:49:52.59 + 272 + -0.2000122 + + + 2025-07-24T06:49:52.901 + 272.1 + -0.1000061 + + + 2025-07-24T06:49:52 + 272.3 + -0.19998169 + + + 2025-07-24T06:49:52 + 272.5 + -0.2000122 + + + 2025-07-24T06:49:53 + 272.6 + -0.1000061 + + + 2025-07-24T06:49:53 + 272.8 + -0.19998169 + + + 2025-07-24T06:49:53.723 + 273 + -0.2000122 + + + 2025-07-24T06:49:53.69 + 273.1 + -0.1000061 + + + 2025-07-24T06:49:54.134 + 273.2 + -0.1000061 + + + 2025-07-24T06:49:54 + 273.4 + -0.19998169 + + + 2025-07-24T06:49:54 + 273.6 + -0.2000122 + + + 2025-07-24T06:49:54.544 + 273.8 + -0.19998169 + + + 2025-07-24T06:49:54 + 273.9 + -0.1000061 + + + 2025-07-24T06:49:54.59 + 274.1 + -0.2000122 + + + 2025-07-24T06:49:55 + 274.2 + -0.1000061 + + + 2025-07-24T06:49:55 + 274.4 + -0.19998169 + + + 2025-07-24T06:49:55.364 + 274.5 + -0.1000061 + + + 2025-07-24T06:49:55.571 + 274.7 + -0.2000122 + + + 2025-07-24T06:49:55.61 + 274.9 + -0.19998169 + + + 2025-07-24T06:49:55.774 + 275 + -0.1000061 + + + 2025-07-24T06:49:56 + 275.2 + -0.2000122 + + + 2025-07-24T06:49:56 + 275.3 + -0.099975586 + + + 2025-07-24T06:49:56.389 + 275.4 + -0.1000061 + + + 2025-07-24T06:49:56 + 275.6 + -0.2000122 + + + 2025-07-24T06:49:56.592 + 275.8 + -0.19998169 + + + 2025-07-24T06:49:56.798 + 276 + -0.2000122 + + + 2025-07-24T06:49:57.01 + 276.1 + -0.1000061 + + + 2025-07-24T06:49:56 + 276.3 + -0.19998169 + + + 2025-07-24T06:49:57 + 276.5 + -0.2000122 + + + 2025-07-24T06:49:57.424 + 276.6 + -0.1000061 + + + 2025-07-24T06:49:57.626 + 276.8 + -0.19998169 + + + 2025-07-24T06:49:57.832 + 276.9 + -0.1000061 + + + 2025-07-24T06:49:57.832 + 277.1 + -0.2000122 + + + 2025-07-24T06:49:58 + 277.2 + -0.1000061 + + + 2025-07-24T06:49:58 + 277.4 + -0.19998169 + + + 2025-07-24T06:49:58.456 + 277.6 + -0.2000122 + + + 2025-07-24T06:49:58 + 277.7 + -0.1000061 + + + 2025-07-24T06:49:58.659 + 277.9 + -0.19998169 + + + 2025-07-24T06:49:58.59 + 278.1 + -0.2000122 + + + 2025-07-24T06:49:59.074 + 278.2 + -0.1000061 + + + 2025-07-24T06:49:59 + 278.3 + -0.099975586 + + + 2025-07-24T06:49:59 + 278.5 + -0.2000122 + + + 2025-07-24T06:49:59.491 + 278.6 + -0.1000061 + + + 2025-07-24T06:49:59 + 278.7 + -0.1000061 + + + 2025-07-24T06:49:59.9 + 278.9 + -0.19998169 + + + 2025-07-24T06:50:00 + 279.1 + -0.2000122 + + + 2025-07-24T06:50:00 + 279.3 + -0.19998169 + + + 2025-07-24T06:50:00.306 + 279.4 + -0.1000061 + + + 2025-07-24T06:50:00 + 279.6 + -0.2000122 + + + 2025-07-24T06:50:00.4 + 279.8 + -0.19998169 + + + 2025-07-24T06:50:00.717 + 279.9 + -0.1000061 + + + 2025-07-24T06:50:01 + 280.1 + -0.2000122 + + + 2025-07-24T06:50:01 + 280.2 + -0.1000061 + + + 2025-07-24T06:50:01.324 + 280.3 + -0.099975586 + + + 2025-07-24T06:50:01.3 + 280.5 + -0.2000122 + + + 2025-07-24T06:50:01.526 + 280.7 + -0.2000122 + + + 2025-07-24T06:50:01.728 + 280.8 + -0.099975586 + + + 2025-07-24T06:50:01.931 + 281 + -0.2000122 + + + 2025-07-24T06:50:02.134 + 281.1 + -0.1000061 + + + 2025-07-24T06:50:02 + 281.3 + -0.19998169 + + + 2025-07-24T06:50:02.337 + 281.5 + -0.2000122 + + + 2025-07-24T06:50:02.543 + 281.7 + -0.2000122 + + + 2025-07-24T06:50:02.752 + 281.9 + -0.19998169 + + + 2025-07-24T06:50:02.752 + 282 + -0.1000061 + + + 2025-07-24T06:50:03 + 282.2 + -0.2000122 + + + 2025-07-24T06:50:03.164 + 282.3 + -0.099975586 + + + 2025-07-24T06:50:03.367 + 282.5 + -0.2000122 + + + 2025-07-24T06:50:03.583 + 282.6 + -0.1000061 + + + 2025-07-24T06:50:03.583 + 282.7 + -0.1000061 + + + 2025-07-24T06:50:03 + 282.9 + -0.19998169 + + + 2025-07-24T06:50:04 + 283.1 + -0.2000122 + + + 2025-07-24T06:50:04.191 + 283.2 + -0.1000061 + + + 2025-07-24T06:50:04 + 283.4 + -0.19998169 + + + 2025-07-24T06:50:04 + 283.6 + -0.2000122 + + + 2025-07-24T06:50:04 + 283.8 + -0.19998169 + + + 2025-07-24T06:50:04.811 + 284 + -0.2000122 + + + 2025-07-24T06:50:05.018 + 284.1 + -0.1000061 + + + 2025-07-24T06:50:05 + 284.3 + -0.19998169 + + + 2025-07-24T06:50:04 + 284.4 + -0.1000061 + + + 2025-07-24T06:50:05 + 284.5 + -0.1000061 + + + 2025-07-24T06:50:05.628 + 284.7 + -0.2000122 + + + 2025-07-24T06:50:05.831 + 284.9 + -0.19998169 + + + 2025-07-24T06:50:06 + 285.1 + -0.2000122 + + + 2025-07-24T06:50:06 + 285.2 + -0.1000061 + + + 2025-07-24T06:50:06 + 285.4 + -0.19998169 + + + 2025-07-24T06:50:06.454 + 285.5 + -0.1000061 + + + 2025-07-24T06:50:06 + 285.7 + -0.2000122 + + + 2025-07-24T06:50:06.656 + 285.9 + -0.19998169 + + + 2025-07-24T06:50:06.861 + 286 + -0.1000061 + + + 2025-07-24T06:50:07.063 + 286.2 + -0.2000122 + + + 2025-07-24T06:50:07.269 + 286.4 + -0.19998169 + + + 2025-07-24T06:50:06 + 286.5 + -0.1000061 + + + 2025-07-24T06:50:07.476 + 286.7 + -0.2000122 + + + 2025-07-24T06:50:07.681 + 286.9 + -0.19998169 + + + 2025-07-24T06:50:07.884 + 287 + -0.1000061 + + + 2025-07-24T06:50:08 + 287.2 + -0.2000122 + + + 2025-07-24T06:50:08.086 + 287.4 + -0.19998169 + + + 2025-07-24T06:50:08.295 + 287.5 + -0.1000061 + + + 2025-07-24T06:50:08 + 287.7 + -0.2000122 + + + 2025-07-24T06:50:08.71 + 287.8 + -0.099975586 + + + 2025-07-24T06:50:08 + 288 + -0.2000122 + + + 2025-07-24T06:50:08.916 + 288.2 + -0.2000122 + + + 2025-07-24T06:50:09 + 288.4 + -0.19998169 + + + 2025-07-24T06:50:09.323 + 288.5 + -0.1000061 + + + 2025-07-24T06:50:09.323 + 288.7 + -0.2000122 + + + 2025-07-24T06:50:09 + 288.9 + -0.19998169 + + + 2025-07-24T06:50:09.735 + 289 + -0.1000061 + + + 2025-07-24T06:50:09.944 + 289.2 + -0.2000122 + + + 2025-07-24T06:50:10.151 + 289.3 + -0.099975586 + + + 2025-07-24T06:50:10 + 289.5 + -0.2000122 + + + 2025-07-24T06:50:09.8 + 289.7 + -0.2000122 + + + 2025-07-24T06:50:10.4 + 289.8 + -0.099975586 + + + 2025-07-24T06:50:10.4 + 290 + -0.2000122 + + + 2025-07-24T06:50:10.4 + 290.2 + -0.2000122 + + + 2025-07-24T06:50:11 + 290.4 + -0.19998169 + + + 2025-07-24T06:50:11 + 290.6 + -0.2000122 + + + 2025-07-24T06:50:11 + 290.7 + -0.1000061 + + + 2025-07-24T06:50:11.2 + 290.9 + -0.19998169 + + + 2025-07-24T06:50:11.2 + 291 + -0.1000061 + + + 2025-07-24T06:50:11 + 291.2 + -0.2000122 + + + 2025-07-24T06:50:12 + 291.3 + -0.099975586 + + + 2025-07-24T06:50:12 + 291.5 + -0.2000122 + + + 2025-07-24T06:50:12 + 291.7 + -0.2000122 + + + 2025-07-24T06:50:12 + 291.9 + -0.19998169 + + + 2025-07-24T06:50:12 + 292 + -0.1000061 + + + 2025-07-24T06:50:12 + 292.2 + -0.2000122 + + + 2025-07-24T06:50:13 + 292.4 + -0.19998169 + + + 2025-07-24T06:50:12 + 292.5 + -0.1000061 + + + 2025-07-24T06:50:12 + 292.7 + -0.2000122 + + + 2025-07-24T06:50:13 + 292.8 + -0.099975586 + + + 2025-07-24T06:50:13 + 293 + -0.2000122 + + + 2025-07-24T06:50:13 + 293.2 + -0.2000122 + + + 2025-07-24T06:50:13.8 + 293.4 + -0.19998169 + + + 2025-07-24T06:50:14 + 293.6 + -0.2000122 + + + 2025-07-24T06:50:14 + 293.7 + -0.1000061 + + + 2025-07-24T06:50:14 + 293.9 + -0.19998169 + + + 2025-07-24T06:50:14 + 294 + -0.1000061 + + + 2025-07-24T06:50:14.63 + 294.2 + -0.2000122 + + + 2025-07-24T06:50:14.63 + 294.3 + -0.099975586 + + + 2025-07-24T06:50:15 + 294.5 + -0.2000122 + + + 2025-07-24T06:50:15 + 294.7 + -0.2000122 + + + 2025-07-24T06:50:15.398 + 294.9 + -0.19998169 + + + 2025-07-24T06:50:15.41 + 295.1 + -0.2000122 + + + 2025-07-24T06:50:15.601 + 295.3 + -0.19998169 + + + 2025-07-24T06:50:15.814 + 295.4 + -0.1000061 + + + 2025-07-24T06:50:16 + 295.6 + -0.2000122 + + + 2025-07-24T06:50:16.224 + 295.7 + -0.1000061 + + + 2025-07-24T06:50:16 + 295.9 + -0.19998169 + + + 2025-07-24T06:50:16 + 296 + -0.1000061 + + + 2025-07-24T06:50:16.638 + 296.2 + -0.2000122 + + + 2025-07-24T06:50:16.845 + 296.4 + -0.19998169 + + + 2025-07-24T06:50:16.845 + 296.6 + -0.2000122 + + + 2025-07-24T06:50:17 + 296.8 + -0.19998169 + + + 2025-07-24T06:50:16 + 297 + -0.2000122 + + + 2025-07-24T06:50:17.476 + 297.1 + -0.1000061 + + + 2025-07-24T06:50:17.678 + 297.3 + -0.19998169 + + + 2025-07-24T06:50:17.678 + 297.4 + -0.1000061 + + + 2025-07-24T06:50:17.9 + 297.6 + -0.2000122 + + + 2025-07-24T06:50:18.102 + 297.7 + -0.1000061 + + + 2025-07-24T06:50:18.309 + 297.9 + -0.19998169 + + + 2025-07-24T06:50:18 + 298.1 + -0.2000122 + + + 2025-07-24T06:50:18 + 298.3 + -0.19998169 + + + 2025-07-24T06:50:18.721 + 298.5 + -0.2000122 + + + 2025-07-24T06:50:18.927 + 298.7 + -0.2000122 + + + 2025-07-24T06:50:19 + 298.8 + -0.099975586 + + + 2025-07-24T06:50:19 + 299 + -0.2000122 + + + 2025-07-24T06:50:19.336 + 299.2 + -0.2000122 + + + 2025-07-24T06:50:19.54 + 299.4 + -0.19998169 + + + 2025-07-24T06:50:19.746 + 299.5 + -0.1000061 + + + 2025-07-24T06:50:19.746 + 299.7 + -0.2000122 + + + 2025-07-24T06:50:20 + 299.8 + -0.099975586 + + + 2025-07-24T06:50:20 + 300 + -0.2000122 + + + 2025-07-24T06:50:20.36 + 300.2 + -0.2000122 + + + 2025-07-24T06:50:20.31 + 300.4 + -0.19998169 + + + 2025-07-24T06:50:20.564 + 300.6 + -0.2000122 + + + 2025-07-24T06:50:20.769 + 300.8 + -0.19998169 + + + 2025-07-24T06:50:21 + 301 + -0.2000122 + + + 2025-07-24T06:50:21 + 301.1 + -0.1000061 + + + 2025-07-24T06:50:20 + 301.4 + -0.2999878 + + + 2025-07-24T06:50:21.384 + 301.5 + -0.1000061 + + + 2025-07-24T06:50:21.586 + 301.7 + -0.2000122 + + + 2025-07-24T06:50:21.788 + 301.8 + -0.099975586 + + + 2025-07-24T06:50:21.99 + 302 + -0.2000122 + + + 2025-07-24T06:50:22 + 302.1 + -0.1000061 + + + 2025-07-24T06:50:22 + 302.3 + -0.19998169 + + + 2025-07-24T06:50:22.403 + 302.6 + -0.3000183 + + + 2025-07-24T06:50:22.615 + 302.8 + -0.19998169 + + + 2025-07-24T06:50:22.615 + 303 + -0.2000122 + + + 2025-07-24T06:50:22 + 303.2 + -0.2000122 + + + 2025-07-24T06:50:23 + 303.3 + -0.099975586 + + + 2025-07-24T06:50:23.222 + 303.5 + -0.2000122 + + + 2025-07-24T06:50:23 + 303.7 + -0.2000122 + + + 2025-07-24T06:50:23 + 303.8 + -0.099975586 + + + 2025-07-24T06:50:23.629 + 304 + -0.2000122 + + + 2025-07-24T06:50:23.63 + 304.2 + -0.2000122 + + + 2025-07-24T06:50:24 + 304.4 + -0.19998169 + + + 2025-07-24T06:50:24.235 + 304.6 + -0.2000122 + + + 2025-07-24T06:50:24 + 304.7 + -0.1000061 + + + 2025-07-24T06:50:24 + 304.9 + -0.19998169 + + + 2025-07-24T06:50:24.49 + 305.1 + -0.2000122 + + + 2025-07-24T06:50:24.844 + 305.3 + -0.19998169 + + + 2025-07-24T06:50:25.046 + 305.5 + -0.2000122 + + + 2025-07-24T06:50:25 + 305.7 + -0.2000122 + + + 2025-07-24T06:50:24 + 305.9 + -0.19998169 + + + 2025-07-24T06:50:25.2 + 306.1 + -0.2000122 + + + 2025-07-24T06:50:25.659 + 306.3 + -0.19998169 + + + 2025-07-24T06:50:25.659 + 306.4 + -0.1000061 + + + 2025-07-24T06:50:24.9 + 306.6 + -0.2000122 + + + 2025-07-24T06:50:26.064 + 306.8 + -0.19998169 + + + 2025-07-24T06:50:26 + 307 + -0.2000122 + + + 2025-07-24T06:50:26.479 + 307.2 + -0.2000122 + + + 2025-07-24T06:50:26 + 307.4 + -0.19998169 + + + 2025-07-24T06:50:25.9 + 307.6 + -0.2000122 + + + 2025-07-24T06:50:26.884 + 307.8 + -0.19998169 + + + 2025-07-24T06:50:27.1 + 308 + -0.2000122 + + + 2025-07-24T06:50:27 + 308.2 + -0.2000122 + + + 2025-07-24T06:50:26 + 308.4 + -0.19998169 + + + 2025-07-24T06:50:26.9 + 308.6 + -0.2000122 + + + 2025-07-24T06:50:27.717 + 308.8 + -0.19998169 + + + 2025-07-24T06:50:27.92 + 309 + -0.2000122 + + + 2025-07-24T06:50:28 + 309.1 + -0.1000061 + + + 2025-07-24T06:50:28.132 + 309.3 + -0.19998169 + + + 2025-07-24T06:50:27.9 + 309.5 + -0.2000122 + + + 2025-07-24T06:50:28.538 + 309.8 + -0.2999878 + + + 2025-07-24T06:50:28.538 + 310 + -0.2000122 + + + 2025-07-24T06:50:28.7 + 310.2 + -0.2000122 + + + 2025-07-24T06:50:29 + 310.4 + -0.19998169 + + + 2025-07-24T06:50:28.99 + 310.6 + -0.2000122 + + + 2025-07-24T06:50:29.361 + 310.8 + -0.19998169 + + + 2025-07-24T06:50:29.361 + 311 + -0.2000122 + + + 2025-07-24T06:50:29.5 + 311.2 + -0.2000122 + + + 2025-07-24T06:50:29.767 + 311.4 + -0.19998169 + + + 2025-07-24T06:50:29.976 + 311.6 + -0.2000122 + + + 2025-07-24T06:50:30 + 311.7 + -0.1000061 + + + 2025-07-24T06:50:30 + 311.9 + -0.19998169 + + + 2025-07-24T06:50:30.4 + 312.2 + -0.3000183 + + + 2025-07-24T06:50:30.602 + 312.4 + -0.19998169 + + + 2025-07-24T06:50:30.804 + 312.6 + -0.2000122 + + + 2025-07-24T06:50:29.9 + 312.8 + -0.19998169 + + + 2025-07-24T06:50:31 + 313 + -0.2000122 + + + 2025-07-24T06:50:30.9 + 313.2 + -0.2000122 + + + 2025-07-24T06:50:31.413 + 313.4 + -0.19998169 + + + 2025-07-24T06:50:31.413 + 313.6 + -0.2000122 + + + 2025-07-24T06:50:30.9 + 313.8 + -0.19998169 + + + 2025-07-24T06:50:31.817 + 314 + -0.2000122 + + + 2025-07-24T06:50:32 + 314.2 + -0.2000122 + + + 2025-07-24T06:50:32.228 + 314.4 + -0.19998169 + + + 2025-07-24T06:50:32 + 314.7 + -0.3000183 + + + 2025-07-24T06:50:31.99 + 314.9 + -0.19998169 + + + 2025-07-24T06:50:32.633 + 315.1 + -0.2000122 + + + 2025-07-24T06:50:31.99 + 315.3 + -0.19998169 + + + 2025-07-24T06:50:33 + 315.6 + -0.3000183 + + + 2025-07-24T06:50:32 + 315.8 + -0.19998169 + + + 2025-07-24T06:50:32.9 + 316 + -0.2000122 + + + 2025-07-24T06:50:33.452 + 316.3 + -0.2999878 + + + 2025-07-24T06:50:33.655 + 316.4 + -0.1000061 + + + 2025-07-24T06:50:33.6 + 316.7 + -0.3000183 + + + 2025-07-24T06:50:33.857 + 316.9 + -0.19998169 + + + 2025-07-24T06:50:33.99 + 317 + -0.1000061 + + + 2025-07-24T06:50:34 + 317.3 + -0.2999878 + + + 2025-07-24T06:50:34.47 + 317.5 + -0.2000122 + + + 2025-07-24T06:50:34.5 + 317.7 + -0.2000122 + + + 2025-07-24T06:50:34.673 + 318 + -0.2999878 + + + 2025-07-24T06:50:34.875 + 318.3 + -0.2999878 + + + 2025-07-24T06:50:35.077 + 318.5 + -0.2000122 + + + 2025-07-24T06:50:35.28 + 318.8 + -0.2999878 + + + 2025-07-24T06:50:35.29 + 319 + -0.2000122 + + + 2025-07-24T06:50:35.482 + 319.2 + -0.2000122 + + + 2025-07-24T06:50:35.684 + 319.4 + -0.19998169 + + + 2025-07-24T06:50:35.888 + 319.7 + -0.3000183 + + + 2025-07-24T06:50:36.09 + 319.9 + -0.19998169 + + + 2025-07-24T06:50:35.9 + 320.1 + -0.2000122 + + + 2025-07-24T06:50:36.295 + 320.3 + -0.19998169 + + + 2025-07-24T06:50:36 + 320.6 + -0.3000183 + + + 2025-07-24T06:50:36.707 + 320.8 + -0.19998169 + + + 2025-07-24T06:50:36.707 + 321.1 + -0.3000183 + + + 2025-07-24T06:50:35.9 + 321.3 + -0.19998169 + + + 2025-07-24T06:50:37 + 321.6 + -0.3000183 + + + 2025-07-24T06:50:37.319 + 321.9 + -0.2999878 + + + 2025-07-24T06:50:37.528 + 322.2 + -0.3000183 + + + 2025-07-24T06:50:37.528 + 322.4 + -0.19998169 + + + 2025-07-24T06:50:36.9 + 322.7 + -0.3000183 + + + 2025-07-24T06:50:37.939 + 322.9 + -0.19998169 + + + 2025-07-24T06:50:38.142 + 323.2 + -0.3000183 + + + 2025-07-24T06:50:37.9 + 323.4 + -0.19998169 + + + 2025-07-24T06:50:38 + 323.6 + -0.2000122 + + + 2025-07-24T06:50:38.55 + 323.9 + -0.2999878 + + + 2025-07-24T06:50:38.76 + 324.2 + -0.3000183 + + + 2025-07-24T06:50:38.962 + 324.4 + -0.19998169 + + + 2025-07-24T06:50:38.99 + 324.7 + -0.3000183 + + + 2025-07-24T06:50:39 + 325 + -0.2999878 + + + 2025-07-24T06:50:39.376 + 325.2 + -0.2000122 + + + 2025-07-24T06:50:39.588 + 325.5 + -0.2999878 + + + 2025-07-24T06:50:39.588 + 325.8 + -0.2999878 + + + 2025-07-24T06:50:39.79 + 326.1 + -0.3000183 + + + 2025-07-24T06:50:40 + 326.3 + -0.19998169 + + + 2025-07-24T06:50:40.214 + 326.6 + -0.3000183 + + + 2025-07-24T06:50:40.416 + 326.9 + -0.2999878 + + + 2025-07-24T06:50:40 + 327.2 + -0.3000183 + + + 2025-07-24T06:50:40.618 + 327.4 + -0.19998169 + + + 2025-07-24T06:50:40.821 + 327.7 + -0.3000183 + + + 2025-07-24T06:50:41 + 328 + -0.2999878 + + + 2025-07-24T06:50:40.9 + 328.2 + -0.2000122 + + + 2025-07-24T06:50:40 + 328.5 + -0.2999878 + + + 2025-07-24T06:50:41.432 + 328.8 + -0.2999878 + + + 2025-07-24T06:50:41.642 + 329.1 + -0.3000183 + + + 2025-07-24T06:50:41.844 + 329.4 + -0.2999878 + + + 2025-07-24T06:50:40.9 + 329.7 + -0.3000183 + + + 2025-07-24T06:50:42.05 + 330 + -0.2999878 + + + 2025-07-24T06:50:42 + 330.3 + -0.2999878 + + + 2025-07-24T06:50:42.458 + 330.7 + -0.4000244 + + + 2025-07-24T06:50:42 + 331 + -0.2999878 + + + 2025-07-24T06:50:42.09 + 331.3 + -0.2999878 + + + 2025-07-24T06:50:42.882 + 331.6 + -0.3000183 + + + 2025-07-24T06:50:43.085 + 331.9 + -0.2999878 + + + 2025-07-24T06:50:43.293 + 332.1 + -0.2000122 + + + 2025-07-24T06:50:43 + 332.4 + -0.2999878 + + + 2025-07-24T06:50:43.503 + 332.7 + -0.3000183 + + + 2025-07-24T06:50:43.706 + 333 + -0.2999878 + + + 2025-07-24T06:50:43.908 + 333.3 + -0.2999878 + + + 2025-07-24T06:50:43.09 + 333.7 + -0.4000244 + + + 2025-07-24T06:50:44 + 334 + -0.2999878 + + + 2025-07-24T06:50:44.312 + 334.3 + -0.2999878 + + + 2025-07-24T06:50:44.525 + 334.7 + -0.4000244 + + + 2025-07-24T06:50:44.728 + 335 + -0.2999878 + + + 2025-07-24T06:50:44.728 + 335.3 + -0.2999878 + + + 2025-07-24T06:50:45 + 335.7 + -0.4000244 + + + 2025-07-24T06:50:45 + 336 + -0.2999878 + + + 2025-07-24T06:50:45.347 + 336.3 + -0.2999878 + + + 2025-07-24T06:50:45.347 + 336.6 + -0.3000183 + + + 2025-07-24T06:50:45.557 + 337 + -0.3999939 + + + 2025-07-24T06:50:45.768 + 337.3 + -0.2999878 + + + 2025-07-24T06:50:45.98 + 337.6 + -0.3000183 + + + 2025-07-24T06:50:45.91 + 337.9 + -0.2999878 + + + 2025-07-24T06:50:46 + 338.2 + -0.3000183 + + + 2025-07-24T06:50:46.387 + 338.6 + -0.3999939 + + + 2025-07-24T06:50:46.591 + 338.9 + -0.2999878 + + + 2025-07-24T06:50:46.8 + 339.3 + -0.3999939 + + + 2025-07-24T06:50:46.09 + 339.7 + -0.4000244 + + + 2025-07-24T06:50:47 + 340 + -0.2999878 + + + 2025-07-24T06:50:47 + 340.4 + -0.3999939 + + + 2025-07-24T06:50:47.09 + 340.8 + -0.3999939 + + + 2025-07-24T06:50:47.09 + 341.2 + -0.4000244 + + + 2025-07-24T06:50:47.09 + 341.6 + -0.3999939 + + + 2025-07-24T06:50:47.6 + 342 + -0.3999939 + + + 2025-07-24T06:50:48 + 342.3 + -0.2999878 + + + 2025-07-24T06:50:48.09 + 342.7 + -0.4000244 + + + 2025-07-24T06:50:48 + 343.1 + -0.3999939 + + + 2025-07-24T06:50:48.09 + 343.4 + -0.2999878 + + + 2025-07-24T06:50:48.4 + 343.8 + -0.3999939 + + + 2025-07-24T06:50:48.4 + 344.2 + -0.4000244 + + + 2025-07-24T06:50:49 + 344.5 + -0.2999878 + + + 2025-07-24T06:50:49 + 344.9 + -0.3999939 + + + 2025-07-24T06:50:48 + 345.3 + -0.3999939 + + + 2025-07-24T06:50:49.1 + 345.7 + -0.4000244 + + + 2025-07-24T06:50:49.1 + 346.1 + -0.3999939 + + + 2025-07-24T06:50:49.1 + 346.6 + -0.5 + + + 2025-07-24T06:50:49.1 + 347 + -0.3999939 + + + 2025-07-24T06:50:50 + 347.4 + -0.3999939 + + + 2025-07-24T06:50:50.09 + 347.8 + -0.3999939 + + + 2025-07-24T06:50:50.09 + 348.3 + -0.5 + + + 2025-07-24T06:50:50 + 348.7 + -0.4000244 + + + 2025-07-24T06:50:50.09 + 349.1 + -0.3999939 + + + 2025-07-24T06:50:50.09 + 349.5 + -0.3999939 + + + 2025-07-24T06:50:51 + 349.9 + -0.3999939 + + + 2025-07-24T06:50:51 + 350.2 + -0.3000183 + + + 2025-07-24T06:50:50 + 350.6 + -0.3999939 + + + 2025-07-24T06:50:51.624 + 351 + -0.3999939 + + + 2025-07-24T06:50:51.624 + 351.4 + -0.3999939 + + + 2025-07-24T06:50:51.1 + 351.8 + -0.3999939 + + + 2025-07-24T06:50:52 + 352.2 + -0.4000244 + + + 2025-07-24T06:50:52.239 + 352.6 + -0.3999939 + + + 2025-07-24T06:50:52.2 + 353.1 + -0.5 + + + 2025-07-24T06:50:52 + 353.5 + -0.3999939 + + + 2025-07-24T06:50:52.2 + 354 + -0.5 + + + 2025-07-24T06:50:52.848 + 354.4 + -0.3999939 + + + 2025-07-24T06:50:53 + 354.9 + -0.5 + + + 2025-07-24T06:50:53 + 355.4 + -0.5 + + + 2025-07-24T06:50:52 + 355.9 + -0.5 + + + 2025-07-24T06:50:53.463 + 356.3 + -0.3999939 + + + 2025-07-24T06:50:53.665 + 356.8 + -0.5 + + + 2025-07-24T06:50:53.665 + 357.2 + -0.4000244 + + + 2025-07-24T06:50:54 + 357.6 + -0.3999939 + + + 2025-07-24T06:50:54 + 358 + -0.3999939 + + + 2025-07-24T06:50:54.291 + 358.4 + -0.3999939 + + + 2025-07-24T06:50:54.493 + 358.9 + -0.5 + + + 2025-07-24T06:50:54 + 359.3 + -0.3999939 + + + 2025-07-24T06:50:54.698 + 359.7 + -0.4000244 + + + 2025-07-24T06:50:54.9 + 0.2 + -0.5 + + + 2025-07-24T06:50:55.104 + 0.6 + -0.40000004 + + + 2025-07-24T06:50:54 + 1.1 + -0.5 + + + 2025-07-24T06:50:54 + 1.5 + -0.39999998 + + + 2025-07-24T06:50:55.515 + 2 + -0.5 + + + 2025-07-24T06:50:55.722 + 2.5 + -0.5 + + + 2025-07-24T06:50:55.924 + 2.9 + -0.4000001 + + + 2025-07-24T06:50:56 + 3.4 + -0.5 + + + 2025-07-24T06:50:56 + 3.9 + -0.5 + + + 2025-07-24T06:50:56.338 + 4.3 + -0.4000001 + + + 2025-07-24T06:50:56.542 + 4.8 + -0.5 + + + 2025-07-24T06:50:56.542 + 5.3 + -0.5 + + + 2025-07-24T06:50:56.09 + 5.7 + -0.39999962 + + + 2025-07-24T06:50:57 + 6.2 + -0.5 + + + 2025-07-24T06:50:57 + 6.6 + -0.4000001 + + + 2025-07-24T06:50:57.362 + 7.1 + -0.5 + + + 2025-07-24T06:50:57.362 + 7.6 + -0.5 + + + 2025-07-24T06:50:57.09 + 8.1 + -0.5000005 + + + 2025-07-24T06:50:57.781 + 8.5 + -0.39999962 + + + 2025-07-24T06:50:57.985 + 9 + -0.5 + + + 2025-07-24T06:50:58 + 9.5 + -0.5 + + + 2025-07-24T06:50:58 + 10 + -0.5 + + + 2025-07-24T06:50:58.09 + 10.5 + -0.5 + + + 2025-07-24T06:50:58.598 + 11 + -0.5 + + + 2025-07-24T06:50:58.805 + 11.5 + -0.5 + + + 2025-07-24T06:50:58.09 + 12 + -0.5 + + + 2025-07-24T06:50:58 + 12.5 + -0.5 + + + 2025-07-24T06:50:58 + 13 + -0.5 + + + 2025-07-24T06:50:59.421 + 13.5 + -0.5 + + + 2025-07-24T06:50:59.421 + 13.9 + -0.39999962 + + + 2025-07-24T06:50:59.636 + 14.4 + -0.5 + + + 2025-07-24T06:50:59.848 + 14.9 + -0.5 + + + 2025-07-24T06:51:00.055 + 15.4 + -0.5 + + + 2025-07-24T06:51:00.26 + 15.8 + -0.40000057 + + + 2025-07-24T06:51:00 + 16.3 + -0.49999905 + + + 2025-07-24T06:51:00 + 16.8 + -0.5 + + + 2025-07-24T06:51:00.668 + 17.2 + -0.40000153 + + + 2025-07-24T06:51:00.872 + 17.7 + -0.5 + + + 2025-07-24T06:51:01 + 18.2 + -0.5 + + + 2025-07-24T06:51:01 + 18.7 + -0.5 + + + 2025-07-24T06:51:00 + 19.1 + -0.39999962 + + + 2025-07-24T06:51:01.484 + 19.6 + -0.5 + + + 2025-07-24T06:51:01.688 + 20.1 + -0.5 + + + 2025-07-24T06:51:01.09 + 20.6 + -0.5 + + + 2025-07-24T06:51:01.892 + 21.1 + -0.5 + + + 2025-07-24T06:51:02 + 21.6 + -0.5 + + + 2025-07-24T06:51:02.305 + 22.1 + -0.5 + + + 2025-07-24T06:51:02.305 + 22.5 + -0.39999962 + + + 2025-07-24T06:51:02.19 + 23 + -0.5 + + + 2025-07-24T06:51:02.723 + 23.5 + -0.5 + + + 2025-07-24T06:51:02.93 + 23.9 + -0.39999962 + + + 2025-07-24T06:51:02 + 24.4 + -0.5 + + + 2025-07-24T06:51:02 + 24.9 + -0.5 + + + 2025-07-24T06:51:03.2 + 25.3 + -0.39999962 + + + 2025-07-24T06:51:03.566 + 25.8 + -0.5 + + + 2025-07-24T06:51:03.768 + 26.2 + -0.40000153 + + + 2025-07-24T06:51:03.2 + 26.7 + -0.5 + + + 2025-07-24T06:51:04 + 27.2 + -0.5 + + + 2025-07-24T06:51:04 + 27.7 + -0.5 + + + 2025-07-24T06:51:04.379 + 28.1 + -0.39999962 + + + 2025-07-24T06:51:04.584 + 28.6 + -0.5 + + + 2025-07-24T06:51:04.584 + 29 + -0.39999962 + + + 2025-07-24T06:51:04.786 + 29.5 + -0.5 + + + 2025-07-24T06:51:05 + 30 + -0.5 + + + 2025-07-24T06:51:05 + 30.4 + -0.39999962 + + + 2025-07-24T06:51:04 + 30.8 + -0.39999962 + + + 2025-07-24T06:51:05.398 + 31.3 + -0.5 + + + 2025-07-24T06:51:05.607 + 31.7 + -0.40000153 + + + 2025-07-24T06:51:05.81 + 32.2 + -0.5 + + + 2025-07-24T06:51:06.02 + 32.6 + -0.3999977 + + + 2025-07-24T06:51:06 + 33.1 + -0.5 + + + 2025-07-24T06:51:06 + 33.5 + -0.40000153 + + + 2025-07-24T06:51:06 + 34 + -0.5 + + + 2025-07-24T06:51:06.638 + 34.4 + -0.40000153 + + + 2025-07-24T06:51:06.6 + 34.9 + -0.5 + + + 2025-07-24T06:51:06.84 + 35.3 + -0.3999977 + + + 2025-07-24T06:51:06 + 35.8 + -0.5 + + + 2025-07-24T06:51:06 + 36.2 + -0.40000153 + + + 2025-07-24T06:51:07.458 + 36.6 + -0.3999977 + + + 2025-07-24T06:51:07.3 + 37.1 + -0.5 + + + 2025-07-24T06:51:07.66 + 37.5 + -0.40000153 + + + 2025-07-24T06:51:07.869 + 37.9 + -0.40000153 + + + 2025-07-24T06:51:08.071 + 38.3 + -0.3999977 + + + 2025-07-24T06:51:08.071 + 38.7 + -0.40000153 + + + 2025-07-24T06:51:08 + 39.2 + -0.5 + + + 2025-07-24T06:51:08 + 39.6 + -0.3999977 + + + 2025-07-24T06:51:08.706 + 40 + -0.40000153 + + + 2025-07-24T06:51:08.912 + 40.4 + -0.40000153 + + + 2025-07-24T06:51:09 + 40.9 + -0.5 + + + 2025-07-24T06:51:09 + 41.3 + -0.3999977 + + + 2025-07-24T06:51:09.324 + 41.7 + -0.40000153 + + + 2025-07-24T06:51:09.526 + 42.2 + -0.5 + + + 2025-07-24T06:51:09.2 + 42.6 + -0.3999977 + + + 2025-07-24T06:51:09.728 + 43 + -0.40000153 + + + 2025-07-24T06:51:09.93 + 43.4 + -0.40000153 + + + 2025-07-24T06:51:10 + 43.9 + -0.5 + + + 2025-07-24T06:51:10.347 + 44.3 + -0.3999977 + + + 2025-07-24T06:51:10 + 44.7 + -0.40000153 + + + 2025-07-24T06:51:10.55 + 45.2 + -0.5 + + + 2025-07-24T06:51:10.763 + 45.6 + -0.3999977 + + + 2025-07-24T06:51:10.968 + 46.1 + -0.5 + + + 2025-07-24T06:51:10 + 46.5 + -0.40000153 + + + 2025-07-24T06:51:10 + 46.9 + -0.40000153 + + + 2025-07-24T06:51:11.379 + 47.3 + -0.3999977 + + + 2025-07-24T06:51:11.587 + 47.7 + -0.40000153 + + + 2025-07-24T06:51:11.63 + 48.2 + -0.5 + + + 2025-07-24T06:51:11.794 + 48.6 + -0.3999977 + + + 2025-07-24T06:51:12 + 49 + -0.40000153 + + + 2025-07-24T06:51:12 + 49.4 + -0.40000153 + + + 2025-07-24T06:51:12.432 + 49.8 + -0.3999977 + + + 2025-07-24T06:51:12.3 + 50.3 + -0.5 + + + 2025-07-24T06:51:12.634 + 50.6 + -0.29999924 + + + 2025-07-24T06:51:12.836 + 51 + -0.40000153 + + + 2025-07-24T06:51:13 + 51.4 + -0.40000153 + + + 2025-07-24T06:51:12 + 51.8 + -0.3999977 + + + 2025-07-24T06:51:13 + 52.3 + -0.5 + + + 2025-07-24T06:51:13.447 + 52.7 + -0.40000153 + + + 2025-07-24T06:51:13.654 + 53.1 + -0.3999977 + + + 2025-07-24T06:51:13.857 + 53.5 + -0.40000153 + + + 2025-07-24T06:51:14 + 53.9 + -0.40000153 + + + 2025-07-24T06:51:14 + 54.3 + -0.3999977 + + + 2025-07-24T06:51:14 + 54.7 + -0.40000153 + + + 2025-07-24T06:51:14 + 55.1 + -0.3999977 + + + 2025-07-24T06:51:14.671 + 55.5 + -0.40000153 + + + 2025-07-24T06:51:14.671 + 55.9 + -0.40000153 + + + 2025-07-24T06:51:14.873 + 56.3 + -0.3999977 + + + 2025-07-24T06:51:14 + 56.7 + -0.40000153 + + + 2025-07-24T06:51:14 + 57.1 + -0.3999977 + + + 2025-07-24T06:51:15.3 + 57.5 + -0.40000153 + + + 2025-07-24T06:51:15.493 + 57.9 + -0.40000153 + + + 2025-07-24T06:51:15.708 + 58.3 + -0.3999977 + + + 2025-07-24T06:51:15.914 + 58.7 + -0.40000153 + + + 2025-07-24T06:51:16 + 59.1 + -0.3999977 + + + 2025-07-24T06:51:16 + 59.5 + -0.40000153 + + + 2025-07-24T06:51:16.336 + 59.9 + -0.40000153 + + + 2025-07-24T06:51:16.538 + 60.3 + -0.3999977 + + + 2025-07-24T06:51:16.748 + 60.7 + -0.40000153 + + + 2025-07-24T06:51:16.748 + 61.1 + -0.3999977 + + + 2025-07-24T06:51:17 + 61.5 + -0.40000153 + + + 2025-07-24T06:51:17 + 61.9 + -0.40000153 + + + 2025-07-24T06:51:17.356 + 62.3 + -0.3999977 + + + 2025-07-24T06:51:17.3 + 62.7 + -0.40000153 + + + 2025-07-24T06:51:17.561 + 63.1 + -0.3999977 + + + 2025-07-24T06:51:17.767 + 63.5 + -0.40000153 + + + 2025-07-24T06:51:17.97 + 63.9 + -0.40000153 + + + 2025-07-24T06:51:18.172 + 64.3 + -0.40000153 + + + 2025-07-24T06:51:18 + 64.7 + -0.3999939 + + + 2025-07-24T06:51:18 + 65.1 + -0.40000153 + + + 2025-07-24T06:51:18.592 + 65.5 + -0.40000153 + + + 2025-07-24T06:51:18.799 + 65.9 + -0.40000153 + + + 2025-07-24T06:51:19.003 + 66.3 + -0.40000153 + + + 2025-07-24T06:51:18 + 66.7 + -0.3999939 + + + 2025-07-24T06:51:18 + 67.1 + -0.40000153 + + + 2025-07-24T06:51:19.428 + 67.5 + -0.40000153 + + + 2025-07-24T06:51:19.633 + 67.8 + -0.30000305 + + + 2025-07-24T06:51:19.633 + 68.2 + -0.3999939 + + + 2025-07-24T06:51:19.3 + 68.6 + -0.40000153 + + + 2025-07-24T06:51:20 + 69 + -0.40000153 + + + 2025-07-24T06:51:20 + 69.3 + -0.30000305 + + + 2025-07-24T06:51:20 + 69.7 + -0.3999939 + + + 2025-07-24T06:51:20 + 70.1 + -0.40000153 + + + 2025-07-24T06:51:20.664 + 70.5 + -0.40000153 + + + 2025-07-24T06:51:20.872 + 70.9 + -0.40000153 + + + 2025-07-24T06:51:21.074 + 71.2 + -0.29999542 + + + 2025-07-24T06:51:21 + 71.6 + -0.40000153 + + + 2025-07-24T06:51:20 + 72 + -0.40000153 + + + 2025-07-24T06:51:21.48 + 72.4 + -0.40000153 + + + 2025-07-24T06:51:21.687 + 72.8 + -0.40000153 + + + 2025-07-24T06:51:21.687 + 73.2 + -0.3999939 + + + 2025-07-24T06:51:21.894 + 73.6 + -0.40000153 + + + 2025-07-24T06:51:22 + 73.9 + -0.30000305 + + + 2025-07-24T06:51:22.305 + 74.3 + -0.40000153 + + + 2025-07-24T06:51:22 + 74.7 + -0.3999939 + + + 2025-07-24T06:51:22 + 75 + -0.30000305 + + + 2025-07-24T06:51:22.724 + 75.4 + -0.40000153 + + + 2025-07-24T06:51:22.926 + 75.8 + -0.40000153 + + + 2025-07-24T06:51:22 + 76.2 + -0.3999939 + + + 2025-07-24T06:51:22 + 76.6 + -0.40000153 + + + 2025-07-24T06:51:23 + 77 + -0.40000153 + + + 2025-07-24T06:51:23 + 77.3 + -0.30000305 + + + 2025-07-24T06:51:23.43 + 77.7 + -0.3999939 + + + 2025-07-24T06:51:23.43 + 78.1 + -0.40000153 + + + 2025-07-24T06:51:24 + 78.4 + -0.30000305 + + + 2025-07-24T06:51:24 + 78.8 + -0.40000153 + + + 2025-07-24T06:51:24 + 79.1 + -0.29999542 + + + 2025-07-24T06:51:24.43 + 79.5 + -0.40000153 + + + 2025-07-24T06:51:24.43 + 79.9 + -0.40000153 + + + 2025-07-24T06:51:24.43 + 80.2 + -0.29999542 + + + 2025-07-24T06:51:25 + 80.6 + -0.40000153 + + + 2025-07-24T06:51:25 + 81 + -0.40000153 + + + 2025-07-24T06:51:25 + 81.3 + -0.30000305 + + + 2025-07-24T06:51:25 + 81.7 + -0.3999939 + + + 2025-07-24T06:51:25.3 + 82 + -0.30000305 + + + 2025-07-24T06:51:25.3 + 82.4 + -0.40000153 + + + 2025-07-24T06:51:25.3 + 82.7 + -0.29999542 + + + 2025-07-24T06:51:26 + 83.1 + -0.40000153 + + + 2025-07-24T06:51:26 + 83.5 + -0.40000153 + + + 2025-07-24T06:51:26 + 83.8 + -0.30000305 + + + 2025-07-24T06:51:26.43 + 84.2 + -0.3999939 + + + 2025-07-24T06:51:26.43 + 84.5 + -0.30000305 + + + 2025-07-24T06:51:26.43 + 84.9 + -0.40000153 + + + 2025-07-24T06:51:26 + 85.2 + -0.29999542 + + + 2025-07-24T06:51:26 + 85.6 + -0.40000153 + + + 2025-07-24T06:51:27.24 + 86 + -0.40000153 + + + 2025-07-24T06:51:27.547 + 86.3 + -0.30000305 + + + 2025-07-24T06:51:27.75 + 86.6 + -0.29999542 + + + 2025-07-24T06:51:27.952 + 87 + -0.40000153 + + + 2025-07-24T06:51:28 + 87.3 + -0.30000305 + + + 2025-07-24T06:51:28 + 87.7 + -0.3999939 + + + 2025-07-24T06:51:28 + 88 + -0.30000305 + + + 2025-07-24T06:51:28.563 + 88.4 + -0.40000153 + + + 2025-07-24T06:51:28.766 + 88.7 + -0.29999542 + + + 2025-07-24T06:51:28.766 + 89.1 + -0.40000153 + + + 2025-07-24T06:51:29 + 89.4 + -0.30000305 + + + 2025-07-24T06:51:29 + 89.8 + -0.40000153 + + + 2025-07-24T06:51:29.386 + 90.1 + -0.29999542 + + + 2025-07-24T06:51:28.43 + 90.5 + -0.40000153 + + + 2025-07-24T06:51:29.591 + 90.8 + -0.30000305 + + + 2025-07-24T06:51:29.5 + 91.2 + -0.3999939 + + + 2025-07-24T06:51:29.997 + 91.5 + -0.30000305 + + + 2025-07-24T06:51:30.205 + 91.8 + -0.30000305 + + + 2025-07-24T06:51:29.5 + 92.2 + -0.3999939 + + + 2025-07-24T06:51:30 + 92.5 + -0.30000305 + + + 2025-07-24T06:51:30.614 + 92.9 + -0.40000153 + + + 2025-07-24T06:51:30.816 + 93.3 + -0.40000153 + + + 2025-07-24T06:51:30.816 + 93.6 + -0.29999542 + + + 2025-07-24T06:51:31 + 93.9 + -0.30000305 + + + 2025-07-24T06:51:30 + 94.3 + -0.40000153 + + + 2025-07-24T06:51:31.458 + 94.6 + -0.29999542 + + + 2025-07-24T06:51:31.4 + 94.9 + -0.30000305 + + + 2025-07-24T06:51:31.669 + 95.3 + -0.40000153 + + + 2025-07-24T06:51:31.871 + 95.6 + -0.29999542 + + + 2025-07-24T06:51:32.073 + 96 + -0.40000153 + + + 2025-07-24T06:51:32.281 + 96.3 + -0.30000305 + + + 2025-07-24T06:51:32.31 + 96.7 + -0.3999939 + + + 2025-07-24T06:51:32 + 97 + -0.30000305 + + + 2025-07-24T06:51:32.692 + 97.4 + -0.40000153 + + + 2025-07-24T06:51:32.894 + 97.7 + -0.29999542 + + + 2025-07-24T06:51:33 + 98 + -0.30000305 + + + 2025-07-24T06:51:33 + 98.4 + -0.40000153 + + + 2025-07-24T06:51:32 + 98.7 + -0.29999542 + + + 2025-07-24T06:51:33.505 + 99 + -0.30000305 + + + 2025-07-24T06:51:33.707 + 99.4 + -0.40000153 + + + 2025-07-24T06:51:33.707 + 99.7 + -0.29999542 + + + 2025-07-24T06:51:34 + 100.1 + -0.40000153 + + + 2025-07-24T06:51:34 + 100.4 + -0.30000305 + + + 2025-07-24T06:51:34.32 + 100.7 + -0.29999542 + + + 2025-07-24T06:51:34.522 + 101.1 + -0.40000153 + + + 2025-07-24T06:51:34.522 + 101.4 + -0.30000305 + + + 2025-07-24T06:51:34.43 + 101.8 + -0.40000153 + + + 2025-07-24T06:51:34.926 + 102.1 + -0.29999542 + + + 2025-07-24T06:51:34 + 102.4 + -0.30000305 + + + 2025-07-24T06:51:34 + 102.8 + -0.40000153 + + + 2025-07-24T06:51:35.337 + 103.1 + -0.29999542 + + + 2025-07-24T06:51:35.54 + 103.4 + -0.30000305 + + + 2025-07-24T06:51:35.744 + 103.7 + -0.29999542 + + + 2025-07-24T06:51:35.951 + 104 + -0.30000305 + + + 2025-07-24T06:51:36 + 104.4 + -0.40000153 + + + 2025-07-24T06:51:36 + 104.7 + -0.29999542 + + + 2025-07-24T06:51:36.36 + 105 + -0.30000305 + + + 2025-07-24T06:51:36.563 + 105.3 + -0.30000305 + + + 2025-07-24T06:51:36.774 + 105.6 + -0.29999542 + + + 2025-07-24T06:51:36.774 + 106 + -0.40000153 + + + 2025-07-24T06:51:37 + 106.3 + -0.30000305 + + + 2025-07-24T06:51:37 + 106.6 + -0.29999542 + + + 2025-07-24T06:51:37.388 + 106.9 + -0.30000305 + + + 2025-07-24T06:51:37.388 + 107.3 + -0.40000153 + + + 2025-07-24T06:51:37.592 + 107.6 + -0.29999542 + + + 2025-07-24T06:51:37.802 + 107.9 + -0.30000305 + + + 2025-07-24T06:51:38.009 + 108.2 + -0.29999542 + + + 2025-07-24T06:51:38 + 108.6 + -0.40000153 + + + 2025-07-24T06:51:38 + 108.9 + -0.30000305 + + + 2025-07-24T06:51:38 + 109.2 + -0.29999542 + + + 2025-07-24T06:51:38.628 + 109.5 + -0.30000305 + + + 2025-07-24T06:51:38.83 + 109.9 + -0.40000153 + + + 2025-07-24T06:51:38.59 + 110.2 + -0.29999542 + + + 2025-07-24T06:51:38 + 110.5 + -0.30000305 + + + 2025-07-24T06:51:38 + 110.8 + -0.30000305 + + + 2025-07-24T06:51:39.446 + 111.2 + -0.3999939 + + + 2025-07-24T06:51:39.648 + 111.5 + -0.30000305 + + + 2025-07-24T06:51:39.59 + 111.8 + -0.30000305 + + + 2025-07-24T06:51:39.867 + 112.1 + -0.29999542 + + + 2025-07-24T06:51:40.077 + 112.4 + -0.30000305 + + + 2025-07-24T06:51:40 + 112.7 + -0.29999542 + + + 2025-07-24T06:51:40.286 + 113 + -0.30000305 + + + 2025-07-24T06:51:40 + 113.4 + -0.40000153 + + + 2025-07-24T06:51:40.709 + 113.7 + -0.29999542 + + + 2025-07-24T06:51:40.914 + 114 + -0.30000305 + + + 2025-07-24T06:51:41 + 114.3 + -0.30000305 + + + 2025-07-24T06:51:41 + 114.6 + -0.29999542 + + + 2025-07-24T06:51:41.326 + 114.9 + -0.30000305 + + + 2025-07-24T06:51:41.533 + 115.2 + -0.29999542 + + + 2025-07-24T06:51:41.735 + 115.5 + -0.30000305 + + + 2025-07-24T06:51:41.59 + 115.8 + -0.30000305 + + + 2025-07-24T06:51:42 + 116.1 + -0.29999542 + + + 2025-07-24T06:51:42 + 116.4 + -0.30000305 + + + 2025-07-24T06:51:42.355 + 116.7 + -0.29999542 + + + 2025-07-24T06:51:42 + 117 + -0.30000305 + + + 2025-07-24T06:51:42.558 + 117.3 + -0.30000305 + + + 2025-07-24T06:51:42.764 + 117.6 + -0.29999542 + + + 2025-07-24T06:51:42.966 + 117.8 + -0.20000458 + + + 2025-07-24T06:51:43.168 + 118.1 + -0.29999542 + + + 2025-07-24T06:51:42 + 118.4 + -0.30000305 + + + 2025-07-24T06:51:43 + 118.6 + -0.19999695 + + + 2025-07-24T06:51:43.58 + 118.9 + -0.30000305 + + + 2025-07-24T06:51:43.782 + 119.2 + -0.29999542 + + + 2025-07-24T06:51:43.58 + 119.5 + -0.30000305 + + + 2025-07-24T06:51:44 + 119.7 + -0.19999695 + + + 2025-07-24T06:51:44 + 120 + -0.30000305 + + + 2025-07-24T06:51:44.391 + 120.3 + -0.30000305 + + + 2025-07-24T06:51:44.593 + 120.6 + -0.29999542 + + + 2025-07-24T06:51:44 + 120.9 + -0.30000305 + + + 2025-07-24T06:51:44.808 + 121.2 + -0.29999542 + + + 2025-07-24T06:51:45 + 121.5 + -0.30000305 + + + 2025-07-24T06:51:45.225 + 121.8 + -0.30000305 + + + 2025-07-24T06:51:44 + 122 + -0.19999695 + + + 2025-07-24T06:51:45 + 122.3 + -0.30000305 + + + 2025-07-24T06:51:45.636 + 122.6 + -0.29999542 + + + 2025-07-24T06:51:45.843 + 122.8 + -0.20000458 + + + 2025-07-24T06:51:46 + 123.1 + -0.29999542 + + + 2025-07-24T06:51:46 + 123.3 + -0.20000458 + + + 2025-07-24T06:51:46 + 123.6 + -0.29999542 + + + 2025-07-24T06:51:46 + 123.8 + -0.20000458 + + + 2025-07-24T06:51:46.667 + 124.1 + -0.29999542 + + + 2025-07-24T06:51:46.59 + 124.4 + -0.30000305 + + + 2025-07-24T06:51:46.872 + 124.7 + -0.29999542 + + + 2025-07-24T06:51:46 + 125 + -0.30000305 + + + 2025-07-24T06:51:46 + 125.3 + -0.30000305 + + + 2025-07-24T06:51:47.497 + 125.6 + -0.29999542 + + + 2025-07-24T06:51:47.497 + 125.9 + -0.30000305 + + + 2025-07-24T06:51:47.705 + 126.1 + -0.19999695 + + + 2025-07-24T06:51:47.914 + 126.4 + -0.30000305 + + + 2025-07-24T06:51:48.116 + 126.6 + -0.19999695 + + + 2025-07-24T06:51:48 + 126.9 + -0.30000305 + + + 2025-07-24T06:51:48 + 127.1 + -0.19999695 + + + 2025-07-24T06:51:48.541 + 127.4 + -0.30000305 + + + 2025-07-24T06:51:48.746 + 127.6 + -0.19999695 + + + 2025-07-24T06:51:48.69 + 127.9 + -0.30000305 + + + 2025-07-24T06:51:49 + 128.1 + -0.20000458 + + + 2025-07-24T06:51:49 + 128.4 + -0.2999878 + + + 2025-07-24T06:51:49.366 + 128.6 + -0.2000122 + + + 2025-07-24T06:51:49.567 + 128.9 + -0.2999878 + + + 2025-07-24T06:51:49.6 + 129.1 + -0.2000122 + + + 2025-07-24T06:51:49.772 + 129.4 + -0.2999878 + + + 2025-07-24T06:51:50 + 129.7 + -0.30000305 + + + 2025-07-24T06:51:50 + 129.9 + -0.19999695 + + + 2025-07-24T06:51:50 + 130.2 + -0.30000305 + + + 2025-07-24T06:51:50 + 130.4 + -0.19999695 + + + 2025-07-24T06:51:50.597 + 130.7 + -0.30000305 + + + 2025-07-24T06:51:50.801 + 130.9 + -0.19999695 + + + 2025-07-24T06:51:51.012 + 131.1 + -0.2000122 + + + 2025-07-24T06:51:50 + 131.4 + -0.2999878 + + + 2025-07-24T06:51:50.59 + 131.6 + -0.2000122 + + + 2025-07-24T06:51:51.423 + 131.8 + -0.19999695 + + + 2025-07-24T06:51:51.634 + 132.1 + -0.30000305 + + + 2025-07-24T06:51:51.69 + 132.3 + -0.19999695 + + + 2025-07-24T06:51:51.837 + 132.5 + -0.19999695 + + + 2025-07-24T06:51:52 + 132.8 + -0.30000305 + + + 2025-07-24T06:51:52 + 133 + -0.19999695 + + + 2025-07-24T06:51:52.446 + 133.2 + -0.19999695 + + + 2025-07-24T06:51:52 + 133.5 + -0.30000305 + + + 2025-07-24T06:51:52.652 + 133.7 + -0.19999695 + + + 2025-07-24T06:51:52.856 + 133.9 + -0.19999695 + + + 2025-07-24T06:51:53.058 + 134.1 + -0.2000122 + + + 2025-07-24T06:51:53.265 + 134.3 + -0.19999695 + + + 2025-07-24T06:51:52 + 134.5 + -0.19999695 + + + 2025-07-24T06:51:53.467 + 134.7 + -0.19999695 + + + 2025-07-24T06:51:53.675 + 135 + -0.30000305 + + + 2025-07-24T06:51:53.886 + 135.2 + -0.19999695 + + + 2025-07-24T06:51:54 + 135.3 + -0.1000061 + + + 2025-07-24T06:51:54 + 135.5 + -0.19999695 + + + 2025-07-24T06:51:54.295 + 135.7 + -0.19999695 + + + 2025-07-24T06:51:54 + 135.9 + -0.19999695 + + + 2025-07-24T06:51:54.52 + 136.1 + -0.2000122 + + + 2025-07-24T06:51:54.703 + 136.3 + -0.19999695 + + + 2025-07-24T06:51:54.912 + 136.6 + -0.30000305 + + + 2025-07-24T06:51:55 + 136.8 + -0.19999695 + + + 2025-07-24T06:51:55.321 + 137 + -0.19999695 + + + 2025-07-24T06:51:55.4 + 137.2 + -0.19999695 + + + 2025-07-24T06:51:55.524 + 137.4 + -0.19999695 + + + 2025-07-24T06:51:55.732 + 137.6 + -0.2000122 + + + 2025-07-24T06:51:55.934 + 137.7 + -0.099990845 + + + 2025-07-24T06:51:56.137 + 137.9 + -0.19999695 + + + 2025-07-24T06:51:56 + 138 + -0.1000061 + + + 2025-07-24T06:51:56.341 + 138.2 + -0.19999695 + + + 2025-07-24T06:51:56.557 + 138.4 + -0.19999695 + + + 2025-07-24T06:51:56.763 + 138.6 + -0.2000122 + + + 2025-07-24T06:51:56.763 + 138.8 + -0.19999695 + + + 2025-07-24T06:51:56.69 + 139 + -0.19999695 + + + 2025-07-24T06:51:57 + 139.3 + -0.30000305 + + + 2025-07-24T06:51:57.382 + 139.5 + -0.19999695 + + + 2025-07-24T06:51:57.588 + 139.7 + -0.19999695 + + + 2025-07-24T06:51:57.588 + 139.9 + -0.19999695 + + + 2025-07-24T06:51:57.69 + 140.1 + -0.2000122 + + + 2025-07-24T06:51:58 + 140.2 + -0.099990845 + + + 2025-07-24T06:51:58.197 + 140.4 + -0.19999695 + + + 2025-07-24T06:51:58 + 140.5 + -0.1000061 + + + 2025-07-24T06:51:58 + 140.7 + -0.19999695 + + + 2025-07-24T06:51:58 + 140.9 + -0.19999695 + + + 2025-07-24T06:51:58.6 + 141 + -0.1000061 + + + 2025-07-24T06:51:58.6 + 141.2 + -0.19999695 + + + 2025-07-24T06:51:59 + 141.4 + -0.19999695 + + + 2025-07-24T06:51:58 + 141.7 + -0.30000305 + + + 2025-07-24T06:51:58 + 141.9 + -0.19999695 + + + 2025-07-24T06:51:59.3 + 142.1 + -0.2000122 + + + 2025-07-24T06:51:59.3 + 142.3 + -0.19999695 + + + 2025-07-24T06:51:59.3 + 142.5 + -0.19999695 + + + 2025-07-24T06:52:00 + 142.7 + -0.19999695 + + + 2025-07-24T06:52:00 + 142.8 + -0.1000061 + + + 2025-07-24T06:52:00.31 + 143 + -0.19999695 + + + 2025-07-24T06:52:00 + 143.1 + -0.1000061 + + + 2025-07-24T06:52:00 + 143.3 + -0.19999695 + + + 2025-07-24T06:52:00 + 143.5 + -0.19999695 + + + 2025-07-24T06:52:01 + 143.6 + -0.1000061 + + + 2025-07-24T06:52:01 + 143.8 + -0.19999695 + + + 2025-07-24T06:52:00 + 144 + -0.19999695 + + + 2025-07-24T06:52:00 + 144.2 + -0.19999695 + + + 2025-07-24T06:52:01 + 144.4 + -0.19999695 + + + 2025-07-24T06:52:01 + 144.6 + -0.2000122 + + + 2025-07-24T06:52:02 + 144.8 + -0.19999695 + + + 2025-07-24T06:52:02 + 145 + -0.19999695 + + + 2025-07-24T06:52:02 + 145.2 + -0.19999695 + + + 2025-07-24T06:52:02 + 145.4 + -0.19999695 + + + 2025-07-24T06:52:02 + 145.5 + -0.1000061 + + + 2025-07-24T06:52:02 + 145.7 + -0.19999695 + + + 2025-07-24T06:52:02.79 + 145.9 + -0.19999695 + + + 2025-07-24T06:52:02 + 146 + -0.1000061 + + + 2025-07-24T06:52:02 + 146.2 + -0.19999695 + + + 2025-07-24T06:52:03 + 146.3 + -0.1000061 + + + 2025-07-24T06:52:03 + 146.5 + -0.19999695 + + + 2025-07-24T06:52:03.53 + 146.6 + -0.1000061 + + + 2025-07-24T06:52:03.848 + 146.8 + -0.19999695 + + + 2025-07-24T06:52:04 + 147 + -0.19999695 + + + 2025-07-24T06:52:04 + 147.2 + -0.19999695 + + + 2025-07-24T06:52:04.46 + 147.4 + -0.19999695 + + + 2025-07-24T06:52:04.2 + 147.6 + -0.2000122 + + + 2025-07-24T06:52:04.662 + 147.8 + -0.19999695 + + + 2025-07-24T06:52:04.868 + 148 + -0.19999695 + + + 2025-07-24T06:52:05.071 + 148.2 + -0.19999695 + + + 2025-07-24T06:52:05.274 + 148.3 + -0.1000061 + + + 2025-07-24T06:52:05 + 148.5 + -0.19999695 + + + 2025-07-24T06:52:05.476 + 148.6 + -0.1000061 + + + 2025-07-24T06:52:05.69 + 148.8 + -0.19999695 + + + 2025-07-24T06:52:05.897 + 148.9 + -0.099990845 + + + 2025-07-24T06:52:06 + 149.1 + -0.2000122 + + + 2025-07-24T06:52:06 + 149.2 + -0.099990845 + + + 2025-07-24T06:52:06.301 + 149.4 + -0.19999695 + + + 2025-07-24T06:52:06.51 + 149.6 + -0.2000122 + + + 2025-07-24T06:52:06 + 149.8 + -0.19999695 + + + 2025-07-24T06:52:06.722 + 150 + -0.19999695 + + + 2025-07-24T06:52:06.8 + 150.2 + -0.19999695 + + + 2025-07-24T06:52:07 + 150.3 + -0.1000061 + + + 2025-07-24T06:52:07.333 + 150.5 + -0.19999695 + + + 2025-07-24T06:52:07 + 150.7 + -0.19999695 + + + 2025-07-24T06:52:07.535 + 150.8 + -0.1000061 + + + 2025-07-24T06:52:07 + 150.9 + -0.099990845 + + + 2025-07-24T06:52:07.939 + 151 + -0.1000061 + + + 2025-07-24T06:52:08.141 + 151.1 + -0.1000061 + + + 2025-07-24T06:52:08 + 151.3 + -0.19999695 + + + 2025-07-24T06:52:08 + 151.5 + -0.19999695 + + + 2025-07-24T06:52:08 + 151.7 + -0.19999695 + + + 2025-07-24T06:52:08.76 + 151.9 + -0.19999695 + + + 2025-07-24T06:52:08.76 + 152 + -0.1000061 + + + 2025-07-24T06:52:09 + 152.2 + -0.19999695 + + + 2025-07-24T06:52:09 + 152.4 + -0.19999695 + + + 2025-07-24T06:52:09.366 + 152.6 + -0.2000122 + + + 2025-07-24T06:52:09.568 + 152.7 + -0.099990845 + + + 2025-07-24T06:52:09.568 + 152.9 + -0.19999695 + + + 2025-07-24T06:52:09 + 153 + -0.1000061 + + + 2025-07-24T06:52:10 + 153.1 + -0.1000061 + + + 2025-07-24T06:52:10 + 153.3 + -0.19999695 + + + 2025-07-24T06:52:10.392 + 153.4 + -0.099990845 + + + 2025-07-24T06:52:10 + 153.6 + -0.2000122 + + + 2025-07-24T06:52:10.598 + 153.8 + -0.19999695 + + + 2025-07-24T06:52:10.8 + 154 + -0.19999695 + + + 2025-07-24T06:52:11.002 + 154.2 + -0.19999695 + + + 2025-07-24T06:52:11 + 154.3 + -0.1000061 + + + 2025-07-24T06:52:10 + 154.5 + -0.19999695 + + + 2025-07-24T06:52:11.412 + 154.6 + -0.1000061 + + + 2025-07-24T06:52:11.615 + 154.7 + -0.099990845 + + + 2025-07-24T06:52:11.818 + 154.9 + -0.19999695 + + + 2025-07-24T06:52:11.8 + 155 + -0.1000061 + + + 2025-07-24T06:52:12 + 155.2 + -0.19999695 + + + 2025-07-24T06:52:12 + 155.3 + -0.1000061 + + + 2025-07-24T06:52:12.431 + 155.5 + -0.19999695 + + + 2025-07-24T06:52:12.636 + 155.7 + -0.19999695 + + + 2025-07-24T06:52:12 + 155.8 + -0.1000061 + + + 2025-07-24T06:52:12.838 + 156 + -0.19999695 + + + 2025-07-24T06:52:13 + 156.2 + -0.19999695 + + + 2025-07-24T06:52:13.256 + 156.3 + -0.1000061 + + + 2025-07-24T06:52:12 + 156.4 + -0.099990845 + + + 2025-07-24T06:52:13 + 156.6 + -0.2000122 + + + 2025-07-24T06:52:13.666 + 156.7 + -0.099990845 + + + 2025-07-24T06:52:13.873 + 156.8 + -0.1000061 + + + 2025-07-24T06:52:14 + 157 + -0.19999695 + + + 2025-07-24T06:52:14 + 157.1 + -0.1000061 + + + 2025-07-24T06:52:14 + 157.3 + -0.19999695 + + + 2025-07-24T06:52:14 + 157.5 + -0.19999695 + + + 2025-07-24T06:52:14.695 + 157.7 + -0.19999695 + + + 2025-07-24T06:52:14 + 157.9 + -0.19999695 + + + 2025-07-24T06:52:14.901 + 158 + -0.1000061 + + + 2025-07-24T06:52:15 + 158.1 + -0.1000061 + + + 2025-07-24T06:52:14 + 158.3 + -0.19999695 + + + 2025-07-24T06:52:14 + 158.4 + -0.099990845 + + + 2025-07-24T06:52:15 + 158.5 + -0.1000061 + + + 2025-07-24T06:52:15.725 + 158.6 + -0.1000061 + + + 2025-07-24T06:52:15.927 + 158.8 + -0.19999695 + + + 2025-07-24T06:52:16.129 + 158.9 + -0.099990845 + + + 2025-07-24T06:52:16 + 159.1 + -0.2000122 + + + 2025-07-24T06:52:16.336 + 159.3 + -0.19999695 + + + 2025-07-24T06:52:16.542 + 159.4 + -0.099990845 + + + 2025-07-24T06:52:16.748 + 159.6 + -0.2000122 + + + 2025-07-24T06:52:16.951 + 159.7 + -0.099990845 + + + 2025-07-24T06:52:17 + 159.9 + -0.19999695 + + + 2025-07-24T06:52:17 + 160 + -0.1000061 + + + 2025-07-24T06:52:17.361 + 160.1 + -0.1000061 + + + 2025-07-24T06:52:17.567 + 160.2 + -0.099990845 + + + 2025-07-24T06:52:17.54 + 160.4 + -0.19999695 + + + 2025-07-24T06:52:17.773 + 160.5 + -0.1000061 + + + 2025-07-24T06:52:18 + 160.7 + -0.19999695 + + + 2025-07-24T06:52:18.182 + 160.8 + -0.1000061 + + + 2025-07-24T06:52:18.385 + 160.9 + -0.099990845 + + + 2025-07-24T06:52:18 + 161.1 + -0.2000122 + + + 2025-07-24T06:52:18.594 + 161.2 + -0.099990845 + + + 2025-07-24T06:52:18.803 + 161.3 + -0.1000061 + + + 2025-07-24T06:52:19.008 + 161.5 + -0.19999695 + + + 2025-07-24T06:52:19.03 + 161.6 + -0.1000061 + + + 2025-07-24T06:52:18.93 + 161.8 + -0.19999695 + + + 2025-07-24T06:52:19.426 + 161.9 + -0.099990845 + + + 2025-07-24T06:52:19.631 + 162.1 + -0.2000122 + + + 2025-07-24T06:52:19.835 + 162.2 + -0.099990845 + + + 2025-07-24T06:52:19.835 + 162.4 + -0.19999695 + + + 2025-07-24T06:52:20 + 162.5 + -0.1000061 + + + 2025-07-24T06:52:20 + 162.6 + -0.1000061 + + + 2025-07-24T06:52:20.453 + 162.7 + -0.099990845 + + + 2025-07-24T06:52:19.93 + 162.8 + -0.1000061 + + + 2025-07-24T06:52:20.66 + 163 + -0.19999695 + + + 2025-07-24T06:52:20.866 + 163.1 + -0.1000061 + + + 2025-07-24T06:52:21.067 + 163.3 + -0.19999695 + + + 2025-07-24T06:52:21.272 + 163.4 + -0.099990845 + + + 2025-07-24T06:52:20 + 163.5 + -0.1000061 + + + 2025-07-24T06:52:21.474 + 163.7 + -0.19999695 + + + 2025-07-24T06:52:21.678 + 163.8 + -0.1000061 + + + 2025-07-24T06:52:21.884 + 163.9 + -0.099990845 + + + 2025-07-24T06:52:22 + 164 + -0.1000061 + + + 2025-07-24T06:52:22 + 164.1 + -0.1000061 + + + 2025-07-24T06:52:22.297 + 164.2 + -0.099990845 + + + 2025-07-24T06:52:22 + 164.3 + -0.1000061 + + + 2025-07-24T06:52:22.711 + 164.5 + -0.19999695 + + + 2025-07-24T06:52:22.711 + 164.7 + -0.19999695 + + + 2025-07-24T06:52:22.922 + 164.8 + -0.1000061 + + + 2025-07-24T06:52:22 + 164.9 + -0.099990845 + + + 2025-07-24T06:52:23.328 + 165 + -0.1000061 + + + 2025-07-24T06:52:23.23 + 165.1 + -0.1000061 + + + 2025-07-24T06:52:23.533 + 165.2 + -0.099990845 + + + 2025-07-24T06:52:23.745 + 165.3 + -0.1000061 + + + 2025-07-24T06:52:23.949 + 165.5 + -0.19999695 + + + 2025-07-24T06:52:24.152 + 165.7 + -0.19999695 + + + 2025-07-24T06:52:24 + 165.8 + -0.1000061 + + + 2025-07-24T06:52:24.357 + 165.9 + -0.099990845 + + + 2025-07-24T06:52:24.56 + 166 + -0.1000061 + + + 2025-07-24T06:52:24.769 + 166.1 + -0.1000061 + + + 2025-07-24T06:52:24.769 + 166.3 + -0.19999695 + + + 2025-07-24T06:52:25 + 166.4 + -0.099990845 + + + 2025-07-24T06:52:25 + 166.5 + -0.1000061 + + + 2025-07-24T06:52:25.389 + 166.6 + -0.1000061 + + + 2025-07-24T06:52:25.593 + 166.7 + -0.099990845 + + + 2025-07-24T06:52:25.593 + 166.9 + -0.19999695 + + + 2025-07-24T06:52:25 + 167 + -0.1000061 + + + 2025-07-24T06:52:26 + 167.2 + -0.19999695 + + + 2025-07-24T06:52:26.209 + 167.3 + -0.1000061 + + + 2025-07-24T06:52:25 + 167.4 + -0.099990845 + + + 2025-07-24T06:52:26 + 167.5 + -0.1000061 + + + 2025-07-24T06:52:26.624 + 167.6 + -0.1000061 + + + 2025-07-24T06:52:26.833 + 167.7 + -0.099990845 + + + 2025-07-24T06:52:27.045 + 167.8 + -0.1000061 + + + 2025-07-24T06:52:27 + 168 + -0.19999695 + + + 2025-07-24T06:52:26 + 168.1 + -0.1000061 + + + 2025-07-24T06:52:27.458 + 168.2 + -0.099990845 + + + 2025-07-24T06:52:27.664 + 168.3 + -0.1000061 + + + 2025-07-24T06:52:27.664 + 168.4 + -0.099990845 + + + 2025-07-24T06:52:27.871 + 168.6 + -0.2000122 + + + 2025-07-24T06:52:28.09 + 168.8 + -0.19999695 + + + 2025-07-24T06:52:28.293 + 168.9 + -0.099990845 + + + 2025-07-24T06:52:28 + 169.1 + -0.2000122 + + + 2025-07-24T06:52:28 + 169.2 + -0.099990845 + + + 2025-07-24T06:52:28.715 + 169.3 + -0.1000061 + + + 2025-07-24T06:52:28.919 + 169.4 + -0.099990845 + + + 2025-07-24T06:52:29.128 + 169.5 + -0.1000061 + + + 2025-07-24T06:52:28.93 + 169.7 + -0.19999695 + + + 2025-07-24T06:52:29.331 + 169.9 + -0.19999695 + + + 2025-07-24T06:52:29.536 + 170 + -0.1000061 + + + 2025-07-24T06:52:29.741 + 170.2 + -0.19999695 + + + 2025-07-24T06:52:29.741 + 170.3 + -0.1000061 + + + 2025-07-24T06:52:30 + 170.4 + -0.099990845 + + + 2025-07-24T06:52:30 + 170.5 + -0.1000061 + + + 2025-07-24T06:52:30.349 + 170.6 + -0.1000061 + + + 2025-07-24T06:52:30.567 + 170.8 + -0.19999695 + + + 2025-07-24T06:52:30.567 + 170.9 + -0.099990845 + + + 2025-07-24T06:52:30 + 171 + -0.1000061 + + + 2025-07-24T06:52:31 + 171.1 + -0.1000061 + + + 2025-07-24T06:52:31 + 171.2 + -0.099990845 + + + 2025-07-24T06:52:30.93 + 171.3 + -0.1000061 + + + 2025-07-24T06:52:31.387 + 171.5 + -0.19999695 + + + 2025-07-24T06:52:30.93 + 171.7 + -0.19999695 + + + 2025-07-24T06:52:31.794 + 171.8 + -0.1000061 + + + 2025-07-24T06:52:31.996 + 171.9 + -0.099990845 + + + 2025-07-24T06:52:31.93 + 172 + -0.1000061 + + + 2025-07-24T06:52:32 + 172.1 + -0.1000061 + + + 2025-07-24T06:52:32.4 + 172.2 + -0.099990845 + + + 2025-07-24T06:52:32.607 + 172.3 + -0.1000061 + + + 2025-07-24T06:52:32.607 + 172.4 + -0.099990845 + + + 2025-07-24T06:52:32.816 + 172.6 + -0.2000122 + + + 2025-07-24T06:52:33 + 172.7 + -0.099990845 + + + 2025-07-24T06:52:33.23 + 172.8 + -0.1000061 + + + 2025-07-24T06:52:33.432 + 172.9 + -0.099990845 + + + 2025-07-24T06:52:33 + 173 + -0.1000061 + + + 2025-07-24T06:52:33.635 + 173.2 + -0.19999695 + + + 2025-07-24T06:52:33.844 + 173.3 + -0.1000061 + + + 2025-07-24T06:52:34 + 173.3 + 0 + + + 2025-07-24T06:52:33.93 + 173.4 + -0.099990845 + + + 2025-07-24T06:52:34 + 173.5 + -0.1000061 + + + 2025-07-24T06:52:34 + 173.6 + -0.1000061 + + + 2025-07-24T06:52:34.664 + 173.8 + -0.19999695 + + + 2025-07-24T06:52:34.866 + 173.9 + -0.099990845 + + + 2025-07-24T06:52:35 + 174 + -0.1000061 + + + 2025-07-24T06:52:35 + 174.1 + -0.1000061 + + + 2025-07-24T06:52:34 + 174.2 + -0.099990845 + + + 2025-07-24T06:52:35.09 + 174.3 + -0.1000061 + + + 2025-07-24T06:52:35.09 + 174.4 + -0.099990845 + + + 2025-07-24T06:52:35.09 + 174.5 + -0.1000061 + + + 2025-07-24T06:52:35.8 + 174.6 + -0.1000061 + + + 2025-07-24T06:52:36 + 174.8 + -0.19999695 + + + 2025-07-24T06:52:36 + 174.8 + 0 + + + 2025-07-24T06:52:36.44 + 174.9 + -0.099990845 + + + 2025-07-24T06:52:36.09 + 175 + -0.1000061 + + + 2025-07-24T06:52:36.6 + 175.2 + -0.19999695 + + + 2025-07-24T06:52:36.6 + 175.3 + -0.1000061 + + + 2025-07-24T06:52:37 + 175.5 + -0.19999695 + + + 2025-07-24T06:52:37 + 175.6 + -0.1000061 + + + 2025-07-24T06:52:37.08 + 175.7 + -0.099990845 + + + 2025-07-24T06:52:37.4 + 175.8 + -0.1000061 + + + 2025-07-24T06:52:37.4 + 175.8 + 0 + + + 2025-07-24T06:52:37.08 + 175.9 + -0.099990845 + + + 2025-07-24T06:52:38 + 176 + -0.1000061 + + + 2025-07-24T06:52:38 + 176.2 + -0.19999695 + + + 2025-07-24T06:52:38.09 + 176.3 + -0.1000061 + + + 2025-07-24T06:52:38 + 176.4 + -0.099990845 + + + 2025-07-24T06:52:38 + 176.5 + -0.1000061 + + + 2025-07-24T06:52:38.09 + 176.6 + -0.1000061 + + + 2025-07-24T06:52:39 + 176.7 + -0.099990845 + + + 2025-07-24T06:52:39 + 176.8 + -0.1000061 + + + 2025-07-24T06:52:38 + 176.9 + -0.099990845 + + + 2025-07-24T06:52:38 + 177 + -0.1000061 + + + 2025-07-24T06:52:39.689 + 177.1 + -0.1000061 + + + 2025-07-24T06:52:39.689 + 177.2 + -0.099990845 + + + 2025-07-24T06:52:39.82 + 177.3 + -0.1000061 + + + 2025-07-24T06:52:40.094 + 177.5 + -0.19999695 + + + 2025-07-24T06:52:40.296 + 177.6 + -0.1000061 + + + 2025-07-24T06:52:40.08 + 177.7 + -0.099990845 + + + 2025-07-24T06:52:40 + 177.8 + -0.1000061 + + + 2025-07-24T06:52:40.08 + 177.9 + -0.099990845 + + + 2025-07-24T06:52:40.904 + 178 + -0.1000061 + + + 2025-07-24T06:52:41.106 + 178.1 + -0.1000061 + + + 2025-07-24T06:52:41.09 + 178.2 + -0.099990845 + + + 2025-07-24T06:52:40 + 178.4 + -0.19999695 + + + 2025-07-24T06:52:41.09 + 178.5 + -0.1000061 + + + 2025-07-24T06:52:41.718 + 178.7 + -0.19999695 + + + 2025-07-24T06:52:41.92 + 178.8 + -0.1000061 + + + 2025-07-24T06:52:41.09 + 178.9 + -0.099990845 + + + 2025-07-24T06:52:42 + 178.9 + 0 + + + 2025-07-24T06:52:42.324 + 179 + -0.1000061 + + + 2025-07-24T06:52:42.529 + 179.2 + -0.19999695 + + + 2025-07-24T06:52:42.529 + 179.3 + -0.1000061 + + + 2025-07-24T06:52:42.737 + 179.3 + 0 + + + 2025-07-24T06:52:43 + 179.4 + -0.099990845 + + + 2025-07-24T06:52:42 + 179.6 + -0.2000122 + + + 2025-07-24T06:52:43.362 + 179.7 + -0.099990845 + + + 2025-07-24T06:52:43 + 179.8 + -0.1000061 + + + 2025-07-24T06:52:43.564 + 179.8 + 0 + + + 2025-07-24T06:52:43.773 + 180 + -0.19999695 + + + 2025-07-24T06:52:43.977 + 180 + 0 + + + 2025-07-24T06:52:44 + 180.1 + -0.1000061 + + + 2025-07-24T06:52:44 + 180.2 + -0.099990845 + + + 2025-07-24T06:52:44.385 + 180.3 + -0.1000061 + + + 2025-07-24T06:52:44.588 + 180.4 + -0.099990845 + + + 2025-07-24T06:52:44.793 + 180.5 + -0.1000061 + + + 2025-07-24T06:52:44.7 + 180.6 + -0.1000061 + + + 2025-07-24T06:52:45 + 180.7 + -0.099990845 + + + 2025-07-24T06:52:45.22 + 180.9 + -0.19999695 + + + 2025-07-24T06:52:45.434 + 181 + -0.1000061 + + + 2025-07-24T06:52:45.434 + 181 + 0 + + + 2025-07-24T06:52:45.09 + 181.1 + -0.1000061 + + + 2025-07-24T06:52:45.839 + 181.2 + -0.099990845 + + + 2025-07-24T06:52:46 + 181.3 + -0.1000061 + + + 2025-07-24T06:52:46.255 + 181.4 + -0.099990845 + + + 2025-07-24T06:52:46 + 181.6 + -0.2000122 + + + 2025-07-24T06:52:46.07 + 181.7 + -0.099990845 + + + 2025-07-24T06:52:46.662 + 181.8 + -0.1000061 + + + 2025-07-24T06:52:46.869 + 181.9 + -0.099990845 + + + 2025-07-24T06:52:47 + 182.1 + -0.2000122 + + + 2025-07-24T06:52:47 + 182.2 + -0.099990845 + + + 2025-07-24T06:52:46 + 182.3 + -0.1000061 + + + 2025-07-24T06:52:47.489 + 182.4 + -0.099990845 + + + 2025-07-24T06:52:47.695 + 182.5 + -0.1000061 + + + 2025-07-24T06:52:47.09 + 182.5 + 0 + + + 2025-07-24T06:52:47.897 + 182.6 + -0.1000061 + + + 2025-07-24T06:52:48.104 + 182.8 + -0.19999695 + + + 2025-07-24T06:52:48.311 + 182.9 + -0.099990845 + + + 2025-07-24T06:52:48 + 183 + -0.1000061 + + + 2025-07-24T06:52:48 + 183.2 + -0.19999695 + + + 2025-07-24T06:52:48.719 + 183.3 + -0.1000061 + + + 2025-07-24T06:52:48.926 + 183.4 + -0.099990845 + + + 2025-07-24T06:52:49.134 + 183.5 + -0.1000061 + + + 2025-07-24T06:52:49 + 183.5 + 0 + + + 2025-07-24T06:52:49.339 + 183.6 + -0.1000061 + + + 2025-07-24T06:52:49.542 + 183.7 + -0.099990845 + + + 2025-07-24T06:52:49.747 + 183.8 + -0.1000061 + + + 2025-07-24T06:52:49.8 + 183.9 + -0.099990845 + + + 2025-07-24T06:52:50 + 184.1 + -0.2000122 + + + 2025-07-24T06:52:50 + 184.2 + -0.099990845 + + + 2025-07-24T06:52:50.365 + 184.3 + -0.1000061 + + + 2025-07-24T06:52:50.567 + 184.4 + -0.099990845 + + + 2025-07-24T06:52:50.09 + 184.5 + -0.1000061 + + + 2025-07-24T06:52:50.781 + 184.6 + -0.1000061 + + + 2025-07-24T06:52:51 + 184.7 + -0.099990845 + + + 2025-07-24T06:52:51.189 + 184.8 + -0.1000061 + + + 2025-07-24T06:52:50 + 184.9 + -0.099990845 + + + 2025-07-24T06:52:51.09 + 185.1 + -0.2000122 + + + 2025-07-24T06:52:51.613 + 185.2 + -0.099990845 + + + 2025-07-24T06:52:51.817 + 185.3 + -0.1000061 + + + 2025-07-24T06:52:52.019 + 185.4 + -0.099990845 + + + 2025-07-24T06:52:52 + 185.6 + -0.2000122 + + + 2025-07-24T06:52:52.09 + 185.7 + -0.099990845 + + + 2025-07-24T06:52:52.428 + 185.8 + -0.1000061 + + + 2025-07-24T06:52:52.63 + 185.9 + -0.099990845 + + + 2025-07-24T06:52:52.09 + 186 + -0.1000061 + + + 2025-07-24T06:52:52.854 + 186 + 0 + + + 2025-07-24T06:52:53 + 186.1 + -0.1000061 + + + 2025-07-24T06:52:53.271 + 186.2 + -0.099990845 + + + 2025-07-24T06:52:53 + 186.3 + -0.1000061 + + + 2025-07-24T06:52:53.475 + 186.4 + -0.099990845 + + + 2025-07-24T06:52:53.69 + 186.5 + -0.1000061 + + + 2025-07-24T06:52:53.892 + 186.6 + -0.1000061 + + + 2025-07-24T06:52:54.094 + 186.7 + -0.099990845 + + + 2025-07-24T06:52:54 + 186.8 + -0.1000061 + + + 2025-07-24T06:52:54.296 + 186.9 + -0.099990845 + + + 2025-07-24T06:52:54 + 186.9 + 0 + + + 2025-07-24T06:52:54.706 + 187 + -0.1000061 + + + 2025-07-24T06:52:54.7 + 187.1 + -0.1000061 + + + 2025-07-24T06:52:55 + 187.2 + -0.099990845 + + + 2025-07-24T06:52:55 + 187.3 + -0.1000061 + + + 2025-07-24T06:52:55.325 + 187.4 + -0.099990845 + + + 2025-07-24T06:52:55.531 + 187.5 + -0.1000061 + + + 2025-07-24T06:52:55.19 + 187.6 + -0.1000061 + + + 2025-07-24T06:52:55.737 + 187.7 + -0.099990845 + + + 2025-07-24T06:52:55.946 + 187.9 + -0.19999695 + + + 2025-07-24T06:52:56.15 + 188 + -0.1000061 + + + 2025-07-24T06:52:56 + 188.1 + -0.1000061 + + + 2025-07-24T06:52:56.19 + 188.2 + -0.099990845 + + + 2025-07-24T06:52:56.562 + 188.3 + -0.1000061 + + + 2025-07-24T06:52:56.764 + 188.3 + 0 + + + 2025-07-24T06:52:56.982 + 188.5 + -0.19999695 + + + 2025-07-24T06:52:57 + 188.6 + -0.1000061 + + + 2025-07-24T06:52:57 + 188.7 + -0.099990845 + + + 2025-07-24T06:52:57.388 + 188.8 + -0.1000061 + + + 2025-07-24T06:52:57.591 + 188.9 + -0.099990845 + + + 2025-07-24T06:52:57.3 + 189 + -0.1000061 + + + 2025-07-24T06:52:57.805 + 189.1 + -0.1000061 + + + 2025-07-24T06:52:58 + 189.2 + -0.099990845 + + + 2025-07-24T06:52:58.217 + 189.2 + 0 + + + 2025-07-24T06:52:58.421 + 189.3 + -0.1000061 + + + 2025-07-24T06:52:58 + 189.4 + -0.099990845 + + + 2025-07-24T06:52:58.625 + 189.5 + -0.1000061 + + + 2025-07-24T06:52:58.827 + 189.6 + -0.1000061 + + + 2025-07-24T06:52:59 + 189.7 + -0.099990845 + + + 2025-07-24T06:52:59 + 189.8 + -0.1000061 + + + 2025-07-24T06:52:58 + 190 + -0.19999695 + + + 2025-07-24T06:52:59.439 + 190.1 + -0.1000061 + + + 2025-07-24T06:52:59.649 + 190.2 + -0.099990845 + + + 2025-07-24T06:52:59.854 + 190.3 + -0.1000061 + + + 2025-07-24T06:52:59.854 + 190.3 + 0 + + + 2025-07-24T06:53:00 + 190.4 + -0.099990845 + + + 2025-07-24T06:53:00 + 190.5 + -0.1000061 + + + 2025-07-24T06:53:00.462 + 190.6 + -0.1000061 + + + 2025-07-24T06:53:00.29 + 190.8 + -0.19999695 + + + 2025-07-24T06:53:00.673 + 190.9 + -0.099990845 + + + 2025-07-24T06:53:00.886 + 191 + -0.1000061 + + + 2025-07-24T06:53:01.098 + 191.1 + -0.1000061 + + + 2025-07-24T06:53:01 + 191.1 + 0 + + + 2025-07-24T06:53:01.3 + 191.2 + -0.099990845 + + + 2025-07-24T06:53:01.514 + 191.2 + 0 + + + 2025-07-24T06:53:01.716 + 191.3 + -0.1000061 + + + 2025-07-24T06:53:01.927 + 191.4 + -0.099990845 + + + 2025-07-24T06:53:02 + 191.6 + -0.2000122 + + + 2025-07-24T06:53:02 + 191.7 + -0.099990845 + + + 2025-07-24T06:53:02.338 + 191.8 + -0.1000061 + + + 2025-07-24T06:53:02.541 + 191.8 + 0 + + + 2025-07-24T06:53:02.3 + 191.9 + -0.099990845 + + + 2025-07-24T06:53:02.754 + 191.9 + 0 + + + 2025-07-24T06:53:03 + 192 + -0.1000061 + + + 2025-07-24T06:53:03.164 + 192.1 + -0.1000061 + + + 2025-07-24T06:53:03.373 + 192.2 + -0.099990845 + + + 2025-07-24T06:53:03.2 + 192.3 + -0.1000061 + + + 2025-07-24T06:53:03.575 + 192.4 + -0.099990845 + + + 2025-07-24T06:53:03.778 + 192.5 + -0.1000061 + + + 2025-07-24T06:53:03.99 + 192.6 + -0.1000061 + + + 2025-07-24T06:53:04 + 192.7 + -0.099990845 + + + 2025-07-24T06:53:04 + 192.8 + -0.1000061 + + + 2025-07-24T06:53:04.395 + 192.9 + -0.099990845 + + + 2025-07-24T06:53:04.597 + 193 + -0.1000061 + + + 2025-07-24T06:53:04.811 + 193.1 + -0.1000061 + + + 2025-07-24T06:53:04.811 + 193.2 + -0.099990845 + + + 2025-07-24T06:53:05 + 193.3 + -0.1000061 + + + 2025-07-24T06:53:05.225 + 193.4 + -0.099990845 + + + 2025-07-24T06:53:05.427 + 193.5 + -0.1000061 + + + 2025-07-24T06:53:05.3 + 193.6 + -0.1000061 + + + 2025-07-24T06:53:05.633 + 193.6 + 0 + + + 2025-07-24T06:53:05.84 + 193.7 + -0.099990845 + + + 2025-07-24T06:53:06 + 193.8 + -0.1000061 + + + 2025-07-24T06:53:06.255 + 193.9 + -0.099990845 + + + 2025-07-24T06:53:06 + 194 + -0.1000061 + + + 2025-07-24T06:53:06 + 194.1 + -0.1000061 + + + 2025-07-24T06:53:06.674 + 194.2 + -0.099990845 + + + 2025-07-24T06:53:06.886 + 194.3 + -0.1000061 + + + 2025-07-24T06:53:07 + 194.4 + -0.099990845 + + + 2025-07-24T06:53:07 + 194.5 + -0.1000061 + + + 2025-07-24T06:53:06 + 194.6 + -0.1000061 + + + 2025-07-24T06:53:07.494 + 194.6 + 0 + + + 2025-07-24T06:53:07.703 + 194.7 + -0.099990845 + + + 2025-07-24T06:53:07.703 + 194.8 + -0.1000061 + + + 2025-07-24T06:53:07.3 + 194.9 + -0.099990845 + + + 2025-07-24T06:53:08.107 + 195 + -0.1000061 + + + 2025-07-24T06:53:08.309 + 195.1 + -0.1000061 + + + 2025-07-24T06:53:08.3 + 195.1 + 0 + + + 2025-07-24T06:53:08 + 195.2 + -0.099990845 + + + 2025-07-24T06:53:08.726 + 195.3 + -0.1000061 + + + 2025-07-24T06:53:08.932 + 195.4 + -0.099990845 + + + 2025-07-24T06:53:09.136 + 195.5 + -0.1000061 + + + 2025-07-24T06:53:09 + 195.6 + -0.1000061 + + + 2025-07-24T06:53:09.338 + 195.6 + 0 + + + 2025-07-24T06:53:09.54 + 195.7 + -0.099990845 + + + 2025-07-24T06:53:09.748 + 195.8 + -0.1000061 + + + 2025-07-24T06:53:09.954 + 195.9 + -0.099990845 + + + 2025-07-24T06:53:10 + 196 + -0.1000061 + + + 2025-07-24T06:53:10 + 196.1 + -0.1000061 + + + 2025-07-24T06:53:10.361 + 196.2 + -0.099990845 + + + 2025-07-24T06:53:10.563 + 196.3 + -0.1000061 + + + 2025-07-24T06:53:10.563 + 196.4 + -0.099990845 + + + 2025-07-24T06:53:10.77 + 196.4 + 0 + + + 2025-07-24T06:53:11 + 196.5 + -0.1000061 + + + 2025-07-24T06:53:11 + 196.6 + -0.1000061 + + + 2025-07-24T06:53:11.2 + 196.7 + -0.099990845 + + + 2025-07-24T06:53:11.2 + 196.8 + -0.1000061 + + + 2025-07-24T06:53:11.2 + 196.9 + -0.099990845 + + + 2025-07-24T06:53:11.3 + 197.1 + -0.2000122 + + + 2025-07-24T06:53:11.3 + 197.1 + 0 + + + 2025-07-24T06:53:12 + 197.2 + -0.099990845 + + + 2025-07-24T06:53:12 + 197.3 + -0.1000061 + + + 2025-07-24T06:53:12 + 197.4 + -0.099990845 + + + 2025-07-24T06:53:12.43 + 197.4 + 0 + + + 2025-07-24T06:53:12.43 + 197.5 + -0.1000061 + + + 2025-07-24T06:53:12.43 + 197.6 + -0.1000061 + + + 2025-07-24T06:53:12 + 197.7 + -0.099990845 + + + 2025-07-24T06:53:12 + 197.8 + -0.1000061 + + + 2025-07-24T06:53:13 + 197.9 + -0.099990845 + + + 2025-07-24T06:53:13.48 + 198 + -0.1000061 + + + 2025-07-24T06:53:13.43 + 198.1 + -0.1000061 + + + 2025-07-24T06:53:13.64 + 198.2 + -0.099990845 + + + 2025-07-24T06:53:14 + 198.2 + 0 + + + 2025-07-24T06:53:14 + 198.3 + -0.1000061 + + + 2025-07-24T06:53:14 + 198.4 + -0.099990845 + + + 2025-07-24T06:53:14 + 198.5 + -0.1000061 + + + 2025-07-24T06:53:14.4 + 198.6 + -0.1000061 + + + 2025-07-24T06:53:14.4 + 198.7 + -0.099990845 + + + 2025-07-24T06:53:14.4 + 198.7 + 0 + + + 2025-07-24T06:53:15 + 198.8 + -0.1000061 + + + 2025-07-24T06:53:14 + 198.9 + -0.099990845 + + + 2025-07-24T06:53:15.21 + 199 + -0.1000061 + + + 2025-07-24T06:53:15.21 + 199.1 + -0.1000061 + + + 2025-07-24T06:53:15.21 + 199.2 + -0.099990845 + + + 2025-07-24T06:53:15.998 + 199.2 + 0 + + + 2025-07-24T06:53:16 + 199.3 + -0.1000061 + + + 2025-07-24T06:53:16 + 199.4 + -0.099990845 + + + 2025-07-24T06:53:16.418 + 199.4 + 0 + + + 2025-07-24T06:53:16.62 + 199.5 + -0.1000061 + + + 2025-07-24T06:53:16.827 + 199.6 + -0.1000061 + + + 2025-07-24T06:53:16.827 + 199.7 + -0.099990845 + + + 2025-07-24T06:53:16 + 199.8 + -0.1000061 + + + 2025-07-24T06:53:17.238 + 199.9 + -0.099990845 + + + 2025-07-24T06:53:17.441 + 200 + -0.1000061 + + + 2025-07-24T06:53:17.3 + 200.1 + -0.1000061 + + + 2025-07-24T06:53:17.649 + 200.1 + 0 + + + 2025-07-24T06:53:17.3 + 200.2 + -0.099990845 + + + 2025-07-24T06:53:18.063 + 200.3 + -0.1000061 + + + 2025-07-24T06:53:18.268 + 200.4 + -0.099990845 + + + 2025-07-24T06:53:18 + 200.6 + -0.2000122 + + + 2025-07-24T06:53:18 + 200.7 + -0.099990845 + + + 2025-07-24T06:53:18.43 + 200.8 + -0.1000061 + + + 2025-07-24T06:53:18.878 + 200.8 + 0 + + + 2025-07-24T06:53:19.08 + 200.9 + -0.099990845 + + + 2025-07-24T06:53:19 + 201 + -0.1000061 + + + 2025-07-24T06:53:18 + 201.1 + -0.1000061 + + + 2025-07-24T06:53:19.486 + 201.1 + 0 + + + 2025-07-24T06:53:19.688 + 201.2 + -0.099990845 + + + 2025-07-24T06:53:19.688 + 201.3 + -0.1000061 + + + 2025-07-24T06:53:19.43 + 201.4 + -0.099990845 + + + 2025-07-24T06:53:20 + 201.5 + -0.1000061 + + + 2025-07-24T06:53:20.3 + 201.6 + -0.1000061 + + + 2025-07-24T06:53:20 + 201.7 + -0.099990845 + + + 2025-07-24T06:53:20 + 201.7 + 0 + + + 2025-07-24T06:53:20.704 + 201.8 + -0.1000061 + + + 2025-07-24T06:53:20.911 + 201.9 + -0.099990845 + + + 2025-07-24T06:53:20 + 202 + -0.1000061 + + + 2025-07-24T06:53:20 + 202.1 + -0.1000061 + + + 2025-07-24T06:53:20 + 202.2 + -0.099990845 + + + 2025-07-24T06:53:21.529 + 202.3 + -0.1000061 + + + 2025-07-24T06:53:21.731 + 202.4 + -0.099990845 + + + 2025-07-24T06:53:21.934 + 202.5 + -0.1000061 + + + 2025-07-24T06:53:21.99 + 202.5 + 0 + + + 2025-07-24T06:53:22 + 202.6 + -0.1000061 + + + 2025-07-24T06:53:22.34 + 202.7 + -0.099990845 + + + 2025-07-24T06:53:22.55 + 202.8 + -0.1000061 + + + 2025-07-24T06:53:22.55 + 202.9 + -0.099990845 + + + 2025-07-24T06:53:22.43 + 202.9 + 0 + + + 2025-07-24T06:53:23 + 203 + -0.1000061 + + + 2025-07-24T06:53:23.179 + 203.1 + -0.1000061 + + + 2025-07-24T06:53:23.381 + 203.2 + -0.099990845 + + + 2025-07-24T06:53:23 + 203.3 + -0.1000061 + + + 2025-07-24T06:53:23.43 + 203.4 + -0.099990845 + + + 2025-07-24T06:53:23.797 + 203.5 + -0.1000061 + + + 2025-07-24T06:53:24.002 + 203.6 + -0.1000061 + + + 2025-07-24T06:53:24 + 203.7 + -0.099990845 + + + 2025-07-24T06:53:24 + 203.8 + -0.1000061 + + + 2025-07-24T06:53:24 + 203.9 + -0.099990845 + + + 2025-07-24T06:53:24.614 + 204 + -0.1000061 + + + 2025-07-24T06:53:24.821 + 204.1 + -0.1000061 + + + 2025-07-24T06:53:24.4 + 204.2 + -0.099990845 + + + 2025-07-24T06:53:24 + 204.2 + 0 + + + 2025-07-24T06:53:24 + 204.3 + -0.1000061 + + + 2025-07-24T06:53:25.439 + 204.4 + -0.099990845 + + + 2025-07-24T06:53:25.439 + 204.5 + -0.1000061 + + + 2025-07-24T06:53:25.642 + 204.5 + 0 + + + 2025-07-24T06:53:25.848 + 204.6 + -0.1000061 + + + 2025-07-24T06:53:26.05 + 204.7 + -0.099990845 + + + 2025-07-24T06:53:26.261 + 204.7 + 0 + + + 2025-07-24T06:53:26 + 204.8 + -0.1000061 + + + 2025-07-24T06:53:26 + 204.9 + -0.099990845 + + + 2025-07-24T06:53:26.68 + 205 + -0.1000061 + + + 2025-07-24T06:53:26.882 + 205.1 + -0.1000061 + + + 2025-07-24T06:53:26.9 + 205.2 + -0.099990845 + + + 2025-07-24T06:53:27 + 205.3 + -0.1000061 + + + 2025-07-24T06:53:26 + 205.3 + 0 + + + 2025-07-24T06:53:27.502 + 205.4 + -0.099990845 + + + 2025-07-24T06:53:27.704 + 205.5 + -0.1000061 + + + 2025-07-24T06:53:27.43 + 205.6 + -0.1000061 + + + 2025-07-24T06:53:27.91 + 205.6 + 0 + + + 2025-07-24T06:53:28.112 + 205.7 + -0.099990845 + + + 2025-07-24T06:53:28.322 + 205.8 + -0.1000061 + + + 2025-07-24T06:53:28 + 205.9 + -0.099990845 + + + 2025-07-24T06:53:28 + 205.9 + 0 + + + 2025-07-24T06:53:28.729 + 206 + -0.1000061 + + + 2025-07-24T06:53:28.932 + 206.1 + -0.1000061 + + + 2025-07-24T06:53:28 + 206.2 + -0.099990845 + + + 2025-07-24T06:53:28 + 206.3 + -0.1000061 + + + 2025-07-24T06:53:29 + 206.4 + -0.099990845 + + + 2025-07-24T06:53:29.554 + 206.5 + -0.1000061 + + + 2025-07-24T06:53:29.771 + 206.6 + -0.1000061 + + + 2025-07-24T06:53:29.59 + 206.6 + 0 + + + 2025-07-24T06:53:30 + 206.7 + -0.099990845 + + + 2025-07-24T06:53:30 + 206.8 + -0.1000061 + + + 2025-07-24T06:53:30.388 + 206.9 + -0.099990845 + + + 2025-07-24T06:53:30.595 + 207 + -0.1000061 + + + 2025-07-24T06:53:30.59 + 207.1 + -0.1000061 + + + 2025-07-24T06:53:30.809 + 207.2 + -0.099990845 + + + 2025-07-24T06:53:31 + 207.3 + -0.1000061 + + + 2025-07-24T06:53:31.226 + 207.3 + 0 + + + 2025-07-24T06:53:30 + 207.4 + -0.099990845 + + + 2025-07-24T06:53:31.431 + 207.5 + -0.1000061 + + + 2025-07-24T06:53:31.636 + 207.5 + 0 + + + 2025-07-24T06:53:31.854 + 207.6 + -0.1000061 + + + 2025-07-24T06:53:31.9 + 207.8 + -0.19999695 + + + 2025-07-24T06:53:32 + 207.8 + 0 + + + 2025-07-24T06:53:32 + 207.9 + -0.099990845 + + + 2025-07-24T06:53:32 + 208 + -0.1000061 + + + 2025-07-24T06:53:32.676 + 208.1 + -0.1000061 + + + 2025-07-24T06:53:32.58 + 208.2 + -0.099990845 + + + 2025-07-24T06:53:32.882 + 208.3 + -0.1000061 + + + 2025-07-24T06:53:32 + 208.4 + -0.099990845 + + + 2025-07-24T06:53:32 + 208.5 + -0.1000061 + + + 2025-07-24T06:53:33 + 208.6 + -0.1000061 + + + 2025-07-24T06:53:33 + 208.7 + -0.099990845 + + + 2025-07-24T06:53:33.714 + 208.8 + -0.1000061 + + + 2025-07-24T06:53:33.917 + 208.8 + 0 + + + 2025-07-24T06:53:34.119 + 208.9 + -0.099990845 + + + 2025-07-24T06:53:34 + 209 + -0.1000061 + + + 2025-07-24T06:53:34 + 209.1 + -0.1000061 + + + 2025-07-24T06:53:34.526 + 209.2 + -0.099990845 + + + 2025-07-24T06:53:34.73 + 209.3 + -0.1000061 + + + 2025-07-24T06:53:34.59 + 209.5 + -0.19999695 + + + 2025-07-24T06:53:35 + 209.5 + 0 + + + 2025-07-24T06:53:35 + 209.6 + -0.1000061 + + + 2025-07-24T06:53:35.34 + 209.7 + -0.099990845 + + + 2025-07-24T06:53:35.544 + 209.8 + -0.1000061 + + + 2025-07-24T06:53:35.59 + 209.9 + -0.099990845 + + + 2025-07-24T06:53:35.748 + 210 + -0.1000061 + + + 2025-07-24T06:53:36 + 210.1 + -0.1000061 + + + 2025-07-24T06:53:36 + 210.2 + -0.099990845 + + + 2025-07-24T06:53:36.366 + 210.3 + -0.1000061 + + + 2025-07-24T06:53:36 + 210.4 + -0.099990845 + + + 2025-07-24T06:53:36.57 + 210.5 + -0.1000061 + + + 2025-07-24T06:53:36.773 + 210.6 + -0.1000061 + + + 2025-07-24T06:53:36.986 + 210.7 + -0.099990845 + + + 2025-07-24T06:53:36 + 210.8 + -0.1000061 + + + 2025-07-24T06:53:36 + 210.9 + -0.099990845 + + + 2025-07-24T06:53:37.396 + 210.9 + 0 + + + 2025-07-24T06:53:37.599 + 211 + -0.1000061 + + + 2025-07-24T06:53:37.58 + 211.1 + -0.1000061 + + + 2025-07-24T06:53:37.803 + 211.2 + -0.099990845 + + + 2025-07-24T06:53:38 + 211.3 + -0.1000061 + + + 2025-07-24T06:53:38 + 211.4 + -0.099990845 + + + 2025-07-24T06:53:38 + 211.5 + -0.1000061 + + + 2025-07-24T06:53:38.42 + 211.6 + -0.1000061 + + + 2025-07-24T06:53:38.645 + 211.7 + -0.099990845 + + + 2025-07-24T06:53:38.856 + 211.8 + -0.1000061 + + + 2025-07-24T06:53:39.062 + 211.9 + -0.099990845 + + + 2025-07-24T06:53:39 + 212 + -0.1000061 + + + 2025-07-24T06:53:39 + 212 + 0 + + + 2025-07-24T06:53:39.49 + 212.1 + -0.1000061 + + + 2025-07-24T06:53:39.695 + 212.2 + -0.099990845 + + + 2025-07-24T06:53:39.59 + 212.3 + -0.1000061 + + + 2025-07-24T06:53:39.903 + 212.4 + -0.099990845 + + + 2025-07-24T06:53:40 + 212.5 + -0.1000061 + + + 2025-07-24T06:53:40.318 + 212.6 + -0.1000061 + + + 2025-07-24T06:53:40 + 212.7 + -0.099990845 + + + 2025-07-24T06:53:40 + 212.8 + -0.1000061 + + + 2025-07-24T06:53:40.725 + 212.9 + -0.099990845 + + + 2025-07-24T06:53:40.93 + 213 + -0.1000061 + + + 2025-07-24T06:53:40 + 213.1 + -0.1000061 + + + 2025-07-24T06:53:41.335 + 213.1 + 0 + + + 2025-07-24T06:53:41 + 213.2 + -0.099990845 + + + 2025-07-24T06:53:41.538 + 213.3 + -0.1000061 + + + 2025-07-24T06:53:41.743 + 213.3 + 0 + + + 2025-07-24T06:53:41.945 + 213.4 + -0.099990845 + + + 2025-07-24T06:53:42 + 213.5 + -0.1000061 + + + 2025-07-24T06:53:42 + 213.6 + -0.1000061 + + + 2025-07-24T06:53:42.359 + 213.7 + -0.099990845 + + + 2025-07-24T06:53:42.561 + 213.8 + -0.1000061 + + + 2025-07-24T06:53:42.768 + 213.9 + -0.099990845 + + + 2025-07-24T06:53:42.768 + 213.9 + 0 + + + 2025-07-24T06:53:43 + 214 + -0.1000061 + + + 2025-07-24T06:53:43.182 + 214.1 + -0.1000061 + + + 2025-07-24T06:53:43.384 + 214.2 + -0.099990845 + + + 2025-07-24T06:53:43.4 + 214.3 + -0.1000061 + + + 2025-07-24T06:53:43.587 + 214.4 + -0.099990845 + + + 2025-07-24T06:53:43.79 + 214.4 + 0 + + + 2025-07-24T06:53:44 + 214.5 + -0.1000061 + + + 2025-07-24T06:53:44.2 + 214.6 + -0.1000061 + + + 2025-07-24T06:53:44 + 214.7 + -0.099990845 + + + 2025-07-24T06:53:44 + 214.8 + -0.1000061 + + + 2025-07-24T06:53:44.609 + 214.9 + -0.099990845 + + + 2025-07-24T06:53:44.812 + 215 + -0.1000061 + + + 2025-07-24T06:53:45.014 + 215.1 + -0.1000061 + + + 2025-07-24T06:53:44 + 215.2 + -0.099990845 + + + 2025-07-24T06:53:44 + 215.2 + 0 + + + 2025-07-24T06:53:45.423 + 215.3 + -0.1000061 + + + 2025-07-24T06:53:45.625 + 215.4 + -0.099990845 + + + 2025-07-24T06:53:45.625 + 215.5 + -0.1000061 + + + 2025-07-24T06:53:45.69 + 215.6 + -0.1000061 + + + 2025-07-24T06:53:46 + 215.7 + -0.099990845 + + + 2025-07-24T06:53:46 + 215.8 + -0.1000061 + + + 2025-07-24T06:53:46 + 215.9 + -0.099990845 + + + 2025-07-24T06:53:46 + 216 + -0.1000061 + + + 2025-07-24T06:53:46.679 + 216 + 0 + + + 2025-07-24T06:53:46.887 + 216.1 + -0.1000061 + + + 2025-07-24T06:53:47.093 + 216.2 + -0.099990845 + + + 2025-07-24T06:53:47 + 216.3 + -0.1000061 + + + 2025-07-24T06:53:46 + 216.4 + -0.099990845 + + + 2025-07-24T06:53:47.505 + 216.5 + -0.1000061 + + + 2025-07-24T06:53:47.714 + 216.6 + -0.1000061 + + + 2025-07-24T06:53:47.714 + 216.7 + -0.099990845 + + + 2025-07-24T06:53:48 + 216.8 + -0.1000061 + + + 2025-07-24T06:53:47.7 + 216.8 + 0 + + + 2025-07-24T06:53:48 + 216.9 + -0.099990845 + + + 2025-07-24T06:53:48 + 217 + -0.1000061 + + + 2025-07-24T06:53:48 + 217.1 + -0.1000061 + + + 2025-07-24T06:53:48 + 217.2 + -0.099990845 + + + 2025-07-24T06:53:48.69 + 217.3 + -0.1000061 + + + 2025-07-24T06:53:48 + 217.4 + -0.099990845 + + + 2025-07-24T06:53:49 + 217.5 + -0.1000061 + + + 2025-07-24T06:53:49 + 217.5 + 0 + + + 2025-07-24T06:53:49 + 217.6 + -0.1000061 + + + 2025-07-24T06:53:49 + 217.7 + -0.099990845 + + + 2025-07-24T06:53:49 + 217.8 + -0.1000061 + + + 2025-07-24T06:53:49.69 + 217.9 + -0.099990845 + + + 2025-07-24T06:53:50 + 218 + -0.1000061 + + + 2025-07-24T06:53:50 + 218.1 + -0.1000061 + + + 2025-07-24T06:53:50 + 218.2 + -0.099990845 + + + 2025-07-24T06:53:50 + 218.3 + -0.1000061 + + + 2025-07-24T06:53:50.59 + 218.4 + -0.099990845 + + + 2025-07-24T06:53:51 + 218.5 + -0.1000061 + + + 2025-07-24T06:53:51 + 218.6 + -0.1000061 + + + 2025-07-24T06:53:51 + 218.7 + -0.099990845 + + + 2025-07-24T06:53:51 + 218.8 + -0.1000061 + + + 2025-07-24T06:53:51 + 218.9 + -0.099990845 + + + 2025-07-24T06:53:51.6 + 219 + -0.1000061 + + + 2025-07-24T06:53:52 + 219.1 + -0.1000061 + + + 2025-07-24T06:53:52 + 219.2 + -0.099990845 + + + 2025-07-24T06:53:52 + 219.3 + -0.1000061 + + + 2025-07-24T06:53:52 + 219.4 + -0.099990845 + + + 2025-07-24T06:53:52.41 + 219.5 + -0.1000061 + + + 2025-07-24T06:53:52.41 + 219.6 + -0.1000061 + + + 2025-07-24T06:53:52.41 + 219.7 + -0.099990845 + + + 2025-07-24T06:53:52 + 219.8 + -0.1000061 + + + 2025-07-24T06:53:52 + 219.9 + -0.099990845 + + + 2025-07-24T06:53:53 + 220 + -0.1000061 + + + 2025-07-24T06:53:53.551 + 220 + 0 + + + 2025-07-24T06:53:53.753 + 220.1 + -0.1000061 + + + 2025-07-24T06:53:53.956 + 220.2 + -0.099990845 + + + 2025-07-24T06:53:54 + 220.3 + -0.1000061 + + + 2025-07-24T06:53:54 + 220.4 + -0.099990845 + + + 2025-07-24T06:53:54.361 + 220.5 + -0.1000061 + + + 2025-07-24T06:53:54.563 + 220.6 + -0.1000061 + + + 2025-07-24T06:53:54.772 + 220.7 + -0.099990845 + + + 2025-07-24T06:53:54.772 + 220.7 + 0 + + + 2025-07-24T06:53:55 + 220.8 + -0.1000061 + + + 2025-07-24T06:53:55 + 220.9 + -0.099990845 + + + 2025-07-24T06:53:55.39 + 221 + -0.1000061 + + + 2025-07-24T06:53:55 + 221.1 + -0.1000061 + + + 2025-07-24T06:53:55.592 + 221.2 + -0.099990845 + + + 2025-07-24T06:53:55 + 221.3 + -0.1000061 + + + 2025-07-24T06:53:56 + 221.4 + -0.099990845 + + + 2025-07-24T06:53:56.203 + 221.5 + -0.1000061 + + + 2025-07-24T06:53:56 + 221.6 + -0.1000061 + + + 2025-07-24T06:53:56 + 221.7 + -0.099990845 + + + 2025-07-24T06:53:56 + 221.8 + -0.1000061 + + + 2025-07-24T06:53:56.822 + 221.9 + -0.099990845 + + + 2025-07-24T06:53:56.822 + 222 + -0.1000061 + + + 2025-07-24T06:53:57 + 222.1 + -0.1000061 + + + 2025-07-24T06:53:56 + 222.2 + -0.099990845 + + + 2025-07-24T06:53:57.434 + 222.3 + -0.1000061 + + + 2025-07-24T06:53:57.639 + 222.4 + -0.099990845 + + + 2025-07-24T06:53:57.639 + 222.5 + -0.1000061 + + + 2025-07-24T06:53:57.842 + 222.6 + -0.1000061 + + + 2025-07-24T06:53:58 + 222.7 + -0.099990845 + + + 2025-07-24T06:53:58 + 222.8 + -0.1000061 + + + 2025-07-24T06:53:58 + 222.9 + -0.099990845 + + + 2025-07-24T06:53:58 + 223 + -0.1000061 + + + 2025-07-24T06:53:58.674 + 223.1 + -0.1000061 + + + 2025-07-24T06:53:58.878 + 223.2 + -0.099990845 + + + 2025-07-24T06:53:59.08 + 223.3 + -0.1000061 + + + 2025-07-24T06:53:59 + 223.4 + -0.099990845 + + + 2025-07-24T06:53:58 + 223.5 + -0.1000061 + + + 2025-07-24T06:53:59.487 + 223.6 + -0.1000061 + + + 2025-07-24T06:53:59.699 + 223.7 + -0.099990845 + + + 2025-07-24T06:53:59.904 + 223.8 + -0.1000061 + + + 2025-07-24T06:54:00 + 223.9 + -0.099990845 + + + 2025-07-24T06:54:00 + 224 + -0.1000061 + + + 2025-07-24T06:54:00.32 + 224.1 + -0.1000061 + + + 2025-07-24T06:54:00.526 + 224.2 + -0.099990845 + + + 2025-07-24T06:54:00.526 + 224.3 + -0.1000061 + + + 2025-07-24T06:53:59.8 + 224.4 + -0.099990845 + + + 2025-07-24T06:54:00.945 + 224.5 + -0.1000061 + + + 2025-07-24T06:54:01.156 + 224.6 + -0.1000061 + + + 2025-07-24T06:54:00 + 224.7 + -0.099990845 + + + 2025-07-24T06:54:01.363 + 224.8 + -0.1000061 + + + 2025-07-24T06:54:00.7 + 224.9 + -0.099990845 + + + 2025-07-24T06:54:01.781 + 225 + -0.1000061 + + + 2025-07-24T06:54:01.781 + 225.1 + -0.1000061 + + + 2025-07-24T06:54:01.79 + 225.2 + -0.099990845 + + + 2025-07-24T06:54:02 + 225.3 + -0.1000061 + + + 2025-07-24T06:54:02.409 + 225.4 + -0.099990845 + + + 2025-07-24T06:54:02.613 + 225.5 + -0.1000061 + + + 2025-07-24T06:54:02.613 + 225.6 + -0.1000061 + + + 2025-07-24T06:54:02.816 + 225.8 + -0.19999695 + + + 2025-07-24T06:54:03 + 225.9 + -0.099990845 + + + 2025-07-24T06:54:03.227 + 226 + -0.1000061 + + + 2025-07-24T06:54:03.431 + 226.1 + -0.1000061 + + + 2025-07-24T06:54:03 + 226.2 + -0.099990845 + + + 2025-07-24T06:54:03.634 + 226.3 + -0.1000061 + + + 2025-07-24T06:54:03.84 + 226.4 + -0.099990845 + + + 2025-07-24T06:54:04 + 226.5 + -0.1000061 + + + 2025-07-24T06:54:04 + 226.6 + -0.1000061 + + + 2025-07-24T06:54:04 + 226.7 + -0.099990845 + + + 2025-07-24T06:54:04 + 226.8 + -0.1000061 + + + 2025-07-24T06:54:04.657 + 226.9 + -0.099990845 + + + 2025-07-24T06:54:04.859 + 227 + -0.1000061 + + + 2025-07-24T06:54:04 + 227.1 + -0.1000061 + + + 2025-07-24T06:54:05 + 227.2 + -0.099990845 + + + 2025-07-24T06:54:04 + 227.4 + -0.19999695 + + + 2025-07-24T06:54:05.471 + 227.4 + 0 + + + 2025-07-24T06:54:05.471 + 227.5 + -0.1000061 + + + 2025-07-24T06:54:05 + 227.6 + -0.1000061 + + + 2025-07-24T06:54:05.883 + 227.8 + -0.19999695 + + + 2025-07-24T06:54:06.097 + 227.9 + -0.099990845 + + + 2025-07-24T06:54:06.304 + 227.9 + 0 + + + 2025-07-24T06:54:06.304 + 228.1 + -0.2000122 + + + 2025-07-24T06:54:06 + 228.2 + -0.099990845 + + + 2025-07-24T06:54:06.709 + 228.2 + 0 + + + 2025-07-24T06:54:06.921 + 228.4 + -0.19999695 + + + 2025-07-24T06:54:06.7 + 228.5 + -0.1000061 + + + 2025-07-24T06:54:07 + 228.6 + -0.1000061 + + + 2025-07-24T06:54:07.338 + 228.7 + -0.099990845 + + + 2025-07-24T06:54:07.54 + 228.8 + -0.1000061 + + + 2025-07-24T06:54:07.746 + 228.9 + -0.099990845 + + + 2025-07-24T06:54:07.746 + 229 + -0.1000061 + + + 2025-07-24T06:54:08 + 229.1 + -0.1000061 + + + 2025-07-24T06:54:08.157 + 229.2 + -0.099990845 + + + 2025-07-24T06:54:08.365 + 229.3 + -0.1000061 + + + 2025-07-24T06:54:08 + 229.4 + -0.099990845 + + + 2025-07-24T06:54:08.567 + 229.4 + 0 + + + 2025-07-24T06:54:08.777 + 229.5 + -0.1000061 + + + 2025-07-24T06:54:08.98 + 229.6 + -0.1000061 + + + 2025-07-24T06:54:09.189 + 229.7 + -0.099990845 + + + 2025-07-24T06:54:08 + 229.8 + -0.1000061 + + + 2025-07-24T06:54:09.391 + 229.9 + -0.099990845 + + + 2025-07-24T06:54:09.601 + 230 + -0.1000061 + + + 2025-07-24T06:54:09.806 + 230.1 + -0.1000061 + + + 2025-07-24T06:54:09.8 + 230.2 + -0.099990845 + + + 2025-07-24T06:54:10 + 230.2 + 0 + + + 2025-07-24T06:54:10 + 230.3 + -0.1000061 + + + 2025-07-24T06:54:10.42 + 230.4 + -0.099990845 + + + 2025-07-24T06:54:10.622 + 230.5 + -0.1000061 + + + 2025-07-24T06:54:10 + 230.6 + -0.1000061 + + + 2025-07-24T06:54:10.826 + 230.7 + -0.099990845 + + + 2025-07-24T06:54:11 + 230.8 + -0.1000061 + + + 2025-07-24T06:54:11.23 + 230.9 + -0.099990845 + + + 2025-07-24T06:54:11.432 + 231 + -0.1000061 + + + 2025-07-24T06:54:11 + 231.1 + -0.1000061 + + + 2025-07-24T06:54:11.641 + 231.2 + -0.099990845 + + + 2025-07-24T06:54:11.85 + 231.3 + -0.1000061 + + + 2025-07-24T06:54:12.053 + 231.5 + -0.19999695 + + + 2025-07-24T06:54:12 + 231.6 + -0.1000061 + + + 2025-07-24T06:54:12 + 231.6 + 0 + + + 2025-07-24T06:54:12 + 231.7 + -0.099990845 + + + 2025-07-24T06:54:12.677 + 231.8 + -0.1000061 + + + 2025-07-24T06:54:12 + 231.9 + -0.099990845 + + + 2025-07-24T06:54:12.88 + 232 + -0.1000061 + + + 2025-07-24T06:54:12 + 232.1 + -0.1000061 + + + 2025-07-24T06:54:12 + 232.2 + -0.099990845 + + + 2025-07-24T06:54:13.503 + 232.3 + -0.1000061 + + + 2025-07-24T06:54:13.503 + 232.4 + -0.099990845 + + + 2025-07-24T06:54:13.706 + 232.5 + -0.1000061 + + + 2025-07-24T06:54:13.915 + 232.6 + -0.1000061 + + + 2025-07-24T06:54:14.118 + 232.7 + -0.099990845 + + + 2025-07-24T06:54:14 + 232.8 + -0.1000061 + + + 2025-07-24T06:54:14.329 + 232.9 + -0.099990845 + + + 2025-07-24T06:54:14.535 + 233 + -0.1000061 + + + 2025-07-24T06:54:14.738 + 233.1 + -0.1000061 + + + 2025-07-24T06:54:14.945 + 233.2 + -0.099990845 + + + 2025-07-24T06:54:15 + 233.3 + -0.1000061 + + + 2025-07-24T06:54:15 + 233.4 + -0.099990845 + + + 2025-07-24T06:54:15.362 + 233.5 + -0.1000061 + + + 2025-07-24T06:54:15.573 + 233.6 + -0.1000061 + + + 2025-07-24T06:54:15.54 + 233.7 + -0.099990845 + + + 2025-07-24T06:54:15.777 + 233.8 + -0.1000061 + + + 2025-07-24T06:54:16 + 233.9 + -0.099990845 + + + 2025-07-24T06:54:16 + 234 + -0.1000061 + + + 2025-07-24T06:54:16.392 + 234.1 + -0.1000061 + + + 2025-07-24T06:54:16 + 234.2 + -0.099990845 + + + 2025-07-24T06:54:16.6 + 234.3 + -0.1000061 + + + 2025-07-24T06:54:16.802 + 234.4 + -0.099990845 + + + 2025-07-24T06:54:17.005 + 234.5 + -0.1000061 + + + 2025-07-24T06:54:17 + 234.6 + -0.1000061 + + + 2025-07-24T06:54:17 + 234.7 + -0.099990845 + + + 2025-07-24T06:54:17.417 + 234.8 + -0.1000061 + + + 2025-07-24T06:54:17.619 + 234.9 + -0.099990845 + + + 2025-07-24T06:54:17.822 + 235 + -0.1000061 + + + 2025-07-24T06:54:17.822 + 235.1 + -0.1000061 + + + 2025-07-24T06:54:17.9 + 235.2 + -0.099990845 + + + 2025-07-24T06:54:18 + 235.3 + -0.1000061 + + + 2025-07-24T06:54:18 + 235.4 + -0.099990845 + + + 2025-07-24T06:54:18 + 235.5 + -0.1000061 + + + 2025-07-24T06:54:18.648 + 235.6 + -0.1000061 + + + 2025-07-24T06:54:18.854 + 235.7 + -0.099990845 + + + 2025-07-24T06:54:19.071 + 235.7 + 0 + + + 2025-07-24T06:54:19.273 + 235.8 + -0.1000061 + + + 2025-07-24T06:54:18 + 235.9 + -0.099990845 + + + 2025-07-24T06:54:19.475 + 235.9 + 0 + + + 2025-07-24T06:54:19.681 + 236 + -0.1000061 + + + 2025-07-24T06:54:19.885 + 236.1 + -0.1000061 + + + 2025-07-24T06:54:20 + 236.1 + 0 + + + 2025-07-24T06:54:20 + 236.2 + -0.099990845 + + + 2025-07-24T06:54:20.31 + 236.3 + -0.1000061 + + + 2025-07-24T06:54:20 + 236.3 + 0 + + + 2025-07-24T06:54:20.722 + 236.4 + -0.099990845 + + + 2025-07-24T06:54:20.722 + 236.5 + -0.1000061 + + + 2025-07-24T06:54:20.924 + 236.5 + 0 + + + 2025-07-24T06:54:21 + 236.6 + -0.1000061 + + + 2025-07-24T06:54:21.34 + 236.7 + -0.099990845 + + + 2025-07-24T06:54:21.38 + 236.7 + 0 + + + 2025-07-24T06:54:21.542 + 236.8 + -0.1000061 + + + 2025-07-24T06:54:21.749 + 236.8 + 0 + + + 2025-07-24T06:54:21.953 + 236.9 + -0.099990845 + + + 2025-07-24T06:54:22.159 + 236.9 + 0 + + + 2025-07-24T06:54:22 + 237 + -0.1000061 + + + 2025-07-24T06:54:22.366 + 237 + 0 + + + 2025-07-24T06:54:22.575 + 237 + 0 + + + 2025-07-24T06:54:22.779 + 237.1 + -0.1000061 + + + 2025-07-24T06:54:22.779 + 237.2 + -0.099990845 + + + 2025-07-24T06:54:22 + 237.2 + 0 + + + 2025-07-24T06:54:23.201 + 237.3 + -0.1000061 + + + 2025-07-24T06:54:23.403 + 237.3 + 0 + + + 2025-07-24T06:54:23 + 237.4 + -0.099990845 + + + 2025-07-24T06:54:23.609 + 237.4 + 0 + + + 2025-07-24T06:54:23 + 237.5 + -0.1000061 + + + 2025-07-24T06:54:24 + 237.5 + 0 + + + 2025-07-24T06:54:24.228 + 237.6 + -0.1000061 + + + 2025-07-24T06:54:24 + 237.6 + 0 + + + 2025-07-24T06:54:24 + 237.7 + -0.099990845 + + + 2025-07-24T06:54:24.639 + 237.7 + 0 + + + 2025-07-24T06:54:24.842 + 237.7 + 0 + + + 2025-07-24T06:54:24.842 + 237.8 + -0.1000061 + + + 2025-07-24T06:54:25 + 237.8 + 0 + + + 2025-07-24T06:54:24 + 237.9 + -0.099990845 + + + 2025-07-24T06:54:24 + 237.9 + 0 + + + 2025-07-24T06:54:25.6 + 237.9 + 0 + + + 2025-07-24T06:54:25.6 + 238 + -0.1000061 + + + 2025-07-24T06:54:25.6 + 238 + 0 + + + 2025-07-24T06:54:26 + 238.1 + -0.1000061 + + + 2025-07-24T06:54:26 + 238.1 + 0 + + + 2025-07-24T06:54:26.4 + 238.2 + -0.099990845 + + + 2025-07-24T06:54:26 + 238.2 + 0 + + + 2025-07-24T06:54:26 + 238.3 + -0.1000061 + + + 2025-07-24T06:54:26.08 + 238.3 + 0 + + + 2025-07-24T06:54:27 + 238.4 + -0.099990845 + + + 2025-07-24T06:54:26 + 238.4 + 0 + + + 2025-07-24T06:54:26 + 238.5 + -0.1000061 + + + 2025-07-24T06:54:26 + 238.5 + 0 + + + 2025-07-24T06:54:26 + 238.6 + -0.1000061 + + + 2025-07-24T06:54:26 + 238.7 + -0.099990845 + + + 2025-07-24T06:54:28 + 238.7 + 0 + + + 2025-07-24T06:54:28.01 + 238.8 + -0.1000061 + + + 2025-07-24T06:54:28 + 238.8 + 0 + + + 2025-07-24T06:54:28 + 238.8 + 0 + + + 2025-07-24T06:54:28 + 238.8 + 0 + + + 2025-07-24T06:54:28.07 + 238.9 + -0.099990845 + + + 2025-07-24T06:54:28.8 + 238.9 + 0 + + + 2025-07-24T06:54:29 + 238.9 + 0 + + + 2025-07-24T06:54:29.09 + 239 + -0.1000061 + + + 2025-07-24T06:54:29.464 + 239 + 0 + + + 2025-07-24T06:54:29.674 + 239.1 + -0.1000061 + + + 2025-07-24T06:54:29.5 + 239.1 + 0 + + + 2025-07-24T06:54:29.892 + 239.1 + 0 + + + 2025-07-24T06:54:30.095 + 239.2 + -0.099990845 + + + 2025-07-24T06:54:30.297 + 239.2 + 0 + + + 2025-07-24T06:54:30.297 + 239.2 + 0 + + + 2025-07-24T06:54:30.4 + 239.2 + 0 + + + 2025-07-24T06:54:30.706 + 239.2 + 0 + + + 2025-07-24T06:54:30.908 + 239.2 + 0 + + + 2025-07-24T06:54:31.11 + 239.2 + 0 + + + 2025-07-24T06:54:31 + 239.3 + -0.1000061 + + + 2025-07-24T06:54:31.08 + 239.3 + 0 + + + 2025-07-24T06:54:31.515 + 239.3 + 0 + + + 2025-07-24T06:54:31.726 + 239.3 + 0 + + + 2025-07-24T06:54:31.08 + 239.3 + 0 + + + 2025-07-24T06:54:32 + 239.4 + -0.099990845 + + + 2025-07-24T06:54:31.08 + 239.4 + 0 + + + 2025-07-24T06:54:32.355 + 239.4 + 0 + + + 2025-07-24T06:54:32.557 + 239.4 + 0 + + + 2025-07-24T06:54:32.09 + 239.4 + 0 + + + 2025-07-24T06:54:32.77 + 239.4 + 0 + + + 2025-07-24T06:54:32.09 + 239.4 + 0 + + + 2025-07-24T06:54:33.176 + 239.4 + 0 + + + 2025-07-24T06:54:32 + 239.4 + 0 + + + 2025-07-24T06:54:33 + 239.4 + 0 + + + 2025-07-24T06:54:33.582 + 239.4 + 0 + + + 2025-07-24T06:54:33 + 239.4 + 0 + + + 2025-07-24T06:54:33.994 + 239.4 + 0 + + + 2025-07-24T06:54:34 + 239.4 + 0 + + + 2025-07-24T06:54:34.08 + 239.4 + 0 + + + 2025-07-24T06:54:34.408 + 239.4 + 0 + + + 2025-07-24T06:54:34.611 + 239.4 + 0 + + + 2025-07-24T06:54:34.6 + 239.4 + 0 + + + 2025-07-24T06:54:34.813 + 239.4 + 0 + + + 2025-07-24T06:54:35 + 239.4 + 0 + + + 2025-07-24T06:54:35.217 + 239.4 + 0 + + + 2025-07-24T06:54:35.421 + 239.4 + 0 + + + 2025-07-24T06:54:35.4 + 239.4 + 0 + + + 2025-07-24T06:54:35.629 + 239.5 + -0.1000061 + + + 2025-07-24T06:54:35.831 + 239.5 + 0 + + + 2025-07-24T06:54:36 + 239.5 + 0 + + + 2025-07-24T06:54:36.237 + 239.5 + 0 + + + 2025-07-24T06:54:36.2 + 239.5 + 0 + + + 2025-07-24T06:54:36 + 239.5 + 0 + + + 2025-07-24T06:54:36.644 + 239.6 + -0.1000061 + + + 2025-07-24T06:54:36.854 + 239.6 + 0 + + + 2025-07-24T06:54:36.854 + 239.6 + 0 + + + 2025-07-24T06:54:37 + 239.6 + 0 + + + 2025-07-24T06:54:36 + 239.6 + 0 + + + 2025-07-24T06:54:37.475 + 239.6 + 0 + + + 2025-07-24T06:54:37.679 + 239.6 + 0 + + + 2025-07-24T06:54:37.679 + 239.6 + 0 + + + 2025-07-24T06:54:37.19 + 239.6 + 0 + + + 2025-07-24T06:54:38.089 + 239.6 + 0 + + + 2025-07-24T06:54:38.296 + 239.6 + 0 + + + 2025-07-24T06:54:38 + 239.6 + 0 + + + 2025-07-24T06:54:38 + 239.6 + 0 + + + 2025-07-24T06:54:38.19 + 239.6 + 0 + + + 2025-07-24T06:54:38.911 + 239.5 + 0.1000061 + + + 2025-07-24T06:54:39.121 + 239.5 + 0 + + + 2025-07-24T06:54:39.09 + 239.5 + 0 + + + 2025-07-24T06:54:39.323 + 239.5 + 0 + + + 2025-07-24T06:54:39.526 + 239.5 + 0 + + + 2025-07-24T06:54:39.735 + 239.5 + 0 + + + 2025-07-24T06:54:39.735 + 239.6 + -0.1000061 + + + 2025-07-24T06:54:40 + 239.5 + 0.1000061 + + + 2025-07-24T06:54:40 + 239.5 + 0 + + + 2025-07-24T06:54:40.359 + 239.5 + 0 + + + 2025-07-24T06:54:40.563 + 239.5 + 0 + + + 2025-07-24T06:54:40.563 + 239.5 + 0 + + + 2025-07-24T06:54:40.766 + 239.6 + -0.1000061 + + + 2025-07-24T06:54:40.977 + 239.6 + 0 + + + 2025-07-24T06:54:41 + 239.5 + 0.1000061 + + + 2025-07-24T06:54:41.2 + 239.5 + 0 + + + 2025-07-24T06:54:41.385 + 239.5 + 0 + + + 2025-07-24T06:54:41.592 + 239.6 + -0.1000061 + + + 2025-07-24T06:54:41.804 + 239.6 + 0 + + + 2025-07-24T06:54:42.012 + 239.6 + 0 + + + 2025-07-24T06:54:41.2 + 239.6 + 0 + + + 2025-07-24T06:54:42 + 239.6 + 0 + + + 2025-07-24T06:54:42.421 + 239.6 + 0 + + + 2025-07-24T06:54:42.623 + 239.6 + 0 + + + 2025-07-24T06:54:42.623 + 239.6 + 0 + + + 2025-07-24T06:54:42.09 + 239.6 + 0 + + + 2025-07-24T06:54:43 + 239.6 + 0 + + + 2025-07-24T06:54:43.23 + 239.6 + 0 + + + 2025-07-24T06:54:43.443 + 239.6 + 0 + + + 2025-07-24T06:54:43 + 239.6 + 0 + + + 2025-07-24T06:54:43.19 + 239.6 + 0 + + + 2025-07-24T06:54:43.852 + 239.5 + 0.1000061 + + + 2025-07-24T06:54:44.055 + 239.6 + -0.1000061 + + + 2025-07-24T06:54:44 + 239.6 + 0 + + + 2025-07-24T06:54:44 + 239.6 + 0 + + + 2025-07-24T06:54:44 + 239.6 + 0 + + + 2025-07-24T06:54:44.682 + 239.6 + 0 + + + 2025-07-24T06:54:44.682 + 239.6 + 0 + + + 2025-07-24T06:54:44.19 + 239.6 + 0 + + + 2025-07-24T06:54:45 + 239.6 + 0 + + + 2025-07-24T06:54:44 + 239.7 + -0.099990845 + + + 2025-07-24T06:54:45.512 + 239.7 + 0 + + + 2025-07-24T06:54:45.512 + 239.7 + 0 + + + 2025-07-24T06:54:45.714 + 239.7 + 0 + + + 2025-07-24T06:54:45.917 + 239.7 + 0 + + + 2025-07-24T06:54:46.125 + 239.7 + 0 + + + 2025-07-24T06:54:46.328 + 239.8 + -0.1000061 + + + 2025-07-24T06:54:46.328 + 239.8 + 0 + + + 2025-07-24T06:54:46.536 + 239.8 + 0 + + + 2025-07-24T06:54:46.739 + 239.7 + 0.1000061 + + + 2025-07-24T06:54:46.949 + 239.7 + 0 + + + 2025-07-24T06:54:46.81 + 239.7 + 0 + + + 2025-07-24T06:54:47 + 239.7 + 0 + + + 2025-07-24T06:54:47.358 + 239.7 + 0 + + + 2025-07-24T06:54:47.563 + 239.7 + 0 + + + 2025-07-24T06:54:47.563 + 239.7 + 0 + + + 2025-07-24T06:54:47.3 + 239.7 + 0 + + + 2025-07-24T06:54:48 + 239.7 + 0 + + + 2025-07-24T06:54:48.191 + 239.7 + 0 + + + 2025-07-24T06:54:48.398 + 239.8 + -0.1000061 + + + 2025-07-24T06:54:48 + 239.8 + 0 + + + 2025-07-24T06:54:48.3 + 239.8 + 0 + + + 2025-07-24T06:54:48.805 + 239.8 + 0 + + + 2025-07-24T06:54:49 + 239.9 + -0.099990845 + + + 2025-07-24T06:54:49.212 + 239.9 + 0 + + + 2025-07-24T06:54:48 + 240 + -0.1000061 + + + 2025-07-24T06:54:49.3 + 240 + 0 + + + 2025-07-24T06:54:49.618 + 240.1 + -0.1000061 + + + 2025-07-24T06:54:49.833 + 240.1 + 0 + + + 2025-07-24T06:54:49.3 + 240.1 + 0 + + + 2025-07-24T06:54:50 + 240.1 + 0 + + + 2025-07-24T06:54:50 + 240.1 + 0 + + + 2025-07-24T06:54:50.446 + 240.1 + 0 + + + 2025-07-24T06:54:50.652 + 240.1 + 0 + + + 2025-07-24T06:54:50.652 + 240.2 + -0.099990845 + + + 2025-07-24T06:54:50.856 + 240.2 + 0 + + + 2025-07-24T06:54:51.059 + 240.1 + 0.099990845 + + + 2025-07-24T06:54:51.265 + 240 + 0.1000061 + + + 2025-07-24T06:54:50 + 239.9 + 0.1000061 + + + 2025-07-24T06:54:51.47 + 239.8 + 0.099990845 + + + 2025-07-24T06:54:51.675 + 239.6 + 0.19999695 + + + 2025-07-24T06:54:51.877 + 239.4 + 0.2000122 + + + 2025-07-24T06:54:52.081 + 239.1 + 0.2999878 + + + 2025-07-24T06:54:52 + 238.8 + 0.30000305 + + + 2025-07-24T06:54:52.294 + 238.5 + 0.30000305 + + + 2025-07-24T06:54:52 + 238.2 + 0.30000305 + + + 2025-07-24T06:54:52.711 + 237.9 + 0.30000305 + + + 2025-07-24T06:54:52.74 + 237.6 + 0.2999878 + + + 2025-07-24T06:54:53 + 237.3 + 0.30000305 + + + 2025-07-24T06:54:52 + 237 + 0.30000305 + + + 2025-07-24T06:54:52 + 236.7 + 0.30000305 + + + 2025-07-24T06:54:53.527 + 236.5 + 0.19999695 + + + 2025-07-24T06:54:53.3 + 236.2 + 0.30000305 + + + 2025-07-24T06:54:53.739 + 236 + 0.19999695 + + + 2025-07-24T06:54:53.941 + 235.7 + 0.30000305 + + + 2025-07-24T06:54:54.145 + 235.5 + 0.19999695 + + + 2025-07-24T06:54:54 + 235.2 + 0.30000305 + + + 2025-07-24T06:54:54.3 + 235 + 0.19999695 + + + 2025-07-24T06:54:54.554 + 234.8 + 0.19999695 + + + 2025-07-24T06:54:54.757 + 234.5 + 0.30000305 + + + 2025-07-24T06:54:54.961 + 234.2 + 0.30000305 + + + 2025-07-24T06:54:55 + 234 + 0.19999695 + + + 2025-07-24T06:54:55 + 233.7 + 0.30000305 + + + 2025-07-24T06:54:55.371 + 233.4 + 0.30000305 + + + 2025-07-24T06:54:55.578 + 233.2 + 0.19999695 + + + 2025-07-24T06:54:55.78 + 232.9 + 0.30000305 + + + 2025-07-24T06:54:55.78 + 232.6 + 0.2999878 + + + 2025-07-24T06:54:56 + 232.3 + 0.30000305 + + + 2025-07-24T06:54:56 + 232 + 0.30000305 + + + 2025-07-24T06:54:56.387 + 231.8 + 0.19999695 + + + 2025-07-24T06:54:56 + 231.5 + 0.30000305 + + + 2025-07-24T06:54:56.3 + 231.2 + 0.30000305 + + + 2025-07-24T06:54:56.795 + 230.9 + 0.30000305 + + + 2025-07-24T06:54:57 + 230.6 + 0.2999878 + + + 2025-07-24T06:54:57.2 + 230.3 + 0.30000305 + + + 2025-07-24T06:54:56 + 230 + 0.30000305 + + + 2025-07-24T06:54:57 + 229.7 + 0.30000305 + + + 2025-07-24T06:54:57.607 + 229.5 + 0.19999695 + + + 2025-07-24T06:54:57.7 + 229.2 + 0.30000305 + + + 2025-07-24T06:54:58.017 + 229 + 0.19999695 + + + 2025-07-24T06:54:58 + 228.7 + 0.30000305 + + + 2025-07-24T06:54:58 + 228.5 + 0.19999695 + + + 2025-07-24T06:54:58 + 228.2 + 0.30000305 + + + 2025-07-24T06:54:58.63 + 228 + 0.19999695 + + + 2025-07-24T06:54:58.3 + 227.8 + 0.19999695 + + + 2025-07-24T06:54:58.833 + 227.6 + 0.19999695 + + + 2025-07-24T06:54:58.3 + 227.4 + 0.2000122 + + + 2025-07-24T06:54:59.24 + 227.1 + 0.2999878 + + + 2025-07-24T06:54:59.442 + 226.9 + 0.2000122 + + + 2025-07-24T06:54:59.2 + 226.7 + 0.19999695 + + + 2025-07-24T06:54:59.644 + 226.5 + 0.19999695 + + + 2025-07-24T06:54:59.2 + 226.2 + 0.30000305 + + + 2025-07-24T06:55:00 + 226 + 0.19999695 + + + 2025-07-24T06:55:00 + 225.8 + 0.19999695 + + + 2025-07-24T06:55:00 + 225.6 + 0.19999695 + + + 2025-07-24T06:55:00 + 225.4 + 0.2000122 + + + 2025-07-24T06:55:00 + 224.4 + 1 + + + 2025-07-24T06:55:00 + 224.2 + 0.19999695 + + + 2025-07-24T06:43:00 + 250.17 + 0 + + + 2025-07-24T06:43:00 + 249.5 + 0.66999817 + + + 2025-07-24T06:43:01 + 250.66 + -1.1600037 + + + 2025-07-24T06:43:00.8 + 249.7 + 0.9600067 + + + 2025-07-24T06:43:02 + 251.27 + -1.5700073 + + + 2025-07-24T06:43:01.8 + 247.7 + 3.5700073 + + + 2025-07-24T06:43:02 + 250.6 + -2.9000092 + + + 2025-07-24T06:43:02.8 + 248.2 + 2.4000092 + + + 2025-07-24T06:43:03 + 251.93 + -3.7299957 + + + 2025-07-24T06:43:03 + 248.8 + 3.1299896 + + + 2025-07-24T06:43:04 + 252.46 + -3.6600037 + + + 2025-07-24T06:43:04 + 251.8 + 0.66000366 + + + 2025-07-24T06:43:04 + 250.8 + 1 + + + 2025-07-24T06:43:05 + 252.25 + -1.449997 + + + 2025-07-24T06:43:05 + 252.25 + 0 + + + 2025-07-24T06:43:04.7 + 249.8 + 2.449997 + + + 2025-07-24T06:43:06 + 252.18 + -2.3799896 + + + 2025-07-24T06:43:06 + 252.3 + -0.120010376 + + + 2025-07-24T06:43:05.8 + 250.2 + 2.100006 + + + 2025-07-24T06:43:07 + 252.11 + -1.9100037 + + + 2025-07-24T06:43:06.8 + 252.6 + -0.4900055 + + + 2025-07-24T06:43:07.8 + 252.7 + -0.099990845 + + + 2025-07-24T06:43:08 + 252.4 + 0.30000305 + + + 2025-07-24T06:43:08 + 252.08 + 0.31999207 + + + 2025-07-24T06:43:08 + 251 + 1.0800018 + + + 2025-07-24T06:43:09 + 252.29 + -1.2899933 + + + 2025-07-24T06:43:09 + 251.2 + 1.0899963 + + + 2025-07-24T06:43:10 + 251.93 + -0.7299957 + + + 2025-07-24T06:43:10 + 251.8 + 0.12998962 + + + 2025-07-24T06:43:09.93 + 251.4 + 0.40000916 + + + 2025-07-24T06:43:11 + 251.55 + -0.15000916 + + + 2025-07-24T06:43:10.93 + 251.4 + 0.15000916 + + + 2025-07-24T06:43:11.9 + 251.5 + -0.1000061 + + + 2025-07-24T06:43:12 + 251.61 + -0.11000061 + + + 2025-07-24T06:43:12 + 252 + -0.3899994 + + + 2025-07-24T06:43:12 + 252.2 + -0.19999695 + + + 2025-07-24T06:43:13 + 251.58 + 0.6199951 + + + 2025-07-24T06:43:13 + 251.6 + -0.020004272 + + + 2025-07-24T06:43:14 + 251.44 + 0.16000366 + + + 2025-07-24T06:43:14 + 251.7 + -0.2599945 + + + 2025-07-24T06:43:13.93 + 251.5 + 0.19999695 + + + 2025-07-24T06:43:15 + 250.67 + 0.83000183 + + + 2025-07-24T06:43:14.94 + 252 + -1.3300018 + + + 2025-07-24T06:43:16 + 249.94 + 2.0599976 + + + 2025-07-24T06:43:15.93 + 251.6 + -1.6600037 + + + 2025-07-24T06:43:16 + 250 + 1.6000061 + + + 2025-07-24T06:43:16 + 250 + 0 + + + 2025-07-24T06:43:16.93 + 251.5 + -1.5 + + + 2025-07-24T06:43:17 + 250.76 + 0.7400055 + + + 2025-07-24T06:43:17 + 251.7 + -0.94000244 + + + 2025-07-24T06:43:18 + 251.5 + 0.19999695 + + + 2025-07-24T06:43:18 + 251.2 + 0.30000305 + + + 2025-07-24T06:43:17.9 + 250 + 1.199997 + + + 2025-07-24T06:43:19 + 250.35 + -0.3500061 + + + 2025-07-24T06:43:18.9 + 251.4 + -1.0499878 + + + 2025-07-24T06:43:20 + 249.86 + 1.5399933 + + + 2025-07-24T06:43:20 + 249.8 + 0.05999756 + + + 2025-07-24T06:43:19.97 + 251.1 + -1.300003 + + + 2025-07-24T06:43:21 + 249.91 + 1.1900024 + + + 2025-07-24T06:43:20.93 + 250.9 + -0.98999023 + + + 2025-07-24T06:43:21 + 250.9 + 0 + + + 2025-07-24T06:43:22 + 249.7 + 1.199997 + + + 2025-07-24T06:43:22 + 250.7 + -1 + + + 2025-07-24T06:43:22 + 250.8 + -0.1000061 + + + 2025-07-24T06:43:23 + 247.61 + 3.1900024 + + + 2025-07-24T06:43:22.93 + 253.3 + -5.6900024 + + + 2025-07-24T06:43:24 + 244.04 + 9.26001 + + + 2025-07-24T06:43:24 + 247.2 + -3.1600037 + + + 2025-07-24T06:43:24 + 254.1 + -6.900009 + + + 2025-07-24T06:43:25 + 240.58 + 13.520004 + + + 2025-07-24T06:43:24.9 + 249.7 + -9.119995 + + + 2025-07-24T06:43:26.09 + 248.8 + 0.8999939 + + + 2025-07-24T06:43:26 + 237.14 + 11.660004 + + + 2025-07-24T06:43:26 + 240.4 + -3.2599945 + + + 2025-07-24T06:43:26 + 252.9 + -12.5 + + + 2025-07-24T06:43:27 + 233.86 + 19.039993 + + + 2025-07-24T06:43:27 + 249.1 + -15.2400055 + + + 2025-07-24T06:43:28 + 232.9 + 16.200012 + + + 2025-07-24T06:43:28 + 230.34 + 2.5599976 + + + 2025-07-24T06:43:28.09 + 243.9 + -13.559998 + + + 2025-07-24T06:43:29 + 228.09 + 15.809998 + + + 2025-07-24T06:43:29.09 + 241.3 + -13.210007 + + + 2025-07-24T06:43:30 + 225.49 + 15.809998 + + + 2025-07-24T06:43:30 + 229.8 + -4.3099976 + + + 2025-07-24T06:43:30.08 + 240.1 + -10.300003 + + + 2025-07-24T06:43:30 + 238.3 + 1.800003 + + + 2025-07-24T06:43:31 + 223.35 + 14.949997 + + + 2025-07-24T06:43:31 + 236.4 + -13.049988 + + + 2025-07-24T06:43:32 + 220.8 + 15.599991 + + + 2025-07-24T06:43:32 + 222.8 + -2 + + + 2025-07-24T06:43:32 + 234.5 + -11.699997 + + + 2025-07-24T06:43:33 + 218.83 + 15.669998 + + + 2025-07-24T06:43:33.09 + 232.6 + -13.770004 + + + 2025-07-24T06:43:34 + 216.65 + 15.950012 + + + 2025-07-24T06:43:34 + 220.1 + -3.4500122 + + + 2025-07-24T06:43:34.09 + 230.9 + -10.799988 + + + 2025-07-24T06:43:35 + 214.74 + 16.159988 + + + 2025-07-24T06:43:35.09 + 221.2 + -6.4599915 + + + 2025-07-24T06:43:35 + 219.6 + 1.5999908 + + + 2025-07-24T06:43:36 + 212.75 + 6.850006 + + + 2025-07-24T06:43:36 + 215.3 + -2.550003 + + + 2025-07-24T06:43:36 + 225.3 + -10 + + + 2025-07-24T06:43:37 + 210.91 + 14.389999 + + + 2025-07-24T06:43:37 + 217.7 + -6.7899933 + + + 2025-07-24T06:43:38 + 212.1 + 5.599991 + + + 2025-07-24T06:43:38 + 209.77 + 2.3300018 + + + 2025-07-24T06:43:38.19 + 215.7 + -5.9299927 + + + 2025-07-24T06:43:39 + 208.22 + 7.4799957 + + + 2025-07-24T06:43:39.19 + 219.8 + -11.580002 + + + 2025-07-24T06:43:40 + 206.41 + 13.389999 + + + 2025-07-24T06:43:39 + 212.3 + -5.8899994 + + + 2025-07-24T06:43:40 + 207.1 + 5.199997 + + + 2025-07-24T06:43:40 + 216.6 + -9.5 + + + 2025-07-24T06:43:41 + 205.13 + 11.470001 + + + 2025-07-24T06:43:41 + 215.1 + -9.970001 + + + 2025-07-24T06:43:42 + 203.73 + 11.37001 + + + 2025-07-24T06:43:42 + 205.6 + -1.8700104 + + + 2025-07-24T06:43:42.19 + 213.7 + -8.099991 + + + 2025-07-24T06:43:43 + 202.36 + 11.339996 + + + 2025-07-24T06:43:43.19 + 208.7 + -6.3399963 + + + 2025-07-24T06:43:44 + 200.89 + 7.8099976 + + + 2025-07-24T06:43:44 + 202.7 + -1.8099976 + + + 2025-07-24T06:43:44.19 + 211 + -8.300003 + + + 2025-07-24T06:43:44 + 209.6 + 1.3999939 + + + 2025-07-24T06:43:45 + 199.41 + 10.190002 + + + 2025-07-24T06:43:45 + 207 + -7.5899963 + + + 2025-07-24T06:43:46 + 198.22 + 8.779999 + + + 2025-07-24T06:43:46 + 200.4 + -2.1799927 + + + 2025-07-24T06:43:46 + 207 + -6.600006 + + + 2025-07-24T06:43:47 + 196.71 + 10.289993 + + + 2025-07-24T06:43:47.09 + 205.7 + -8.98999 + + + 2025-07-24T06:43:48 + 198 + 7.699997 + + + 2025-07-24T06:43:48.3 + 203 + -5 + + + 2025-07-24T06:43:48 + 195.49 + 7.5099945 + + + 2025-07-24T06:43:49 + 194.17 + 1.3200073 + + + 2025-07-24T06:43:48 + 203.2 + -9.029999 + + + 2025-07-24T06:43:49 + 202 + 1.199997 + + + 2025-07-24T06:43:50 + 192.5 + 9.5 + + + 2025-07-24T06:43:50 + 195.3 + -2.800003 + + + 2025-07-24T06:43:50 + 200.9 + -5.599991 + + + 2025-07-24T06:43:51 + 191.08 + 9.819992 + + + 2025-07-24T06:43:51 + 197.7 + -6.619995 + + + 2025-07-24T06:43:52 + 190.06 + 7.6399994 + + + 2025-07-24T06:43:52 + 191.9 + -1.8399963 + + + 2025-07-24T06:43:52.3 + 198.7 + -6.800003 + + + 2025-07-24T06:43:53.2 + 197.5 + 1.199997 + + + 2025-07-24T06:43:53 + 188.09 + 9.410004 + + + 2025-07-24T06:43:54 + 186.77 + 1.3199921 + + + 2025-07-24T06:43:53 + 193 + -6.2299957 + + + 2025-07-24T06:43:53 + 193 + 0 + + + 2025-07-24T06:43:54 + 188.4 + 4.600006 + + + 2025-07-24T06:43:54 + 191.7 + -3.300003 + + + 2025-07-24T06:43:55 + 185.58 + 6.119995 + + + 2025-07-24T06:43:55 + 191.7 + -6.119995 + + + 2025-07-24T06:43:56 + 184.57 + 7.1299896 + + + 2025-07-24T06:43:56 + 186.5 + -1.9299927 + + + 2025-07-24T06:43:56 + 190.4 + -3.899994 + + + 2025-07-24T06:43:57 + 182.9 + 7.5 + + + 2025-07-24T06:43:57.3 + 191.5 + -8.600006 + + + 2025-07-24T06:43:58 + 184.1 + 7.399994 + + + 2025-07-24T06:43:57 + 190.3 + -6.199997 + + + 2025-07-24T06:43:58 + 181.53 + 8.770004 + + + 2025-07-24T06:43:58 + 189.2 + -7.669998 + + + 2025-07-24T06:43:59 + 180.62 + 8.580002 + + + 2025-07-24T06:43:59 + 185.2 + -4.580002 + + + 2025-07-24T06:44:00 + 178.94 + 6.2599945 + + + 2025-07-24T06:44:00 + 180.7 + -1.7599945 + + + 2025-07-24T06:44:00 + 187.1 + -6.400009 + + + 2025-07-24T06:44:01 + 177.85 + 9.25 + + + 2025-07-24T06:44:01.3 + 185.9 + -8.049988 + + + 2025-07-24T06:44:02 + 176.58 + 9.319992 + + + 2025-07-24T06:44:02 + 178.6 + -2.0200043 + + + 2025-07-24T06:44:02.3 + 182.4 + -3.7999878 + + + 2025-07-24T06:44:02 + 181.1 + 1.2999878 + + + 2025-07-24T06:44:03 + 174.87 + 6.230011 + + + 2025-07-24T06:44:03 + 182.9 + -8.029999 + + + 2025-07-24T06:44:04 + 174.08 + 8.819992 + + + 2025-07-24T06:44:04 + 177.2 + -3.119995 + + + 2025-07-24T06:44:04 + 181.5 + -4.300003 + + + 2025-07-24T06:44:05 + 172.46 + 9.039993 + + + 2025-07-24T06:44:05 + 180.6 + -8.139999 + + + 2025-07-24T06:44:06 + 171.36 + 9.2400055 + + + 2025-07-24T06:44:06 + 173 + -1.6399994 + + + 2025-07-24T06:44:06.3 + 179.4 + -6.399994 + + + 2025-07-24T06:44:07 + 170.18 + 9.220001 + + + 2025-07-24T06:44:06 + 178.4 + -8.220001 + + + 2025-07-24T06:44:08 + 170.7 + 7.699997 + + + 2025-07-24T06:44:07 + 174.5 + -3.800003 + + + 2025-07-24T06:44:08 + 168.47 + 6.029999 + + + 2025-07-24T06:44:08 + 176.3 + -7.830002 + + + 2025-07-24T06:44:09 + 167.83 + 8.470001 + + + 2025-07-24T06:44:09 + 175.2 + -7.369995 + + + 2025-07-24T06:44:10 + 165.73 + 9.470001 + + + 2025-07-24T06:44:10 + 168.1 + -2.3700104 + + + 2025-07-24T06:44:10 + 171.8 + -3.699997 + + + 2025-07-24T06:44:11 + 165.42 + 6.380005 + + + 2025-07-24T06:44:11.4 + 171.8 + -6.380005 + + + 2025-07-24T06:44:12 + 163.84 + 7.9600067 + + + 2025-07-24T06:44:12 + 166 + -2.1600037 + + + 2025-07-24T06:44:10 + 172.3 + -6.300003 + + + 2025-07-24T06:44:12 + 168.1 + 4.199997 + + + 2025-07-24T06:44:13 + 162.69 + 5.4100037 + + + 2025-07-24T06:44:13 + 170.1 + -7.4100037 + + + 2025-07-24T06:44:14 + 162.06 + 8.040009 + + + 2025-07-24T06:44:14 + 163.7 + -1.6399994 + + + 2025-07-24T06:44:14 + 163.7 + 0 + + + 2025-07-24T06:44:14 + 169.1 + -5.400009 + + + 2025-07-24T06:44:15 + 160.2 + 8.900009 + + + 2025-07-24T06:44:15.43 + 168.1 + -7.900009 + + + 2025-07-24T06:44:16 + 157.46 + 10.639999 + + + 2025-07-24T06:44:16 + 160.6 + -3.1399994 + + + 2025-07-24T06:44:15 + 167 + -6.399994 + + + 2025-07-24T06:44:17 + 156.86 + 10.139999 + + + 2025-07-24T06:44:16 + 166.1 + -9.2400055 + + + 2025-07-24T06:44:17 + 165.4 + 0.7000122 + + + 2025-07-24T06:44:18 + 158.7 + 6.699997 + + + 2025-07-24T06:44:18 + 156.72 + 1.9799957 + + + 2025-07-24T06:44:18 + 161.2 + -4.4799957 + + + 2025-07-24T06:44:19 + 155.79 + 5.4100037 + + + 2025-07-24T06:44:19 + 161.2 + -5.4100037 + + + 2025-07-24T06:44:20 + 153.3 + 7.899994 + + + 2025-07-24T06:44:20 + 153.3 + 0 + + + 2025-07-24T06:44:20 + 156 + -2.699997 + + + 2025-07-24T06:44:20.5 + 162.3 + -6.300003 + + + 2025-07-24T06:44:21 + 150.95 + 11.350006 + + + 2025-07-24T06:44:20 + 159.3 + -8.350006 + + + 2025-07-24T06:44:22 + 149.85 + 9.449997 + + + 2025-07-24T06:44:22 + 153.6 + -3.75 + + + 2025-07-24T06:44:21 + 159.7 + -6.099991 + + + 2025-07-24T06:44:22 + 158.8 + 0.8999939 + + + 2025-07-24T06:44:23 + 150.09 + 8.710007 + + + 2025-07-24T06:44:23 + 156.6 + -6.51001 + + + 2025-07-24T06:44:24 + 149.5 + 7.100006 + + + 2025-07-24T06:44:24 + 151.6 + -2.100006 + + + 2025-07-24T06:44:24.59 + 156.6 + -5 + + + 2025-07-24T06:44:25 + 146.83 + 9.770004 + + + 2025-07-24T06:44:24.59 + 155.6 + -8.770004 + + + 2025-07-24T06:44:26 + 145.41 + 10.190002 + + + 2025-07-24T06:44:26 + 148.7 + -3.2899933 + + + 2025-07-24T06:44:26 + 148.7 + 0 + + + 2025-07-24T06:44:25 + 154.6 + -5.900009 + + + 2025-07-24T06:44:27 + 144.54 + 10.060013 + + + 2025-07-24T06:44:26 + 151.1 + -6.560013 + + + 2025-07-24T06:44:26 + 151.1 + 0 + + + 2025-07-24T06:44:27 + 151.7 + -0.59999084 + + + 2025-07-24T06:44:28 + 146.7 + 5 + + + 2025-07-24T06:44:28 + 143.34 + 3.3600006 + + + 2025-07-24T06:44:28 + 151.8 + -8.460007 + + + 2025-07-24T06:44:29 + 143.6 + 8.199997 + + + 2025-07-24T06:44:29 + 147.4 + -3.7999878 + + + 2025-07-24T06:44:30 + 139.88 + 7.519989 + + + 2025-07-24T06:44:30 + 144.4 + -4.519989 + + + 2025-07-24T06:44:29 + 149.7 + -5.300003 + + + 2025-07-24T06:44:31 + 140.8 + 8.899994 + + + 2025-07-24T06:44:30 + 148.7 + -7.899994 + + + 2025-07-24T06:44:32 + 138.52 + 10.179993 + + + 2025-07-24T06:44:32 + 141.8 + -3.2799988 + + + 2025-07-24T06:44:32 + 141.8 + 0 + + + 2025-07-24T06:44:31.58 + 144.6 + -2.800003 + + + 2025-07-24T06:44:32 + 146.9 + -2.2999878 + + + 2025-07-24T06:44:33 + 137.66 + 9.23999 + + + 2025-07-24T06:44:33 + 145.8 + -8.139999 + + + 2025-07-24T06:44:34 + 135.65 + 10.150009 + + + 2025-07-24T06:44:34 + 139.5 + -3.850006 + + + 2025-07-24T06:44:34.7 + 142.3 + -2.800003 + + + 2025-07-24T06:44:35 + 135.28 + 7.0200043 + + + 2025-07-24T06:44:35 + 135.28 + 0 + + + 2025-07-24T06:44:34.7 + 141.5 + -6.220001 + + + 2025-07-24T06:44:36 + 133.32 + 8.179993 + + + 2025-07-24T06:44:36 + 137.1 + -3.7799988 + + + 2025-07-24T06:44:35.69 + 142.9 + -5.799988 + + + 2025-07-24T06:44:37 + 132.95 + 9.949997 + + + 2025-07-24T06:44:36.69 + 141.8 + -8.850006 + + + 2025-07-24T06:44:37.59 + 138.1 + 3.699997 + + + 2025-07-24T06:44:38 + 134.9 + 3.2000122 + + + 2025-07-24T06:44:38 + 133.29 + 1.6100006 + + + 2025-07-24T06:44:38.7 + 139.8 + -6.51001 + + + 2025-07-24T06:44:39 + 131.91 + 7.8899994 + + + 2025-07-24T06:44:38.7 + 138.9 + -6.98999 + + + 2025-07-24T06:44:40 + 130.52 + 8.37999 + + + 2025-07-24T06:44:40 + 132.4 + -1.8799896 + + + 2025-07-24T06:44:39.59 + 138.1 + -5.700012 + + + 2025-07-24T06:44:41 + 128.81 + 9.290009 + + + 2025-07-24T06:44:40.59 + 137.5 + -8.690002 + + + 2025-07-24T06:44:41.59 + 136.7 + 0.80000305 + + + 2025-07-24T06:44:42 + 127.36 + 9.339996 + + + 2025-07-24T06:44:42 + 130.7 + -3.3399963 + + + 2025-07-24T06:44:42.69 + 132.8 + -2.100006 + + + 2025-07-24T06:44:43 + 125.86 + 6.9400024 + + + 2025-07-24T06:44:43.69 + 132.8 + -6.9400024 + + + 2025-07-24T06:44:44 + 125.24 + 7.560005 + + + 2025-07-24T06:44:44 + 128.3 + -3.0600052 + + + 2025-07-24T06:44:43.69 + 133.9 + -5.599991 + + + 2025-07-24T06:44:45 + 123.93 + 9.969994 + + + 2025-07-24T06:44:44.79 + 132.8 + -8.870003 + + + 2025-07-24T06:44:46 + 124.31 + 8.4900055 + + + 2025-07-24T06:44:46 + 126.4 + -2.090004 + + + 2025-07-24T06:44:45.8 + 129.1 + -2.7000046 + + + 2025-07-24T06:44:46.7 + 127.8 + 1.300003 + + + 2025-07-24T06:44:47 + 121.78 + 6.0200043 + + + 2025-07-24T06:44:47.8 + 129.7 + -7.919998 + + + 2025-07-24T06:44:48 + 125.2 + 4.5 + + + 2025-07-24T06:44:48 + 122.16 + 3.0399933 + + + 2025-07-24T06:44:48 + 128.9 + -6.73999 + + + 2025-07-24T06:44:49 + 120.24 + 8.659996 + + + 2025-07-24T06:44:48.8 + 127.9 + -7.6600037 + + + 2025-07-24T06:44:50 + 119.39 + 8.510002 + + + 2025-07-24T06:44:50 + 120 + -0.6100006 + + + 2025-07-24T06:44:49.8 + 127 + -7 + + + 2025-07-24T06:44:51 + 118.39 + 8.610001 + + + 2025-07-24T06:44:50.8 + 124.4 + -6.010002 + + + 2025-07-24T06:44:51.8 + 123.1 + 1.300003 + + + 2025-07-24T06:44:52 + 115.6 + 7.5 + + + 2025-07-24T06:44:52 + 122.8 + -7.2000046 + + + 2025-07-24T06:44:52.8 + 124.4 + -1.5999985 + + + 2025-07-24T06:44:53 + 115.62 + 8.779999 + + + 2025-07-24T06:44:53 + 115.62 + 0 + + + 2025-07-24T06:44:52.8 + 122.4 + -6.779999 + + + 2025-07-24T06:44:54 + 113.71 + 8.690002 + + + 2025-07-24T06:44:54 + 118.1 + -4.3899994 + + + 2025-07-24T06:44:53.8 + 120.8 + -2.7000046 + + + 2025-07-24T06:44:53.8 + 120.8 + 0 + + + 2025-07-24T06:44:55 + 114.45 + 6.350006 + + + 2025-07-24T06:44:54.8 + 119.8 + -5.350006 + + + 2025-07-24T06:44:54.8 + 119.8 + 0 + + + 2025-07-24T06:44:56 + 111.31 + 8.4900055 + + + 2025-07-24T06:44:55.79 + 120.8 + -9.4900055 + + + 2025-07-24T06:44:56 + 115.4 + 5.4000015 + + + 2025-07-24T06:44:56.8 + 119.8 + -4.4000015 + + + 2025-07-24T06:44:57 + 110.51 + 9.290001 + + + 2025-07-24T06:44:57 + 118.7 + -8.189995 + + + 2025-07-24T06:44:58 + 113.3 + 5.399994 + + + 2025-07-24T06:44:58 + 111.32 + 1.9800034 + + + 2025-07-24T06:44:57.8 + 117.8 + -6.4800034 + + + 2025-07-24T06:44:59 + 108.69 + 9.110001 + + + 2025-07-24T06:44:58.8 + 114.7 + -6.0099945 + + + 2025-07-24T06:45:00 + 108.77 + 5.9300003 + + + 2025-07-24T06:45:00 + 110.7 + -1.9300003 + + + 2025-07-24T06:44:59.93 + 116 + -5.300003 + + + 2025-07-24T06:44:59.93 + 116 + 0 + + + 2025-07-24T06:45:00.9 + 115.1 + 0.9000015 + + + 2025-07-24T06:45:01 + 106.07 + 9.029999 + + + 2025-07-24T06:45:01.8 + 111.4 + -5.330002 + + + 2025-07-24T06:45:02 + 107.15 + 4.25 + + + 2025-07-24T06:45:02 + 102 + 5.1500015 + + + 2025-07-24T06:45:02 + 111.4 + -9.400002 + + + 2025-07-24T06:45:03 + 102.44 + 8.959999 + + + 2025-07-24T06:45:03 + 102.44 + 0 + + + 2025-07-24T06:45:02.8 + 110.3 + -7.8600006 + + + 2025-07-24T06:45:04 + 104.03 + 6.2700043 + + + 2025-07-24T06:45:04 + 107.8 + -3.7700043 + + + 2025-07-24T06:45:03.93 + 111.6 + -3.7999954 + + + 2025-07-24T06:45:05 + 103.82 + 7.779999 + + + 2025-07-24T06:45:04.8 + 108.1 + -4.279999 + + + 2025-07-24T06:45:05.93 + 109.6 + -1.5 + + + 2025-07-24T06:45:06 + 103.66 + 5.939995 + + + 2025-07-24T06:45:06 + 104 + -0.33999634 + + + 2025-07-24T06:45:06 + 108.7 + -4.699997 + + + 2025-07-24T06:45:07 + 99.81 + 8.889999 + + + 2025-07-24T06:45:07 + 107.8 + -7.9900055 + + + 2025-07-24T06:45:08 + 102.4 + 5.4000015 + + + 2025-07-24T06:45:08 + 99.85 + 2.550003 + + + 2025-07-24T06:45:07.9 + 106.9 + -7.050003 + + + 2025-07-24T06:45:09 + 98.16 + 8.739998 + + + 2025-07-24T06:45:08.97 + 106.1 + -7.939995 + + + 2025-07-24T06:45:10 + 98.63 + 7.470001 + + + 2025-07-24T06:45:09.93 + 103 + -4.3700027 + + + 2025-07-24T06:45:10 + 100.2 + 2.800003 + + + 2025-07-24T06:45:10.93 + 103.2 + -3 + + + 2025-07-24T06:45:11 + 96.72 + 6.4799957 + + + 2025-07-24T06:45:11 + 103.9 + -7.1800003 + + + 2025-07-24T06:45:12 + 93.44 + 10.459999 + + + 2025-07-24T06:45:12 + 98 + -4.5599976 + + + 2025-07-24T06:45:11.97 + 103.1 + -5.0999985 + + + 2025-07-24T06:45:13 + 96.42 + 6.6800003 + + + 2025-07-24T06:45:12.9 + 96.8 + -0.38000488 + + + 2025-07-24T06:45:14 + 91.92 + 4.880005 + + + 2025-07-24T06:45:14 + 94.7 + -2.7799988 + + + 2025-07-24T06:45:13.9 + 95.5 + -0.80000305 + + + 2025-07-24T06:45:15 + 92.41 + 3.0899963 + + + 2025-07-24T06:45:14.93 + 100.2 + -7.7899933 + + + 2025-07-24T06:45:15 + 98.9 + 1.2999954 + + + 2025-07-24T06:45:16 + 88.69 + 10.209999 + + + 2025-07-24T06:45:16 + 92.9 + -4.209999 + + + 2025-07-24T06:45:16.09 + 98 + -5.0999985 + + + 2025-07-24T06:45:17 + 90.55 + 7.449997 + + + 2025-07-24T06:45:17.09 + 97.3 + -6.75 + + + 2025-07-24T06:45:18 + 90.5 + 6.800003 + + + 2025-07-24T06:45:18 + 90.14 + 0.3600006 + + + 2025-07-24T06:45:18.09 + 94.2 + -4.0599976 + + + 2025-07-24T06:45:19 + 87.84 + 6.3600006 + + + 2025-07-24T06:45:19.09 + 95.6 + -7.760002 + + + 2025-07-24T06:45:20.09 + 94.6 + 1 + + + 2025-07-24T06:45:20 + 85.98 + 8.619995 + + + 2025-07-24T06:45:20 + 89.1 + -3.119995 + + + 2025-07-24T06:45:20 + 93.7 + -4.5999985 + + + 2025-07-24T06:45:21 + 85.55 + 8.149994 + + + 2025-07-24T06:45:21 + 93.3 + -7.75 + + + 2025-07-24T06:45:22 + 84.39 + 8.910004 + + + 2025-07-24T06:45:22 + 87.7 + -3.3099976 + + + 2025-07-24T06:45:22.09 + 93.9 + -6.2000046 + + + 2025-07-24T06:45:23 + 84.26 + 9.639999 + + + 2025-07-24T06:45:23.09 + 90.9 + -6.6399994 + + + 2025-07-24T06:45:24 + 83.82 + 7.080002 + + + 2025-07-24T06:45:24 + 83.3 + 0.51999664 + + + 2025-07-24T06:45:24.08 + 87.1 + -3.7999954 + + + 2025-07-24T06:45:24 + 88.7 + -1.5999985 + + + 2025-07-24T06:45:25 + 79.91 + 8.789993 + + + 2025-07-24T06:45:25 + 87.9 + -7.989998 + + + 2025-07-24T06:45:26 + 79.16 + 8.739998 + + + 2025-07-24T06:45:26 + 82.6 + -3.4399948 + + + 2025-07-24T06:45:26 + 84.9 + -2.300003 + + + 2025-07-24T06:45:27 + 79.38 + 5.5200043 + + + 2025-07-24T06:45:27.2 + 86.1 + -6.720001 + + + 2025-07-24T06:45:28 + 80.2 + 5.9000015 + + + 2025-07-24T06:45:28.19 + 85.3 + -5.100006 + + + 2025-07-24T06:45:28 + 78.16 + 7.1399994 + + + 2025-07-24T06:45:29 + 77.06 + 1.1000061 + + + 2025-07-24T06:45:29.2 + 80 + -2.9400024 + + + 2025-07-24T06:45:29.2 + 80.8 + -0.80000305 + + + 2025-07-24T06:45:30 + 77.98 + 2.8199997 + + + 2025-07-24T06:45:30 + 78.2 + -0.21999359 + + + 2025-07-24T06:45:30 + 82.8 + -4.600006 + + + 2025-07-24T06:45:31 + 74.25 + 8.550003 + + + 2025-07-24T06:45:31.19 + 81.8 + -7.550003 + + + 2025-07-24T06:45:32 + 74.76 + 7.040001 + + + 2025-07-24T06:45:32 + 75.7 + -0.9399948 + + + 2025-07-24T06:45:32.19 + 80.3 + -4.600006 + + + 2025-07-24T06:45:33.19 + 79 + 1.300003 + + + 2025-07-24T06:45:33 + 73.78 + 5.220001 + + + 2025-07-24T06:45:34 + 73.91 + -0.13000488 + + + 2025-07-24T06:45:33 + 78.7 + -4.7899933 + + + 2025-07-24T06:45:34 + 72.9 + 5.7999954 + + + 2025-07-24T06:45:34 + 76.3 + -3.4000015 + + + 2025-07-24T06:45:35 + 69.1 + 7.2000046 + + + 2025-07-24T06:45:35 + 77 + -7.9000015 + + + 2025-07-24T06:45:36 + 69.12 + 7.8799973 + + + 2025-07-24T06:45:36 + 71 + -1.8799973 + + + 2025-07-24T06:45:36.3 + 76 + -5 + + + 2025-07-24T06:45:37 + 69.72 + 6.279999 + + + 2025-07-24T06:45:37.3 + 75.1 + -5.3799973 + + + 2025-07-24T06:45:38 + 68.5 + 6.5999985 + + + 2025-07-24T06:45:37 + 73 + -4.5 + + + 2025-07-24T06:45:38 + 67.18 + 5.8199997 + + + 2025-07-24T06:45:38 + 73.3 + -6.1200027 + + + 2025-07-24T06:45:39 + 65.71 + 7.590004 + + + 2025-07-24T06:45:39 + 72.4 + -6.6900024 + + + 2025-07-24T06:45:40 + 67.21 + 5.1900024 + + + 2025-07-24T06:45:40 + 66.6 + 0.6100006 + + + 2025-07-24T06:45:40 + 71 + -4.4000015 + + + 2025-07-24T06:45:41 + 66.37 + 4.6299973 + + + 2025-07-24T06:45:41.3 + 69.7 + -3.3299942 + + + 2025-07-24T06:45:42 + 65.58 + 4.119995 + + + 2025-07-24T06:45:42 + 64.4 + 1.1800003 + + + 2025-07-24T06:45:42.29 + 69.7 + -5.2999954 + + + 2025-07-24T06:45:42 + 67.7 + 2 + + + 2025-07-24T06:45:43 + 65.64 + 2.0599976 + + + 2025-07-24T06:45:43 + 68.2 + -2.5599976 + + + 2025-07-24T06:45:44 + 61.75 + 6.449997 + + + 2025-07-24T06:45:44 + 62.2 + -0.45000076 + + + 2025-07-24T06:45:44.3 + 67.4 + -5.200001 + + + 2025-07-24T06:45:45 + 59.19 + 8.210003 + + + 2025-07-24T06:45:45.3 + 66.6 + -7.41 + + + 2025-07-24T06:45:46 + 57.31 + 9.289997 + + + 2025-07-24T06:45:46 + 57.1 + 0.2100029 + + + 2025-07-24T06:45:46.2 + 65.6 + -8.5 + + + 2025-07-24T06:45:47 + 56.78 + 8.82 + + + 2025-07-24T06:45:46 + 64.8 + -8.020004 + + + 2025-07-24T06:45:47 + 63.9 + 0.9000015 + + + 2025-07-24T06:45:48 + 57.5 + 6.4000015 + + + 2025-07-24T06:45:48 + 54.81 + 2.6899986 + + + 2025-07-24T06:45:48 + 60 + -5.1899986 + + + 2025-07-24T06:45:49 + 54.53 + 5.470001 + + + 2025-07-24T06:45:49 + 60 + -5.470001 + + + 2025-07-24T06:45:50 + 51.59 + 8.41 + + + 2025-07-24T06:45:50 + 55.4 + -3.8100014 + + + 2025-07-24T06:45:50.3 + 60.8 + -5.3999977 + + + 2025-07-24T06:45:51 + 52.92 + 7.880001 + + + 2025-07-24T06:45:51.43 + 58.4 + -5.4800034 + + + 2025-07-24T06:45:52 + 50.75 + 7.6500015 + + + 2025-07-24T06:45:52 + 53.6 + -2.8499985 + + + 2025-07-24T06:45:51 + 57.8 + -4.200001 + + + 2025-07-24T06:45:52 + 56.7 + 1.0999985 + + + 2025-07-24T06:45:53 + 50.29 + 6.41 + + + 2025-07-24T06:45:53 + 56.9 + -6.6100006 + + + 2025-07-24T06:45:54 + 49.35 + 7.550003 + + + 2025-07-24T06:45:54 + 51.1 + -1.75 + + + 2025-07-24T06:45:54 + 56 + -4.9000015 + + + 2025-07-24T06:45:55 + 46.66 + 9.34 + + + 2025-07-24T06:45:55.3 + 55.1 + -8.439999 + + + 2025-07-24T06:45:56 + 45.57 + 9.529999 + + + 2025-07-24T06:45:56 + 49 + -3.4300003 + + + 2025-07-24T06:45:56 + 49 + 0 + + + 2025-07-24T06:45:55 + 54.2 + -5.200001 + + + 2025-07-24T06:45:57 + 45.64 + 8.560001 + + + 2025-07-24T06:45:56 + 51.2 + -5.5600014 + + + 2025-07-24T06:45:57 + 52.3 + -1.0999985 + + + 2025-07-24T06:45:58 + 46.5 + 5.799999 + + + 2025-07-24T06:45:58 + 45.68 + 0.8199997 + + + 2025-07-24T06:45:58 + 51.6 + -5.919998 + + + 2025-07-24T06:45:59 + 43.72 + 7.8799973 + + + 2025-07-24T06:45:59.47 + 50.7 + -6.9799995 + + + 2025-07-24T06:46:00 + 43.6 + 7.1000023 + + + 2025-07-24T06:46:00 + 44.1 + -0.5 + + + 2025-07-24T06:46:00.5 + 47.9 + -3.800003 + + + 2025-07-24T06:46:01 + 41.74 + 6.16 + + + 2025-07-24T06:46:00 + 46.9 + -5.16 + + + 2025-07-24T06:46:02 + 41.01 + 5.890003 + + + 2025-07-24T06:46:01 + 47.9 + -6.890003 + + + 2025-07-24T06:46:02 + 43.2 + 4.700001 + + + 2025-07-24T06:46:02 + 46.9 + -3.7000008 + + + 2025-07-24T06:46:03 + 39.79 + 7.1100006 + + + 2025-07-24T06:46:03 + 46.1 + -6.3099976 + + + 2025-07-24T06:46:04 + 38.61 + 7.489998 + + + 2025-07-24T06:46:04 + 40.3 + -1.6899986 + + + 2025-07-24T06:46:04 + 40.3 + 0 + + + 2025-07-24T06:46:04.44 + 45.2 + -4.9000015 + + + 2025-07-24T06:46:05 + 38.08 + 7.119999 + + + 2025-07-24T06:46:04 + 43 + -4.919998 + + + 2025-07-24T06:46:06 + 35.13 + 7.869999 + + + 2025-07-24T06:46:06 + 37.6 + -2.4699974 + + + 2025-07-24T06:46:05 + 43.4 + -5.800003 + + + 2025-07-24T06:46:07 + 36.58 + 6.8199997 + + + 2025-07-24T06:46:06 + 42.6 + -6.0199966 + + + 2025-07-24T06:46:07 + 39.7 + 2.8999977 + + + 2025-07-24T06:46:08 + 35.7 + 4 + + + 2025-07-24T06:46:08 + 34.91 + 0.7900009 + + + 2025-07-24T06:46:08 + 39.7 + -4.790001 + + + 2025-07-24T06:46:08 + 39.7 + 0 + + + 2025-07-24T06:46:09 + 32.85 + 6.8500023 + + + 2025-07-24T06:46:09.5 + 39.8 + -6.950001 + + + 2025-07-24T06:46:10 + 31.57 + 8.23 + + + 2025-07-24T06:46:10 + 33.9 + -2.3300018 + + + 2025-07-24T06:46:09 + 38.8 + -4.8999977 + + + 2025-07-24T06:46:11 + 30.81 + 7.99 + + + 2025-07-24T06:46:10 + 36.4 + -5.590002 + + + 2025-07-24T06:46:11 + 35.5 + 0.9000015 + + + 2025-07-24T06:46:12 + 27.69 + 7.8099995 + + + 2025-07-24T06:46:12 + 31.6 + -3.9099998 + + + 2025-07-24T06:46:12 + 36.1 + -4.499998 + + + 2025-07-24T06:46:13 + 28.98 + 7.119999 + + + 2025-07-24T06:46:13 + 34.6 + -5.619999 + + + 2025-07-24T06:46:14 + 25.98 + 8.619999 + + + 2025-07-24T06:46:14 + 29.4 + -3.42 + + + 2025-07-24T06:46:13 + 34.3 + -4.8999996 + + + 2025-07-24T06:46:15 + 26.18 + 8.119999 + + + 2025-07-24T06:46:14 + 33.5 + -7.3199997 + + + 2025-07-24T06:46:16 + 23.59 + 9.91 + + + 2025-07-24T06:46:16 + 27 + -3.4099998 + + + 2025-07-24T06:46:15 + 32.7 + -5.700001 + + + 2025-07-24T06:46:16 + 29.7 + 3 + + + 2025-07-24T06:46:17 + 22.08 + 7.620001 + + + 2025-07-24T06:46:17.59 + 29.7 + -7.620001 + + + 2025-07-24T06:46:18 + 25.8 + 3.9000015 + + + 2025-07-24T06:46:18 + 23.07 + 2.7299995 + + + 2025-07-24T06:46:18.69 + 29.9 + -6.83 + + + 2025-07-24T06:46:19 + 19.92 + 9.98 + + + 2025-07-24T06:46:19 + 19.92 + 0 + + + 2025-07-24T06:46:18.69 + 27.5 + -7.58 + + + 2025-07-24T06:46:20 + 17.88 + 9.620001 + + + 2025-07-24T06:46:20 + 22.6 + -4.720001 + + + 2025-07-24T06:46:19.69 + 26.2 + -3.6000004 + + + 2025-07-24T06:46:21 + 19.26 + 6.9400005 + + + 2025-07-24T06:46:20 + 26.8 + -7.539999 + + + 2025-07-24T06:46:21 + 25.9 + 0.8999996 + + + 2025-07-24T06:46:22 + 16.65 + 9.25 + + + 2025-07-24T06:46:22 + 20.3 + -3.6499996 + + + 2025-07-24T06:46:22 + 25.2 + -4.9000015 + + + 2025-07-24T06:46:23 + 16.77 + 8.43 + + + 2025-07-24T06:46:22 + 24.3 + -7.529999 + + + 2025-07-24T06:46:24 + 15.7 + 8.599999 + + + 2025-07-24T06:46:24 + 18.3 + -2.5999994 + + + 2025-07-24T06:46:23 + 23.2 + -4.9000015 + + + 2025-07-24T06:46:25 + 13.9 + 9.300001 + + + 2025-07-24T06:46:24 + 20.2 + -6.300001 + + + 2025-07-24T06:46:26 + 14.2 + 6.000001 + + + 2025-07-24T06:46:25 + 21.5 + -7.3 + + + 2025-07-24T06:46:26 + 16.6 + 4.8999996 + + + 2025-07-24T06:46:26.69 + 20.7 + -4.1000004 + + + 2025-07-24T06:46:27 + 12.18 + 8.52 + + + 2025-07-24T06:46:27.69 + 18 + -5.8199997 + + + 2025-07-24T06:46:28 + 13.3 + 4.7 + + + 2025-07-24T06:46:28 + 10.58 + 2.7200003 + + + 2025-07-24T06:46:27.69 + 17.8 + -7.2199993 + + + 2025-07-24T06:46:29 + 10.78 + 7.0199995 + + + 2025-07-24T06:46:28.69 + 18.2 + -7.420001 + + + 2025-07-24T06:46:30 + 11.44 + 6.760001 + + + 2025-07-24T06:46:30 + 11.2 + 0.23999977 + + + 2025-07-24T06:46:29.69 + 14.3 + -3.1000004 + + + 2025-07-24T06:46:30.8 + 16 + -1.6999998 + + + 2025-07-24T06:46:31 + 8.61 + 7.3900003 + + + 2025-07-24T06:46:31.79 + 15.3 + -6.6900005 + + + 2025-07-24T06:46:32 + 7.73 + 7.57 + + + 2025-07-24T06:46:32 + 9.9 + -2.1699996 + + + 2025-07-24T06:46:31.79 + 14.3 + -4.4000006 + + + 2025-07-24T06:46:33 + 5.47 + 8.83 + + + 2025-07-24T06:46:32.8 + 12.1 + -6.6300006 + + + 2025-07-24T06:46:34 + 4.6 + 7.5000005 + + + 2025-07-24T06:46:34 + 7.3 + -2.7000003 + + + 2025-07-24T06:46:33.8 + 12.5 + -5.2 + + + 2025-07-24T06:46:35 + 4.67 + 7.83 + + + 2025-07-24T06:46:34.8 + 11.6 + -6.9300003 + + + 2025-07-24T06:46:35.8 + 8.3 + 3.3000002 + + + 2025-07-24T06:46:36 + 3.32 + 4.9800005 + + + 2025-07-24T06:46:36 + 4.8 + -1.4800003 + + + 2025-07-24T06:46:36.8 + 8.3 + -3.5 + + + 2025-07-24T06:46:37 + 4.02 + 4.28 + + + 2025-07-24T06:46:36.8 + 9.1 + -5.0800004 + + + 2025-07-24T06:46:38 + 3.2 + 5.9000006 + + + 2025-07-24T06:46:38 + 359.52 + 3.6800232 + + + 2025-07-24T06:46:37.7 + 6.3 + -6.779999 + + + 2025-07-24T06:46:39 + 359.69 + 6.6099854 + + + 2025-07-24T06:46:38.8 + 6.9 + -7.2099915 + + + 2025-07-24T06:46:40 + 358.77 + 8.130005 + + + 2025-07-24T06:46:39.8 + 6.2 + -7.430023 + + + 2025-07-24T06:46:40 + 1.1 + 5.1 + + + 2025-07-24T06:46:40.79 + 2.4 + -1.3000001 + + + 2025-07-24T06:46:41 + 357.39 + 5.0099792 + + + 2025-07-24T06:46:40.79 + 4.2 + -6.8099976 + + + 2025-07-24T06:46:42 + 357.07 + 7.130005 + + + 2025-07-24T06:46:42 + 359.1 + -2.0299988 + + + 2025-07-24T06:46:41.79 + 3.2 + -4.100006 + + + 2025-07-24T06:46:43 + 354.82 + 8.380005 + + + 2025-07-24T06:46:42.8 + 2.5 + -7.6799927 + + + 2025-07-24T06:46:44 + 354.11 + 8.390015 + + + 2025-07-24T06:46:44 + 355.8 + -1.6900024 + + + 2025-07-24T06:46:43.79 + 0 + -4.200012 + + + 2025-07-24T06:46:45 + 353.62 + 6.380005 + + + 2025-07-24T06:46:44.8 + 1.1 + -7.480011 + + + 2025-07-24T06:46:45.8 + 359.6 + 1.5 + + + 2025-07-24T06:46:46 + 354.37 + 5.230011 + + + 2025-07-24T06:46:46 + 354.5 + -0.13000488 + + + 2025-07-24T06:46:46 + 1.3 + -6.799988 + + + 2025-07-24T06:46:47 + 352.17 + 9.129974 + + + 2025-07-24T06:46:46.93 + 359.6 + -7.4299927 + + + 2025-07-24T06:46:48 + 351.9 + 7.700012 + + + 2025-07-24T06:46:48 + 348.82 + 3.0799866 + + + 2025-07-24T06:46:47.9 + 356.9 + -8.079987 + + + 2025-07-24T06:46:49 + 347.34 + 9.559998 + + + 2025-07-24T06:46:48.94 + 355.1 + -7.76001 + + + 2025-07-24T06:46:49.94 + 355.1 + 0 + + + 2025-07-24T06:46:50 + 346.71 + 8.390015 + + + 2025-07-24T06:46:50 + 350 + -3.2900085 + + + 2025-07-24T06:46:50 + 354.4 + -4.399994 + + + 2025-07-24T06:46:51 + 348.36 + 6.0400085 + + + 2025-07-24T06:46:51 + 351.9 + -3.5400085 + + + 2025-07-24T06:46:52 + 346.44 + 5.4599915 + + + 2025-07-24T06:46:52 + 347.6 + -1.1600037 + + + 2025-07-24T06:46:51.94 + 351 + -3.399994 + + + 2025-07-24T06:46:53 + 344.67 + 6.3299866 + + + 2025-07-24T06:46:52.97 + 351.6 + -6.9299927 + + + 2025-07-24T06:46:54 + 343.23 + 8.369995 + + + 2025-07-24T06:46:54 + 345.2 + -1.9700012 + + + 2025-07-24T06:46:53.93 + 350.7 + -5.5 + + + 2025-07-24T06:46:54.93 + 347.4 + 3.3000183 + + + 2025-07-24T06:46:55 + 342.75 + 4.649994 + + + 2025-07-24T06:46:55 + 347.4 + -4.649994 + + + 2025-07-24T06:46:56 + 340.11 + 7.2900085 + + + 2025-07-24T06:46:56 + 342.7 + -2.5900269 + + + 2025-07-24T06:46:55.93 + 347.8 + -5.0999756 + + + 2025-07-24T06:46:57 + 338.06 + 9.73999 + + + 2025-07-24T06:46:56.9 + 346.9 + -8.839996 + + + 2025-07-24T06:46:58 + 340.8 + 6.100006 + + + 2025-07-24T06:46:57.97 + 346 + -5.200012 + + + 2025-07-24T06:46:58 + 340.32 + 5.6799927 + + + 2025-07-24T06:46:59 + 339.06 + 1.2600098 + + + 2025-07-24T06:46:58.9 + 345.3 + -6.23999 + + + 2025-07-24T06:46:59 + 342.5 + 2.7999878 + + + 2025-07-24T06:47:00 + 336.84 + 5.6600037 + + + 2025-07-24T06:47:00 + 339.3 + -2.4599915 + + + 2025-07-24T06:47:00 + 342.5 + -3.2000122 + + + 2025-07-24T06:47:00 + 342.5 + 0 + + + 2025-07-24T06:47:01 + 336.44 + 6.0599976 + + + 2025-07-24T06:47:00.93 + 341.6 + -5.1600037 + + + 2025-07-24T06:47:02 + 334.02 + 7.580017 + + + 2025-07-24T06:47:02 + 336.9 + -2.880005 + + + 2025-07-24T06:47:02.08 + 342 + -5.100006 + + + 2025-07-24T06:47:03.09 + 339.6 + 2.399994 + + + 2025-07-24T06:47:03 + 334.34 + 5.26001 + + + 2025-07-24T06:47:04 + 332.32 + 2.019989 + + + 2025-07-24T06:47:04 + 338.3 + -5.9799805 + + + 2025-07-24T06:47:04 + 336.8 + 1.5 + + + 2025-07-24T06:47:04 + 339.5 + -2.7000122 + + + 2025-07-24T06:47:05 + 332.7 + 6.799988 + + + 2025-07-24T06:47:05 + 337.6 + -4.899994 + + + 2025-07-24T06:47:06 + 331.86 + 5.7400208 + + + 2025-07-24T06:47:06 + 331.8 + 0.05999756 + + + 2025-07-24T06:47:06 + 337.5 + -5.700012 + + + 2025-07-24T06:47:07 + 330.34 + 7.1600037 + + + 2025-07-24T06:47:07 + 336.7 + -6.360016 + + + 2025-07-24T06:47:08 + 331 + 5.700012 + + + 2025-07-24T06:47:08.08 + 334.2 + -3.2000122 + + + 2025-07-24T06:47:08 + 330.79 + 3.4100037 + + + 2025-07-24T06:47:08 + 335.2 + -4.4100037 + + + 2025-07-24T06:47:09 + 324.38 + 10.820007 + + + 2025-07-24T06:47:09 + 334.1 + -9.720001 + + + 2025-07-24T06:47:10 + 328.62 + 5.480011 + + + 2025-07-24T06:47:10 + 327.3 + 1.3200073 + + + 2025-07-24T06:47:10.09 + 333.3 + -6 + + + 2025-07-24T06:47:11 + 325.79 + 7.5099792 + + + 2025-07-24T06:47:11.07 + 331.2 + -5.4100037 + + + 2025-07-24T06:47:12 + 323.61 + 7.590027 + + + 2025-07-24T06:47:12 + 327 + -3.3900146 + + + 2025-07-24T06:47:12.09 + 330.1 + -3.100006 + + + 2025-07-24T06:47:13.19 + 330.8 + -0.6999817 + + + 2025-07-24T06:47:13 + 322.48 + 8.319977 + + + 2025-07-24T06:47:13 + 328.1 + -5.619995 + + + 2025-07-24T06:47:14 + 321.35 + 6.75 + + + 2025-07-24T06:47:14 + 324.4 + -3.0499878 + + + 2025-07-24T06:47:14.19 + 328.8 + -4.399994 + + + 2025-07-24T06:47:15 + 322.15 + 6.649994 + + + 2025-07-24T06:47:15.19 + 327.9 + -5.75 + + + 2025-07-24T06:47:16 + 319.55 + 8.350006 + + + 2025-07-24T06:47:16 + 322.7 + -3.1500244 + + + 2025-07-24T06:47:16.09 + 325.9 + -3.1999817 + + + 2025-07-24T06:47:16.09 + 325.9 + 0 + + + 2025-07-24T06:47:17 + 319.31 + 6.5899963 + + + 2025-07-24T06:47:17.09 + 326.2 + -6.8900146 + + + 2025-07-24T06:47:17 + 325.2 + 1 + + + 2025-07-24T06:47:18 + 320.4 + 4.8000183 + + + 2025-07-24T06:47:18 + 317.51 + 2.8899841 + + + 2025-07-24T06:47:18 + 322.1 + -4.5899963 + + + 2025-07-24T06:47:19 + 313.45 + 8.649994 + + + 2025-07-24T06:47:19 + 322.1 + -8.649994 + + + 2025-07-24T06:47:20 + 315.59 + 6.51001 + + + 2025-07-24T06:47:20 + 318.1 + -2.5100098 + + + 2025-07-24T06:47:20.09 + 322.5 + -4.399994 + + + 2025-07-24T06:47:21 + 315.3 + 7.200012 + + + 2025-07-24T06:47:21.09 + 321.7 + -6.4000244 + + + 2025-07-24T06:47:22 + 311.65 + 10.050018 + + + 2025-07-24T06:47:22 + 315.7 + -4.0500183 + + + 2025-07-24T06:47:22.19 + 317.8 + -2.0999756 + + + 2025-07-24T06:47:22 + 319.9 + -2.100006 + + + 2025-07-24T06:47:23 + 311.9 + 8 + + + 2025-07-24T06:47:23 + 318.9 + -7 + + + 2025-07-24T06:47:24 + 310.74 + 8.160004 + + + 2025-07-24T06:47:24 + 313.2 + -2.460022 + + + 2025-07-24T06:47:24 + 318.7 + -5.5 + + + 2025-07-24T06:47:25 + 310.81 + 7.8900146 + + + 2025-07-24T06:47:25.3 + 317.1 + -6.2900085 + + + 2025-07-24T06:47:26 + 305.93 + 11.170013 + + + 2025-07-24T06:47:26 + 311.4 + -5.470001 + + + 2025-07-24T06:47:26.3 + 316.4 + -5 + + + 2025-07-24T06:47:27 + 308.93 + 7.470001 + + + 2025-07-24T06:47:26 + 315.3 + -6.369995 + + + 2025-07-24T06:47:27.3 + 322.8 + -7.5 + + + 2025-07-24T06:47:28 + 309.1 + 13.699982 + + + 2025-07-24T06:47:28 + 305.36 + 3.7400208 + + + 2025-07-24T06:47:28.29 + 313.6 + -8.240021 + + + 2025-07-24T06:47:29 + 305.86 + 7.7400208 + + + 2025-07-24T06:47:29.3 + 312.8 + -6.9400024 + + + 2025-07-24T06:47:30 + 304.25 + 8.549988 + + + 2025-07-24T06:47:30 + 306.5 + -2.25 + + + 2025-07-24T06:47:30.3 + 310.6 + -4.100006 + + + 2025-07-24T06:47:31 + 303.51 + 7.0899963 + + + 2025-07-24T06:47:31.3 + 308.4 + -4.889984 + + + 2025-07-24T06:47:32 + 304.47 + 3.9299927 + + + 2025-07-24T06:47:32 + 303.8 + 0.6700134 + + + 2025-07-24T06:47:31 + 309.8 + -6 + + + 2025-07-24T06:47:32 + 305.7 + 4.0999756 + + + 2025-07-24T06:47:32 + 305.7 + 0 + + + 2025-07-24T06:47:33 + 301.46 + 4.2400208 + + + 2025-07-24T06:47:33 + 308.1 + -6.6400146 + + + 2025-07-24T06:47:34 + 299.77 + 8.330017 + + + 2025-07-24T06:47:34 + 302.1 + -2.330017 + + + 2025-07-24T06:47:34.3 + 307.1 + -5 + + + 2025-07-24T06:47:35 + 300.82 + 6.279999 + + + 2025-07-24T06:47:35.3 + 303.3 + -2.4799805 + + + 2025-07-24T06:47:36 + 298.46 + 4.8399963 + + + 2025-07-24T06:47:36 + 300.6 + -2.1400146 + + + 2025-07-24T06:47:35 + 302.7 + -2.100006 + + + 2025-07-24T06:47:37 + 297.24 + 5.460022 + + + 2025-07-24T06:47:36 + 304.5 + -7.26001 + + + 2025-07-24T06:47:37 + 303.8 + 0.7000122 + + + 2025-07-24T06:47:38 + 298.4 + 5.399994 + + + 2025-07-24T06:47:38 + 296.39 + 2.0099792 + + + 2025-07-24T06:47:38 + 301.8 + -5.409973 + + + 2025-07-24T06:47:39 + 294.03 + 7.769989 + + + 2025-07-24T06:47:39.3 + 301.1 + -7.0700073 + + + 2025-07-24T06:47:40 + 296.08 + 5.0200195 + + + 2025-07-24T06:47:40 + 295.6 + 0.47998047 + + + 2025-07-24T06:47:40.43 + 301.3 + -5.6999817 + + + 2025-07-24T06:47:41 + 294.79 + 6.5099792 + + + 2025-07-24T06:47:40 + 300.2 + -5.4100037 + + + 2025-07-24T06:47:42 + 292.35 + 7.850006 + + + 2025-07-24T06:47:41 + 299.4 + -7.049988 + + + 2025-07-24T06:47:42 + 293.1 + 6.299988 + + + 2025-07-24T06:47:42 + 298.6 + -5.5 + + + 2025-07-24T06:47:42 + 298.6 + 0 + + + 2025-07-24T06:47:43 + 293.67 + 4.9299927 + + + 2025-07-24T06:47:43 + 295.4 + -1.7299805 + + + 2025-07-24T06:47:44 + 291.39 + 4.0099792 + + + 2025-07-24T06:47:44 + 293.3 + -1.9099731 + + + 2025-07-24T06:47:44.44 + 296.9 + -3.600006 + + + 2025-07-24T06:47:45 + 290.6 + 6.299988 + + + 2025-07-24T06:47:44 + 296.1 + -5.5 + + + 2025-07-24T06:47:46 + 288.54 + 7.5599976 + + + 2025-07-24T06:47:46 + 290.2 + -1.6600037 + + + 2025-07-24T06:47:45 + 295.3 + -5.0999756 + + + 2025-07-24T06:47:46 + 294.7 + 0.5999756 + + + 2025-07-24T06:47:47 + 286.45 + 8.25 + + + 2025-07-24T06:47:47 + 294.7 + -8.25 + + + 2025-07-24T06:47:48 + 288.1 + 6.600006 + + + 2025-07-24T06:47:48 + 285.4 + 2.7000122 + + + 2025-07-24T06:47:48 + 285.4 + 0 + + + 2025-07-24T06:47:48.4 + 293 + -7.600006 + + + 2025-07-24T06:47:49 + 286.2 + 6.799988 + + + 2025-07-24T06:47:49 + 286.2 + 0 + + + 2025-07-24T06:47:49.43 + 291.9 + -5.6999817 + + + 2025-07-24T06:47:50 + 284.18 + 7.720001 + + + 2025-07-24T06:47:50 + 287.6 + -3.4200134 + + + 2025-07-24T06:47:49 + 291.1 + -3.5 + + + 2025-07-24T06:47:51 + 283.63 + 7.470001 + + + 2025-07-24T06:47:50 + 290.2 + -6.5700073 + + + 2025-07-24T06:47:51 + 287.2 + 3 + + + 2025-07-24T06:47:51 + 287.2 + 0 + + + 2025-07-24T06:47:52 + 281.44 + 5.76001 + + + 2025-07-24T06:47:52 + 284.4 + -2.9599915 + + + 2025-07-24T06:47:52 + 288.2 + -3.8000183 + + + 2025-07-24T06:47:53 + 281.11 + 7.090027 + + + 2025-07-24T06:47:53.43 + 287.4 + -6.2900085 + + + 2025-07-24T06:47:54 + 278.87 + 8.529999 + + + 2025-07-24T06:47:54 + 281.4 + -2.5299988 + + + 2025-07-24T06:47:54.43 + 284.4 + -3 + + + 2025-07-24T06:47:55 + 279.24 + 5.1600037 + + + 2025-07-24T06:47:54 + 283.1 + -3.8600159 + + + 2025-07-24T06:47:56 + 276.7 + 6.399994 + + + 2025-07-24T06:47:56 + 279.2 + -2.5 + + + 2025-07-24T06:47:55 + 282.1 + -2.899994 + + + 2025-07-24T06:47:56 + 281.2 + 0.8999939 + + + 2025-07-24T06:47:57 + 275.97 + 5.230011 + + + 2025-07-24T06:47:57 + 282.9 + -6.9299927 + + + 2025-07-24T06:47:58 + 278.3 + 4.600006 + + + 2025-07-24T06:47:58 + 274.07 + 4.2299805 + + + 2025-07-24T06:47:58.58 + 281.9 + -7.8299866 + + + 2025-07-24T06:47:59 + 275.32 + 6.5799866 + + + 2025-07-24T06:47:58.58 + 279 + -3.6799927 + + + 2025-07-24T06:48:00 + 273.34 + 5.6600037 + + + 2025-07-24T06:48:00 + 274.2 + -0.86001587 + + + 2025-07-24T06:48:00 + 274.2 + 0 + + + 2025-07-24T06:47:59 + 278 + -3.7999878 + + + 2025-07-24T06:48:01 + 272.39 + 5.6099854 + + + 2025-07-24T06:48:00 + 279.4 + -7.0099792 + + + 2025-07-24T06:48:01 + 278.5 + 0.8999939 + + + 2025-07-24T06:48:02 + 269.99 + 8.51001 + + + 2025-07-24T06:48:02 + 273 + -3.0100098 + + + 2025-07-24T06:48:02 + 276.2 + -3.2000122 + + + 2025-07-24T06:48:03 + 271.49 + 4.710022 + + + 2025-07-24T06:48:03.58 + 275.3 + -3.8099976 + + + 2025-07-24T06:48:04 + 268.96 + 6.3399963 + + + 2025-07-24T06:48:04 + 270.6 + -1.6400146 + + + 2025-07-24T06:48:03 + 275.9 + -5.299988 + + + 2025-07-24T06:48:05 + 267.88 + 8.019989 + + + 2025-07-24T06:48:05 + 274.8 + -6.919983 + + + 2025-07-24T06:48:06 + 265.17 + 9.629974 + + + 2025-07-24T06:48:05.58 + 274 + -8.829987 + + + 2025-07-24T06:48:06 + 268.8 + 5.200012 + + + 2025-07-24T06:48:07 + 273.2 + -4.4000244 + + + 2025-07-24T06:48:07 + 266.03 + 7.1700134 + + + 2025-07-24T06:48:07.58 + 272.3 + -6.269989 + + + 2025-07-24T06:48:08 + 267.5 + 4.799988 + + + 2025-07-24T06:48:08 + 265.01 + 2.4899902 + + + 2025-07-24T06:48:08 + 271.2 + -6.1900024 + + + 2025-07-24T06:48:09 + 262.96 + 8.240021 + + + 2025-07-24T06:48:09 + 270.6 + -7.6400146 + + + 2025-07-24T06:48:10 + 261.68 + 8.920013 + + + 2025-07-24T06:48:10 + 265 + -3.3200073 + + + 2025-07-24T06:48:10 + 269.7 + -4.700012 + + + 2025-07-24T06:48:11 + 266.3 + 3.4000244 + + + 2025-07-24T06:48:11 + 261.3 + 5 + + + 2025-07-24T06:48:12 + 265.2 + -3.9000244 + + + 2025-07-24T06:48:12 + 259.1 + 6.100006 + + + 2025-07-24T06:48:12 + 262.2 + -3.100006 + + + 2025-07-24T06:48:12.69 + 267.1 + -4.899994 + + + 2025-07-24T06:48:13 + 259.67 + 7.4299927 + + + 2025-07-24T06:48:13 + 263.8 + -4.1299744 + + + 2025-07-24T06:48:14 + 257.57 + 6.2299805 + + + 2025-07-24T06:48:14 + 259.9 + -2.3299866 + + + 2025-07-24T06:48:14 + 259.9 + 0 + + + 2025-07-24T06:48:14 + 262.9 + -3 + + + 2025-07-24T06:48:15 + 256.75 + 6.149994 + + + 2025-07-24T06:48:15 + 264.3 + -7.549988 + + + 2025-07-24T06:48:16 + 263 + 1.2999878 + + + 2025-07-24T06:48:16 + 257.32 + 5.6799927 + + + 2025-07-24T06:48:16 + 257.3 + 0.020019531 + + + 2025-07-24T06:48:17 + 262.3 + -5 + + + 2025-07-24T06:48:17 + 254.2 + 8.099991 + + + 2025-07-24T06:48:17 + 261.5 + -7.300003 + + + 2025-07-24T06:48:18 + 256.6 + 4.899994 + + + 2025-07-24T06:48:18 + 252.66 + 3.9400024 + + + 2025-07-24T06:48:18 + 260.7 + -8.040009 + + + 2025-07-24T06:48:19 + 253.83 + 6.8700104 + + + 2025-07-24T06:48:19 + 259.4 + -5.569992 + + + 2025-07-24T06:48:20 + 251.33 + 8.069992 + + + 2025-07-24T06:48:20 + 259 + -7.669998 + + + 2025-07-24T06:48:20 + 253.5 + 5.5 + + + 2025-07-24T06:48:21 + 258.3 + -4.799988 + + + 2025-07-24T06:48:21 + 248.43 + 9.869995 + + + 2025-07-24T06:48:22 + 251.8 + -3.3700104 + + + 2025-07-24T06:48:22 + 248.54 + 3.2600098 + + + 2025-07-24T06:48:22 + 251.6 + -3.0600128 + + + 2025-07-24T06:48:22 + 251.8 + -0.19999695 + + + 2025-07-24T06:48:23 + 245.47 + 6.330002 + + + 2025-07-24T06:48:23 + 252.3 + -6.830002 + + + 2025-07-24T06:48:24 + 246.84 + 5.4600067 + + + 2025-07-24T06:48:24 + 249.8 + -2.9600067 + + + 2025-07-24T06:48:24 + 254.5 + -4.699997 + + + 2025-07-24T06:48:25 + 245.71 + 8.789993 + + + 2025-07-24T06:48:25 + 253.4 + -7.689987 + + + 2025-07-24T06:48:25.8 + 252.5 + 0.8999939 + + + 2025-07-24T06:48:26 + 244.31 + 8.190002 + + + 2025-07-24T06:48:26 + 247 + -2.6900024 + + + 2025-07-24T06:48:25.8 + 251.7 + -4.699997 + + + 2025-07-24T06:48:27 + 242.16 + 9.539993 + + + 2025-07-24T06:48:26.8 + 253.4 + -11.23999 + + + 2025-07-24T06:48:26.8 + 253.4 + 0 + + + 2025-07-24T06:48:28 + 246.1 + 7.299988 + + + 2025-07-24T06:48:28 + 241.87 + 4.230011 + + + 2025-07-24T06:48:27.8 + 250.1 + -8.230011 + + + 2025-07-24T06:48:29 + 242.68 + 7.4200134 + + + 2025-07-24T06:48:28.79 + 249.3 + -6.6200104 + + + 2025-07-24T06:48:29.79 + 246.7 + 2.600006 + + + 2025-07-24T06:48:30 + 240.41 + 6.2899933 + + + 2025-07-24T06:48:30 + 243.1 + -2.6900024 + + + 2025-07-24T06:48:30.8 + 244 + -0.8999939 + + + 2025-07-24T06:48:31 + 239.49 + 4.5099945 + + + 2025-07-24T06:48:30.8 + 244 + -4.5099945 + + + 2025-07-24T06:48:32 + 239.08 + 4.919998 + + + 2025-07-24T06:48:32 + 240.8 + -1.7200012 + + + 2025-07-24T06:48:31.8 + 240.8 + 0 + + + 2025-07-24T06:48:33 + 236.02 + 4.779999 + + + 2025-07-24T06:48:33 + 236.02 + 0 + + + 2025-07-24T06:48:32.8 + 245 + -8.979996 + + + 2025-07-24T06:48:34 + 235.21 + 9.789993 + + + 2025-07-24T06:48:34 + 238.5 + -3.2899933 + + + 2025-07-24T06:48:33.7 + 243.8 + -5.300003 + + + 2025-07-24T06:48:34.8 + 242.8 + 1 + + + 2025-07-24T06:48:35 + 235.76 + 7.0400085 + + + 2025-07-24T06:48:36 + 238.3 + -2.5400085 + + + 2025-07-24T06:48:36 + 231.33 + 6.970001 + + + 2025-07-24T06:48:36 + 237 + -5.669998 + + + 2025-07-24T06:48:35.79 + 240.7 + -3.699997 + + + 2025-07-24T06:48:37 + 231.93 + 8.770004 + + + 2025-07-24T06:48:36.9 + 239.6 + -7.6700134 + + + 2025-07-24T06:48:38 + 234.8 + 4.800003 + + + 2025-07-24T06:48:37.8 + 236.8 + -2 + + + 2025-07-24T06:48:38 + 232.31 + 4.4900055 + + + 2025-07-24T06:48:39 + 230.2 + 2.1100006 + + + 2025-07-24T06:48:38.93 + 235.8 + -5.600006 + + + 2025-07-24T06:48:39.93 + 237.3 + -1.5 + + + 2025-07-24T06:48:40 + 226.86 + 10.440002 + + + 2025-07-24T06:48:40 + 232.9 + -6.0399933 + + + 2025-07-24T06:48:40 + 232.9 + 0 + + + 2025-07-24T06:48:39.93 + 234 + -1.1000061 + + + 2025-07-24T06:48:41 + 229.87 + 4.130005 + + + 2025-07-24T06:48:40.93 + 234 + -4.130005 + + + 2025-07-24T06:48:42 + 227.46 + 6.5399933 + + + 2025-07-24T06:48:42 + 231.1 + -3.6399994 + + + 2025-07-24T06:48:41.8 + 234.7 + -3.5999908 + + + 2025-07-24T06:48:42.93 + 234 + 0.69999695 + + + 2025-07-24T06:48:43 + 227.86 + 6.1399994 + + + 2025-07-24T06:48:44 + 227.64 + 0.22000122 + + + 2025-07-24T06:48:43.97 + 230.5 + -2.8600006 + + + 2025-07-24T06:48:44 + 229.9 + 0.6000061 + + + 2025-07-24T06:48:45 + 232.9 + -3 + + + 2025-07-24T06:48:45 + 226.27 + 6.6299896 + + + 2025-07-24T06:48:45 + 232.3 + -6.029999 + + + 2025-07-24T06:48:46 + 224.01 + 8.290009 + + + 2025-07-24T06:48:46 + 227.7 + -3.6900024 + + + 2025-07-24T06:48:45.93 + 234.8 + -7.100006 + + + 2025-07-24T06:48:47 + 223.27 + 11.529999 + + + 2025-07-24T06:48:46.9 + 233.2 + -9.929993 + + + 2025-07-24T06:48:48 + 226.1 + 7.099991 + + + 2025-07-24T06:48:47.97 + 229.9 + -3.7999878 + + + 2025-07-24T06:48:48 + 222.96 + 6.939987 + + + 2025-07-24T06:48:48.97 + 229 + -6.0399933 + + + 2025-07-24T06:48:49 + 222.41 + 6.5899963 + + + 2025-07-24T06:48:50 + 227 + -4.5899963 + + + 2025-07-24T06:48:50 + 218.56 + 8.440002 + + + 2025-07-24T06:48:50 + 218.56 + 0 + + + 2025-07-24T06:48:50 + 223.7 + -5.1399994 + + + 2025-07-24T06:48:49.98 + 227 + -3.300003 + + + 2025-07-24T06:48:51 + 219.43 + 7.5700073 + + + 2025-07-24T06:48:50.93 + 226.1 + -6.6700134 + + + 2025-07-24T06:48:52 + 217.69 + 8.410004 + + + 2025-07-24T06:48:52 + 219.4 + -1.7099915 + + + 2025-07-24T06:48:51.96 + 225 + -5.600006 + + + 2025-07-24T06:48:53.09 + 223.8 + 1.199997 + + + 2025-07-24T06:48:53.09 + 223.8 + 0 + + + 2025-07-24T06:48:53 + 219.32 + 4.4799957 + + + 2025-07-24T06:48:54 + 222.8 + -3.4799957 + + + 2025-07-24T06:48:54 + 220.4 + 2.4000092 + + + 2025-07-24T06:48:54 + 218.2 + 2.199997 + + + 2025-07-24T06:48:55 + 215 + 3.199997 + + + 2025-07-24T06:48:55 + 221.19 + -6.1900024 + + + 2025-07-24T06:48:55.09 + 215 + 6.1900024 + + + 2025-07-24T06:48:56 + 222.52 + -7.5200043 + + + 2025-07-24T06:48:56 + 220.8 + 1.7200012 + + + 2025-07-24T06:48:56.08 + 221.5 + -0.69999695 + + + 2025-07-24T06:48:57 + 225.32 + -3.8200073 + + + 2025-07-24T06:48:57.09 + 221.4 + 3.9200134 + + + 2025-07-24T06:48:58.08 + 216.4 + 5 + + + 2025-07-24T06:48:58 + 223.3 + -6.900009 + + + 2025-07-24T06:48:58 + 226.12 + -2.819992 + + + 2025-07-24T06:48:59 + 218 + 8.119995 + + + 2025-07-24T06:48:59 + 228.48 + -10.479996 + + + 2025-07-24T06:48:59.09 + 222.4 + 6.080002 + + + 2025-07-24T06:49:00 + 228.8 + -6.400009 + + + 2025-07-24T06:49:00 + 228.8 + 0 + + + 2025-07-24T06:49:00 + 227.1 + 1.699997 + + + 2025-07-24T06:49:00 + 220.3 + 6.800003 + + + 2025-07-24T06:49:01 + 230.75 + -10.449997 + + + 2025-07-24T06:49:01.09 + 223.9 + 6.850006 + + + 2025-07-24T06:49:02 + 232.04 + -8.139999 + + + 2025-07-24T06:49:02 + 229.1 + 2.9399872 + + + 2025-07-24T06:49:02.19 + 224.9 + 4.200012 + + + 2025-07-24T06:49:03 + 225.9 + -1 + + + 2025-07-24T06:49:03 + 225.9 + 0 + + + 2025-07-24T06:49:03 + 234.16 + -8.26001 + + + 2025-07-24T06:49:04 + 226.6 + 7.5599976 + + + 2025-07-24T06:49:04 + 237.48 + -10.87999 + + + 2025-07-24T06:49:04 + 233.3 + 4.1799927 + + + 2025-07-24T06:49:04.09 + 228.1 + 5.199997 + + + 2025-07-24T06:49:05 + 238.54 + -10.439987 + + + 2025-07-24T06:49:05.09 + 229.2 + 9.339996 + + + 2025-07-24T06:49:06 + 238.9 + -9.699997 + + + 2025-07-24T06:49:06 + 236.7 + 2.199997 + + + 2025-07-24T06:49:06.19 + 232 + 4.699997 + + + 2025-07-24T06:49:07 + 239.9 + -7.899994 + + + 2025-07-24T06:49:07.19 + 231 + 8.899994 + + + 2025-07-24T06:49:08 + 231.9 + -0.8999939 + + + 2025-07-24T06:49:08 + 240.1 + -8.200012 + + + 2025-07-24T06:49:08 + 244.36 + -4.2599945 + + + 2025-07-24T06:49:09 + 236 + 8.360001 + + + 2025-07-24T06:49:09 + 243.97 + -7.970001 + + + 2025-07-24T06:49:09.19 + 236 + 7.970001 + + + 2025-07-24T06:49:10 + 246.16 + -10.160004 + + + 2025-07-24T06:49:10 + 241.8 + 4.3600006 + + + 2025-07-24T06:49:10.09 + 237.5 + 4.300003 + + + 2025-07-24T06:49:11 + 246.58 + -9.080002 + + + 2025-07-24T06:49:11.19 + 236.6 + 9.979996 + + + 2025-07-24T06:49:12 + 249.11 + -12.5099945 + + + 2025-07-24T06:49:12 + 249.11 + 0 + + + 2025-07-24T06:49:12 + 237.9 + 11.210007 + + + 2025-07-24T06:49:12 + 244.3 + -6.400009 + + + 2025-07-24T06:49:13 + 239.2 + 5.100006 + + + 2025-07-24T06:49:13 + 251.33 + -12.130005 + + + 2025-07-24T06:49:13.2 + 240.7 + 10.630005 + + + 2025-07-24T06:49:14 + 251.77 + -11.070007 + + + 2025-07-24T06:49:14 + 249.7 + 2.0700073 + + + 2025-07-24T06:49:14.2 + 244.1 + 5.599991 + + + 2025-07-24T06:49:15 + 254.21 + -10.110001 + + + 2025-07-24T06:49:15.29 + 243.1 + 11.110001 + + + 2025-07-24T06:49:16 + 256.36 + -13.259979 + + + 2025-07-24T06:49:16 + 256.36 + 0 + + + 2025-07-24T06:49:16 + 251.9 + 4.4599915 + + + 2025-07-24T06:49:16.3 + 244.1 + 7.799988 + + + 2025-07-24T06:49:17 + 257.87 + -13.769989 + + + 2025-07-24T06:49:17 + 248.5 + 9.369995 + + + 2025-07-24T06:49:17.3 + 250.1 + -1.6000061 + + + 2025-07-24T06:49:18 + 259.1 + -9 + + + 2025-07-24T06:49:18 + 257.38 + 1.7200012 + + + 2025-07-24T06:49:18.3 + 248.3 + 9.080002 + + + 2025-07-24T06:49:19 + 260.24 + -11.939987 + + + 2025-07-24T06:49:19.3 + 252.3 + 7.939987 + + + 2025-07-24T06:49:20 + 260.11 + -7.8099823 + + + 2025-07-24T06:49:20 + 257.7 + 2.4099731 + + + 2025-07-24T06:49:20.29 + 251 + 6.700012 + + + 2025-07-24T06:49:20.29 + 251 + 0 + + + 2025-07-24T06:49:21 + 263.4 + -12.399994 + + + 2025-07-24T06:49:21 + 263.4 + 0 + + + 2025-07-24T06:49:21 + 252.2 + 11.199997 + + + 2025-07-24T06:49:21 + 255.4 + -3.199997 + + + 2025-07-24T06:49:22 + 265.21 + -9.809998 + + + 2025-07-24T06:49:22 + 262.3 + 2.9100037 + + + 2025-07-24T06:49:23 + 254.5 + 7.799988 + + + 2025-07-24T06:49:23 + 266.13 + -11.630005 + + + 2025-07-24T06:49:23.3 + 255.8 + 10.330002 + + + 2025-07-24T06:49:24 + 265.96 + -10.159988 + + + 2025-07-24T06:49:24 + 263.9 + 2.0599976 + + + 2025-07-24T06:49:24.3 + 256.7 + 7.1999817 + + + 2025-07-24T06:49:25 + 269.15 + -12.449982 + + + 2025-07-24T06:49:25.3 + 261.3 + 7.850006 + + + 2025-07-24T06:49:26 + 272.78 + -11.480011 + + + 2025-07-24T06:49:26 + 268.8 + 3.980011 + + + 2025-07-24T06:49:25 + 261.3 + 7.5 + + + 2025-07-24T06:49:26 + 260.7 + 0.5999756 + + + 2025-07-24T06:49:27 + 270.79 + -10.089996 + + + 2025-07-24T06:49:28 + 272.4 + -1.6099854 + + + 2025-07-24T06:49:28 + 268.6 + 3.7999878 + + + 2025-07-24T06:49:28 + 273.81 + -5.2099915 + + + 2025-07-24T06:49:28.44 + 272.4 + 1.4100037 + + + 2025-07-24T06:49:29 + 273.8 + -1.3999939 + + + 2025-07-24T06:49:29.44 + 264.3 + 9.5 + + + 2025-07-24T06:49:30 + 273.03 + -8.730011 + + + 2025-07-24T06:49:30 + 271.9 + 1.1300049 + + + 2025-07-24T06:49:30 + 267.7 + 4.1999817 + + + 2025-07-24T06:49:31 + 279.26 + -11.559998 + + + 2025-07-24T06:49:31 + 266.8 + 12.460022 + + + 2025-07-24T06:49:31.3 + 268 + -1.2000122 + + + 2025-07-24T06:49:32 + 277.03 + -9.029999 + + + 2025-07-24T06:49:32 + 276.3 + 0.730011 + + + 2025-07-24T06:49:32.43 + 269.4 + 6.899994 + + + 2025-07-24T06:49:33 + 276.03 + -6.630005 + + + 2025-07-24T06:49:33.3 + 271.5 + 4.529999 + + + 2025-07-24T06:49:34 + 281.08 + -9.579987 + + + 2025-07-24T06:49:34 + 277.6 + 3.4799805 + + + 2025-07-24T06:49:34.47 + 271.4 + 6.200012 + + + 2025-07-24T06:49:35 + 284.6 + -13.200012 + + + 2025-07-24T06:49:35 + 284.6 + 0 + + + 2025-07-24T06:49:35 + 272.6 + 12 + + + 2025-07-24T06:49:36 + 284.3 + -11.699982 + + + 2025-07-24T06:49:36 + 275.3 + 9 + + + 2025-07-24T06:49:36 + 281.1 + -5.8000183 + + + 2025-07-24T06:49:37 + 277 + 4.100006 + + + 2025-07-24T06:49:37 + 286.75 + -9.75 + + + 2025-07-24T06:49:37.43 + 275.5 + 11.25 + + + 2025-07-24T06:49:38 + 269.3 + 6.200012 + + + 2025-07-24T06:49:38 + 285.26 + -15.960022 + + + 2025-07-24T06:49:38.43 + 278.4 + 6.860016 + + + 2025-07-24T06:49:39 + 288.9 + -10.5 + + + 2025-07-24T06:49:39 + 277.6 + 11.299988 + + + 2025-07-24T06:49:40 + 290.31 + -12.709991 + + + 2025-07-24T06:49:40 + 333.6 + -43.29001 + + + 2025-07-24T06:49:40 + 278.7 + 54.899994 + + + 2025-07-24T06:49:41 + 289.99 + -11.289978 + + + 2025-07-24T06:49:40.43 + 280.1 + 9.889984 + + + 2025-07-24T06:49:41.44 + 284.1 + -4 + + + 2025-07-24T06:49:42 + 290.43 + -6.3299866 + + + 2025-07-24T06:49:42 + 287.6 + 2.8299866 + + + 2025-07-24T06:49:42.59 + 282.3 + 5.3000183 + + + 2025-07-24T06:49:43 + 293.59 + -11.290009 + + + 2025-07-24T06:49:43.5 + 283.4 + 10.190002 + + + 2025-07-24T06:49:44 + 294.34 + -10.940002 + + + 2025-07-24T06:49:44 + 291.6 + 2.7399902 + + + 2025-07-24T06:49:43 + 285.9 + 5.700012 + + + 2025-07-24T06:49:45 + 295.26 + -9.360016 + + + 2025-07-24T06:49:44 + 287.6 + 7.6600037 + + + 2025-07-24T06:49:45.59 + 286.7 + 0.8999939 + + + 2025-07-24T06:49:46 + 298.36 + -11.659973 + + + 2025-07-24T06:49:46 + 294.8 + 3.5599976 + + + 2025-07-24T06:49:46.58 + 288.1 + 6.6999817 + + + 2025-07-24T06:49:47 + 297.04 + -8.940002 + + + 2025-07-24T06:49:47.58 + 289.1 + 7.9400024 + + + 2025-07-24T06:49:48 + 296.7 + -7.600006 + + + 2025-07-24T06:49:48 + 299.52 + -2.8199768 + + + 2025-07-24T06:49:48 + 290.3 + 9.220001 + + + 2025-07-24T06:49:49 + 303.16 + -12.860016 + + + 2025-07-24T06:49:49 + 293.3 + 9.860016 + + + 2025-07-24T06:49:50 + 300.88 + -7.580017 + + + 2025-07-24T06:49:50 + 300.6 + 0.27999878 + + + 2025-07-24T06:49:50 + 294.8 + 5.8000183 + + + 2025-07-24T06:49:51 + 293.6 + 1.1999817 + + + 2025-07-24T06:49:51 + 304 + -10.399994 + + + 2025-07-24T06:49:51.5 + 294.7 + 9.299988 + + + 2025-07-24T06:49:52 + 306.05 + -11.349976 + + + 2025-07-24T06:49:52 + 302.4 + 3.649994 + + + 2025-07-24T06:49:52 + 302.4 + 0 + + + 2025-07-24T06:49:52.59 + 297.5 + 4.899994 + + + 2025-07-24T06:49:53 + 307.43 + -9.929993 + + + 2025-07-24T06:49:53 + 299.1 + 8.329987 + + + 2025-07-24T06:49:54 + 306.61 + -7.5099792 + + + 2025-07-24T06:49:54 + 305.1 + 1.5099792 + + + 2025-07-24T06:49:54 + 298.2 + 6.899994 + + + 2025-07-24T06:49:55 + 308.85 + -10.649994 + + + 2025-07-24T06:49:55 + 302.4 + 6.450012 + + + 2025-07-24T06:49:56 + 300.9 + 1.5 + + + 2025-07-24T06:49:56 + 313.32 + -12.420013 + + + 2025-07-24T06:49:56 + 308.9 + 4.4200134 + + + 2025-07-24T06:49:56 + 308.9 + 0 + + + 2025-07-24T06:49:56.59 + 302.1 + 6.799988 + + + 2025-07-24T06:49:57 + 315.66 + -13.559998 + + + 2025-07-24T06:49:57 + 305.3 + 10.360016 + + + 2025-07-24T06:49:58 + 311.5 + -6.200012 + + + 2025-07-24T06:49:58 + 313.21 + -1.7099915 + + + 2025-07-24T06:49:58 + 304.5 + 8.709991 + + + 2025-07-24T06:49:59 + 316.53 + -12.029999 + + + 2025-07-24T06:49:59 + 305.4 + 11.130005 + + + 2025-07-24T06:50:00 + 316.43 + -11.029999 + + + 2025-07-24T06:50:00 + 306.6 + 9.829987 + + + 2025-07-24T06:50:00 + 313.3 + -6.6999817 + + + 2025-07-24T06:50:01 + 311 + 2.2999878 + + + 2025-07-24T06:50:01 + 318.12 + -7.119995 + + + 2025-07-24T06:50:01.69 + 311 + 7.119995 + + + 2025-07-24T06:50:02 + 317.81 + -6.8099976 + + + 2025-07-24T06:50:02 + 315.8 + 2.0100098 + + + 2025-07-24T06:50:02 + 309.9 + 5.899994 + + + 2025-07-24T06:50:03 + 322.58 + -12.679993 + + + 2025-07-24T06:50:03 + 314 + 8.579987 + + + 2025-07-24T06:50:04 + 322.72 + -8.720001 + + + 2025-07-24T06:50:04 + 322.72 + 0 + + + 2025-07-24T06:50:04 + 318.8 + 3.9200134 + + + 2025-07-24T06:50:04 + 312.5 + 6.299988 + + + 2025-07-24T06:50:05 + 313.6 + -1.1000061 + + + 2025-07-24T06:50:05 + 324.66 + -11.059998 + + + 2025-07-24T06:50:06 + 318 + 6.6600037 + + + 2025-07-24T06:50:06 + 325.23 + -7.230011 + + + 2025-07-24T06:50:06 + 325.23 + 0 + + + 2025-07-24T06:50:06 + 322.3 + 2.9300232 + + + 2025-07-24T06:50:06 + 316 + 6.299988 + + + 2025-07-24T06:50:07 + 327.07 + -11.070007 + + + 2025-07-24T06:50:07 + 317.1 + 9.970001 + + + 2025-07-24T06:50:08 + 325.5 + -8.399994 + + + 2025-07-24T06:50:08 + 327.61 + -2.1099854 + + + 2025-07-24T06:50:08 + 318.3 + 9.309998 + + + 2025-07-24T06:50:09 + 328.71 + -10.410004 + + + 2025-07-24T06:50:09 + 322.5 + 6.2099915 + + + 2025-07-24T06:50:09.8 + 320.6 + 1.8999939 + + + 2025-07-24T06:50:10 + 331.25 + -10.649994 + + + 2025-07-24T06:50:10 + 328.3 + 2.9500122 + + + 2025-07-24T06:50:11 + 322.1 + 6.1999817 + + + 2025-07-24T06:50:11 + 333.07 + -10.970001 + + + 2025-07-24T06:50:11 + 323.2 + 9.869995 + + + 2025-07-24T06:50:12 + 333.55 + -10.349976 + + + 2025-07-24T06:50:12 + 331.1 + 2.4499817 + + + 2025-07-24T06:50:12 + 331.1 + 0 + + + 2025-07-24T06:50:12 + 324.3 + 6.8000183 + + + 2025-07-24T06:50:13 + 335.65 + -11.350006 + + + 2025-07-24T06:50:13 + 328.3 + 7.350006 + + + 2025-07-24T06:50:14 + 336.28 + -7.980011 + + + 2025-07-24T06:50:14 + 334 + 2.2799988 + + + 2025-07-24T06:50:14 + 329.8 + 4.200012 + + + 2025-07-24T06:50:15 + 327.9 + 1.8999939 + + + 2025-07-24T06:50:15 + 338.97 + -11.070007 + + + 2025-07-24T06:50:15 + 338.97 + 0 + + + 2025-07-24T06:50:16 + 332.8 + 6.1700134 + + + 2025-07-24T06:50:16 + 340.42 + -7.6200256 + + + 2025-07-24T06:50:16 + 336.4 + 4.0200195 + + + 2025-07-24T06:50:16 + 332.8 + 3.600006 + + + 2025-07-24T06:50:17 + 342.18 + -9.380005 + + + 2025-07-24T06:50:17 + 332 + 10.179993 + + + 2025-07-24T06:50:18 + 339.5 + -7.5 + + + 2025-07-24T06:50:18 + 342.77 + -3.269989 + + + 2025-07-24T06:50:18 + 333.3 + 9.470001 + + + 2025-07-24T06:50:19 + 344.7 + -11.400024 + + + 2025-07-24T06:50:19 + 334.4 + 10.300018 + + + 2025-07-24T06:50:19.9 + 335.5 + -1.1000061 + + + 2025-07-24T06:50:20 + 345.16 + -9.660004 + + + 2025-07-24T06:50:20 + 341.9 + 3.2600098 + + + 2025-07-24T06:50:20 + 341.9 + 0 + + + 2025-07-24T06:50:19.9 + 336.7 + 5.1999817 + + + 2025-07-24T06:50:21 + 345.64 + -8.940002 + + + 2025-07-24T06:50:21 + 339.7 + 5.9400024 + + + 2025-07-24T06:50:22 + 348.47 + -8.769989 + + + 2025-07-24T06:50:22 + 345.7 + 2.769989 + + + 2025-07-24T06:50:22 + 339 + 6.700012 + + + 2025-07-24T06:50:22.9 + 340 + -1 + + + 2025-07-24T06:50:23 + 349.59 + -9.589996 + + + 2025-07-24T06:50:24 + 353.02 + -3.4299927 + + + 2025-07-24T06:50:23.8 + 343 + 10.019989 + + + 2025-07-24T06:50:24 + 347.5 + -4.5 + + + 2025-07-24T06:50:24.9 + 345.9 + 1.6000061 + + + 2025-07-24T06:50:25 + 351.67 + -5.7700195 + + + 2025-07-24T06:50:24.9 + 345.9 + 5.7700195 + + + 2025-07-24T06:50:26 + 352.48 + -6.580017 + + + 2025-07-24T06:50:26 + 351.4 + 1.0800171 + + + 2025-07-24T06:50:25.9 + 347.7 + 3.6999817 + + + 2025-07-24T06:50:27 + 355.77 + -8.069977 + + + 2025-07-24T06:50:26.9 + 346.3 + 9.470001 + + + 2025-07-24T06:50:28 + 353.7 + -7.4000244 + + + 2025-07-24T06:50:28 + 353.7 + 0 + + + 2025-07-24T06:50:27.9 + 347.5 + 6.200012 + + + 2025-07-24T06:50:28 + 357.21 + -9.709991 + + + 2025-07-24T06:50:29 + 358.3 + -1.0899963 + + + 2025-07-24T06:50:28.99 + 348.5 + 9.799988 + + + 2025-07-24T06:50:30 + 351.7 + -3.2000122 + + + 2025-07-24T06:50:30 + 0.52 + -8.819977 + + + 2025-07-24T06:50:30 + 0.3 + 0.21999997 + + + 2025-07-24T06:50:29.9 + 350.7 + 9.599976 + + + 2025-07-24T06:50:31 + 1.02 + -10.319977 + + + 2025-07-24T06:50:30.9 + 351.7 + 9.319977 + + + 2025-07-24T06:50:32 + 1.19 + -9.48999 + + + 2025-07-24T06:50:32 + 359.3 + 1.8900146 + + + 2025-07-24T06:50:31.99 + 355.7 + 3.5999756 + + + 2025-07-24T06:50:32.9 + 358 + -2.2999878 + + + 2025-07-24T06:50:33 + 4.98 + -6.980011 + + + 2025-07-24T06:50:33.99 + 358.5 + 6.480011 + + + 2025-07-24T06:50:34 + 4.12 + -5.619995 + + + 2025-07-24T06:50:34 + 2.2 + 1.9199998 + + + 2025-07-24T06:50:35 + 356.4 + 5.8000183 + + + 2025-07-24T06:50:35 + 8.01 + -11.610016 + + + 2025-07-24T06:50:34.9 + 357.4 + 10.610016 + + + 2025-07-24T06:50:36 + 7.28 + -9.880005 + + + 2025-07-24T06:50:36 + 4.3 + 2.98 + + + 2025-07-24T06:50:35.9 + 358.5 + 5.799988 + + + 2025-07-24T06:50:37 + 11.31 + -12.809998 + + + 2025-07-24T06:50:36.9 + 2.4 + 8.91 + + + 2025-07-24T06:50:38 + 7.6 + -5.2 + + + 2025-07-24T06:50:37.9 + 3.7 + 3.8999999 + + + 2025-07-24T06:50:38 + 10.9 + -7.2 + + + 2025-07-24T06:50:38.99 + 2.1 + 8.799999 + + + 2025-07-24T06:50:39 + 12.87 + -10.77 + + + 2025-07-24T06:50:38.99 + 3.3 + 9.57 + + + 2025-07-24T06:50:40 + 12.87 + -9.57 + + + 2025-07-24T06:50:40 + 9.8 + 3.0699997 + + + 2025-07-24T06:50:39.9 + 6.3 + 3.5 + + + 2025-07-24T06:50:41 + 14.37 + -8.07 + + + 2025-07-24T06:50:40.9 + 7.7 + 6.67 + + + 2025-07-24T06:50:42 + 17.72 + -10.0199995 + + + 2025-07-24T06:50:42 + 13.6 + 4.119999 + + + 2025-07-24T06:50:42.09 + 6.4 + 7.2000003 + + + 2025-07-24T06:50:43.09 + 7.8 + -1.4000001 + + + 2025-07-24T06:50:43 + 18.94 + -11.14 + + + 2025-07-24T06:50:43.09 + 8.9 + 10.040001 + + + 2025-07-24T06:50:44 + 19.29 + -10.390001 + + + 2025-07-24T06:50:44 + 16.4 + 2.8900013 + + + 2025-07-24T06:50:44.09 + 10.1 + 6.299999 + + + 2025-07-24T06:50:45 + 22.49 + -12.389999 + + + 2025-07-24T06:50:45.1 + 11.2 + 11.29 + + + 2025-07-24T06:50:46 + 22.53 + -11.330001 + + + 2025-07-24T06:50:46 + 18.8 + 3.7300014 + + + 2025-07-24T06:50:46.09 + 13.6 + 5.199999 + + + 2025-07-24T06:50:47 + 24.32 + -10.719999 + + + 2025-07-24T06:50:47.09 + 13.6 + 10.719999 + + + 2025-07-24T06:50:48.09 + 14.8 + -1.1999998 + + + 2025-07-24T06:50:48 + 22 + -7.2 + + + 2025-07-24T06:50:48 + 25.7 + -3.7000008 + + + 2025-07-24T06:50:49 + 17.4 + 8.300001 + + + 2025-07-24T06:50:49 + 26.3 + -8.9 + + + 2025-07-24T06:50:49.1 + 17.4 + 8.9 + + + 2025-07-24T06:50:50 + 27.47 + -10.07 + + + 2025-07-24T06:50:50 + 25.1 + 2.369999 + + + 2025-07-24T06:50:50.09 + 18.2 + 6.8999996 + + + 2025-07-24T06:50:51 + 27.47 + -9.269999 + + + 2025-07-24T06:50:51.1 + 19.3 + 8.17 + + + 2025-07-24T06:50:52 + 30.04 + -10.740002 + + + 2025-07-24T06:50:52 + 25.4 + 4.6400013 + + + 2025-07-24T06:50:52.2 + 20.6 + 4.799999 + + + 2025-07-24T06:50:53 + 21.9 + -1.2999992 + + + 2025-07-24T06:50:53 + 31.56 + -9.66 + + + 2025-07-24T06:50:54 + 25.6 + 5.959999 + + + 2025-07-24T06:50:54 + 35.01 + -9.409998 + + + 2025-07-24T06:50:54 + 30.9 + 4.1099987 + + + 2025-07-24T06:50:54.09 + 24.4 + 6.5 + + + 2025-07-24T06:50:55 + 34.23 + -9.83 + + + 2025-07-24T06:50:55.09 + 25.5 + 8.73 + + + 2025-07-24T06:50:56 + 35.84 + -10.34 + + + 2025-07-24T06:50:56 + 32.5 + 3.3400002 + + + 2025-07-24T06:50:56.09 + 29.3 + 3.2000008 + + + 2025-07-24T06:50:57 + 39.52 + -10.220001 + + + 2025-07-24T06:50:57.09 + 30.8 + 8.720001 + + + 2025-07-24T06:50:58 + 32.4 + -1.6000023 + + + 2025-07-24T06:50:58 + 36.7 + -4.299999 + + + 2025-07-24T06:50:58 + 41.01 + -4.3099976 + + + 2025-07-24T06:50:58.09 + 30.3 + 10.709999 + + + 2025-07-24T06:50:59 + 39.99 + -9.690002 + + + 2025-07-24T06:50:59.09 + 31.9 + 8.090002 + + + 2025-07-24T06:51:00 + 41.1 + -9.199999 + + + 2025-07-24T06:51:00 + 39.1 + 2 + + + 2025-07-24T06:51:00.19 + 33 + 6.0999985 + + + 2025-07-24T06:51:00.19 + 33 + 0 + + + 2025-07-24T06:51:01 + 43.99 + -10.990002 + + + 2025-07-24T06:51:01.09 + 34.2 + 9.790001 + + + 2025-07-24T06:51:02 + 45.68 + -11.48 + + + 2025-07-24T06:51:02 + 42.4 + 3.2799988 + + + 2025-07-24T06:51:02 + 38.1 + 4.300003 + + + 2025-07-24T06:51:02.19 + 36.5 + 1.5999985 + + + 2025-07-24T06:51:03 + 47.06 + -10.560001 + + + 2025-07-24T06:51:03.2 + 37.8 + 9.260002 + + + 2025-07-24T06:51:04 + 47.02 + -9.220001 + + + 2025-07-24T06:51:04 + 46.4 + 0.61999893 + + + 2025-07-24T06:51:04.3 + 41.2 + 5.200001 + + + 2025-07-24T06:51:05 + 49.5 + -8.299999 + + + 2025-07-24T06:51:05 + 49.5 + 0 + + + 2025-07-24T06:51:05.2 + 42.5 + 7 + + + 2025-07-24T06:51:06 + 51.03 + -8.529999 + + + 2025-07-24T06:51:06 + 50.4 + 0.62999725 + + + 2025-07-24T06:51:06.3 + 43.9 + 6.5 + + + 2025-07-24T06:51:07 + 53.02 + -9.119999 + + + 2025-07-24T06:51:07 + 41.8 + 11.220001 + + + 2025-07-24T06:51:08 + 46.7 + -4.9000015 + + + 2025-07-24T06:51:08 + 46.7 + 0 + + + 2025-07-24T06:51:08 + 51.4 + -4.700001 + + + 2025-07-24T06:51:08 + 53.47 + -2.0699997 + + + 2025-07-24T06:51:08.3 + 44.6 + 8.870003 + + + 2025-07-24T06:51:09 + 55.56 + -10.960003 + + + 2025-07-24T06:51:09.2 + 45.7 + 9.860001 + + + 2025-07-24T06:51:10 + 56.83 + -11.130001 + + + 2025-07-24T06:51:10 + 53.6 + 3.2300034 + + + 2025-07-24T06:51:10.2 + 48.9 + 4.699997 + + + 2025-07-24T06:51:11 + 57.26 + -8.359997 + + + 2025-07-24T06:51:11 + 47.8 + 9.459999 + + + 2025-07-24T06:51:12 + 49 + -1.2000008 + + + 2025-07-24T06:51:12 + 58.56 + -9.560001 + + + 2025-07-24T06:51:12 + 58.56 + 0 + + + 2025-07-24T06:51:12 + 57 + 1.5600014 + + + 2025-07-24T06:51:12.3 + 50.1 + 6.9000015 + + + 2025-07-24T06:51:13 + 60.53 + -10.43 + + + 2025-07-24T06:51:13.2 + 53.6 + 6.9300003 + + + 2025-07-24T06:51:14 + 61.54 + -7.9400024 + + + 2025-07-24T06:51:14 + 59.7 + 1.8400002 + + + 2025-07-24T06:51:14.3 + 52.4 + 7.299999 + + + 2025-07-24T06:51:15 + 63.23 + -10.829998 + + + 2025-07-24T06:51:15.3 + 53.4 + 9.829998 + + + 2025-07-24T06:51:16 + 64.17 + -10.769997 + + + 2025-07-24T06:51:16 + 62.5 + 1.6699982 + + + 2025-07-24T06:51:16 + 57.8 + 4.700001 + + + 2025-07-24T06:51:17 + 59.5 + -1.7000008 + + + 2025-07-24T06:51:17 + 66.23 + -6.7300034 + + + 2025-07-24T06:51:17.3 + 59.5 + 6.7300034 + + + 2025-07-24T06:51:18 + 64.7 + -5.199997 + + + 2025-07-24T06:51:18 + 67.46 + -2.7600021 + + + 2025-07-24T06:51:18.2 + 61.1 + 6.3600006 + + + 2025-07-24T06:51:19 + 69.07 + -7.970001 + + + 2025-07-24T06:51:19.3 + 60 + 9.07 + + + 2025-07-24T06:51:20 + 70.29 + -10.290001 + + + 2025-07-24T06:51:20 + 68.3 + 1.9899979 + + + 2025-07-24T06:51:20 + 61 + 7.300003 + + + 2025-07-24T06:51:21 + 71.8 + -10.800003 + + + 2025-07-24T06:51:21 + 62.2 + 9.600002 + + + 2025-07-24T06:51:22 + 67.7 + -5.499996 + + + 2025-07-24T06:51:22 + 73.33 + -5.630005 + + + 2025-07-24T06:51:22 + 70.3 + 3.0299988 + + + 2025-07-24T06:51:22 + 70.3 + 0 + + + 2025-07-24T06:51:22.43 + 64.3 + 6 + + + 2025-07-24T06:51:23 + 74.69 + -10.389999 + + + 2025-07-24T06:51:23.43 + 65.6 + 9.090004 + + + 2025-07-24T06:51:24 + 76.05 + -10.450005 + + + 2025-07-24T06:51:24 + 72.2 + 3.850006 + + + 2025-07-24T06:51:24.43 + 69.7 + 2.5 + + + 2025-07-24T06:51:25 + 77.41 + -7.7100067 + + + 2025-07-24T06:51:25 + 69 + 8.410004 + + + 2025-07-24T06:51:25 + 69 + 0 + + + 2025-07-24T06:51:26 + 78.7 + -9.699997 + + + 2025-07-24T06:51:26 + 76.2 + 2.5 + + + 2025-07-24T06:51:26.43 + 70.1 + 6.0999985 + + + 2025-07-24T06:51:27 + 79.98 + -9.880005 + + + 2025-07-24T06:51:27.3 + 71.6 + 8.380005 + + + 2025-07-24T06:51:28 + 79.3 + -7.7000046 + + + 2025-07-24T06:51:28 + 81.62 + -2.3199997 + + + 2025-07-24T06:51:28.43 + 72.7 + 8.920006 + + + 2025-07-24T06:51:29 + 83.01 + -10.310005 + + + 2025-07-24T06:51:28.43 + 73.6 + 9.410004 + + + 2025-07-24T06:51:30 + 84.37 + -10.770004 + + + 2025-07-24T06:51:30 + 82.2 + 2.1700058 + + + 2025-07-24T06:51:29.5 + 77.8 + 4.399994 + + + 2025-07-24T06:51:31 + 76 + 1.800003 + + + 2025-07-24T06:51:31 + 85.89 + -9.889999 + + + 2025-07-24T06:51:31.4 + 77.2 + 8.690002 + + + 2025-07-24T06:51:32 + 87.69 + -10.4900055 + + + 2025-07-24T06:51:32 + 84.7 + 2.9900055 + + + 2025-07-24T06:51:32.43 + 81.6 + 3.0999985 + + + 2025-07-24T06:51:33 + 88.78 + -7.1800003 + + + 2025-07-24T06:51:33.43 + 83.3 + 5.4799957 + + + 2025-07-24T06:51:34 + 90.15 + -6.8499985 + + + 2025-07-24T06:51:34 + 88 + 2.1500015 + + + 2025-07-24T06:51:34 + 80.7 + 7.300003 + + + 2025-07-24T06:51:35 + 91.51 + -10.810005 + + + 2025-07-24T06:51:35 + 91.51 + 0 + + + 2025-07-24T06:51:35 + 82.2 + 9.310005 + + + 2025-07-24T06:51:36 + 83.4 + -1.2000046 + + + 2025-07-24T06:51:36 + 93.12 + -9.720001 + + + 2025-07-24T06:51:36 + 90.3 + 2.8199997 + + + 2025-07-24T06:51:36.43 + 84.4 + 5.9000015 + + + 2025-07-24T06:51:37 + 94.65 + -10.25 + + + 2025-07-24T06:51:37.58 + 85.7 + 8.950005 + + + 2025-07-24T06:51:38 + 92.6 + -6.9000015 + + + 2025-07-24T06:51:38 + 95.51 + -2.9100037 + + + 2025-07-24T06:51:38 + 86.8 + 8.709999 + + + 2025-07-24T06:51:39 + 96.72 + -9.919998 + + + 2025-07-24T06:51:39 + 87.9 + 8.82 + + + 2025-07-24T06:51:40 + 98.72 + -10.82 + + + 2025-07-24T06:51:40 + 89 + 9.720001 + + + 2025-07-24T06:51:40 + 94.1 + -5.0999985 + + + 2025-07-24T06:51:41 + 93.5 + 0.5999985 + + + 2025-07-24T06:51:41 + 99.89 + -6.3899994 + + + 2025-07-24T06:51:41.59 + 93.5 + 6.3899994 + + + 2025-07-24T06:51:42 + 101.03 + -7.529999 + + + 2025-07-24T06:51:42 + 99.7 + 1.3300018 + + + 2025-07-24T06:51:42.58 + 92.5 + 7.199997 + + + 2025-07-24T06:51:43 + 102.52 + -10.019997 + + + 2025-07-24T06:51:43 + 96.4 + 6.119995 + + + 2025-07-24T06:51:44 + 103.84 + -7.439995 + + + 2025-07-24T06:51:44 + 99.3 + 4.5399933 + + + 2025-07-24T06:51:44 + 97.3 + 2 + + + 2025-07-24T06:51:45 + 105.72 + -8.419998 + + + 2025-07-24T06:51:45 + 100.8 + 4.919998 + + + 2025-07-24T06:51:45.58 + 96.7 + 4.100006 + + + 2025-07-24T06:51:45.58 + 96.7 + 0 + + + 2025-07-24T06:51:46 + 106.92 + -10.220001 + + + 2025-07-24T06:51:46 + 104.5 + 2.4199982 + + + 2025-07-24T06:51:46.59 + 98.2 + 6.300003 + + + 2025-07-24T06:51:47 + 107.88 + -9.68 + + + 2025-07-24T06:51:47 + 99.5 + 8.379997 + + + 2025-07-24T06:51:48 + 107.8 + -8.300003 + + + 2025-07-24T06:51:48 + 109.19 + -1.3899994 + + + 2025-07-24T06:51:48 + 100.4 + 8.790001 + + + 2025-07-24T06:51:49 + 110.18 + -9.779999 + + + 2025-07-24T06:51:49 + 101.3 + 8.879997 + + + 2025-07-24T06:51:49 + 101.3 + 0 + + + 2025-07-24T06:51:50 + 102.6 + -1.2999954 + + + 2025-07-24T06:51:50 + 111.51 + -8.910004 + + + 2025-07-24T06:51:50 + 109.6 + 1.9100037 + + + 2025-07-24T06:51:50.59 + 103.7 + 5.9000015 + + + 2025-07-24T06:51:51 + 112.34 + -8.639999 + + + 2025-07-24T06:51:51.69 + 105.5 + 6.8399963 + + + 2025-07-24T06:51:52 + 113.59 + -8.089996 + + + 2025-07-24T06:51:52 + 110.7 + 2.8899994 + + + 2025-07-24T06:51:52 + 107.4 + 3.2999954 + + + 2025-07-24T06:51:53 + 109 + -1.5999985 + + + 2025-07-24T06:51:53 + 114.99 + -5.989998 + + + 2025-07-24T06:51:54 + 115.82 + -0.83000183 + + + 2025-07-24T06:51:54 + 107.8 + 8.019997 + + + 2025-07-24T06:51:54 + 111.4 + -3.5999985 + + + 2025-07-24T06:51:54.69 + 111.9 + -0.5 + + + 2025-07-24T06:51:55 + 116.81 + -4.909996 + + + 2025-07-24T06:51:55.59 + 110.1 + 6.709999 + + + 2025-07-24T06:51:56 + 117.65 + -7.550003 + + + 2025-07-24T06:51:56 + 115.9 + 1.75 + + + 2025-07-24T06:51:55.59 + 111 + 4.9000015 + + + 2025-07-24T06:51:57 + 118.32 + -7.3199997 + + + 2025-07-24T06:51:57 + 114.1 + 4.220001 + + + 2025-07-24T06:51:58 + 117.8 + -3.7000046 + + + 2025-07-24T06:51:58 + 112.9 + 4.9000015 + + + 2025-07-24T06:51:58 + 119.52 + -6.619995 + + + 2025-07-24T06:51:59 + 120.25 + -0.73000336 + + + 2025-07-24T06:51:59 + 113.7 + 6.550003 + + + 2025-07-24T06:51:59.69 + 114.5 + -0.80000305 + + + 2025-07-24T06:52:00 + 121.64 + -7.1399994 + + + 2025-07-24T06:52:00 + 120.4 + 1.2399979 + + + 2025-07-24T06:52:00 + 117.3 + 3.0999985 + + + 2025-07-24T06:52:01 + 122.21 + -4.909996 + + + 2025-07-24T06:52:01 + 118.3 + 3.909996 + + + 2025-07-24T06:52:02 + 123.68 + -5.3799973 + + + 2025-07-24T06:52:02 + 121 + 2.6800003 + + + 2025-07-24T06:52:02 + 116.9 + 4.0999985 + + + 2025-07-24T06:52:03 + 120 + -3.0999985 + + + 2025-07-24T06:52:03 + 124.6 + -4.5999985 + + + 2025-07-24T06:52:04 + 120.9 + 3.699997 + + + 2025-07-24T06:52:04 + 125.38 + -4.4799957 + + + 2025-07-24T06:52:04 + 119.1 + 6.279999 + + + 2025-07-24T06:52:04.8 + 120.9 + -1.800003 + + + 2025-07-24T06:52:05 + 126.28 + -5.3799973 + + + 2025-07-24T06:52:05 + 120.3 + 5.9799957 + + + 2025-07-24T06:52:06 + 126.29 + -5.989998 + + + 2025-07-24T06:52:06 + 124.2 + 2.090004 + + + 2025-07-24T06:52:06 + 121 + 3.199997 + + + 2025-07-24T06:52:07 + 129 + -8 + + + 2025-07-24T06:52:07 + 121.8 + 7.199997 + + + 2025-07-24T06:52:08 + 122.6 + -0.7999954 + + + 2025-07-24T06:52:08 + 141.4 + -18.799995 + + + 2025-07-24T06:52:08 + 128.82 + 12.579987 + + + 2025-07-24T06:52:09 + 125.8 + 3.0200043 + + + 2025-07-24T06:52:09 + 130.88 + -5.080002 + + + 2025-07-24T06:52:09 + 124.3 + 6.580002 + + + 2025-07-24T06:52:10 + 131.44 + -7.1399994 + + + 2025-07-24T06:52:10 + 129.8 + 1.6399994 + + + 2025-07-24T06:52:10 + 125.1 + 4.7000046 + + + 2025-07-24T06:52:11 + 132.11 + -7.010002 + + + 2025-07-24T06:52:11 + 125.9 + 6.209999 + + + 2025-07-24T06:52:12 + 133.28 + -7.3799973 + + + 2025-07-24T06:52:12 + 131.5 + 1.7799988 + + + 2025-07-24T06:52:12 + 128.6 + 2.899994 + + + 2025-07-24T06:52:13 + 129.8 + -1.199997 + + + 2025-07-24T06:52:13 + 134.55 + -4.75 + + + 2025-07-24T06:52:13.79 + 128.6 + 5.949997 + + + 2025-07-24T06:52:14 + 135.62 + -7.019989 + + + 2025-07-24T06:52:14 + 133.7 + 1.9199982 + + + 2025-07-24T06:52:14 + 130.9 + 2.800003 + + + 2025-07-24T06:52:15 + 136.39 + -5.4900055 + + + 2025-07-24T06:52:15 + 130.5 + 5.8899994 + + + 2025-07-24T06:52:16 + 137.26 + -6.7599945 + + + 2025-07-24T06:52:16 + 135.6 + 1.6599884 + + + 2025-07-24T06:52:16 + 131.2 + 4.400009 + + + 2025-07-24T06:52:17 + 138.71 + -7.51001 + + + 2025-07-24T06:52:17 + 134.5 + 4.2100067 + + + 2025-07-24T06:52:18 + 132.7 + 1.800003 + + + 2025-07-24T06:52:18 + 137.4 + -4.699997 + + + 2025-07-24T06:52:18 + 139.23 + -1.8300018 + + + 2025-07-24T06:52:18 + 133.5 + 5.7299957 + + + 2025-07-24T06:52:19 + 140.69 + -7.1900024 + + + 2025-07-24T06:52:18.93 + 134.3 + 6.3899994 + + + 2025-07-24T06:52:20 + 141.09 + -6.7899933 + + + 2025-07-24T06:52:20 + 139.6 + 1.4899902 + + + 2025-07-24T06:52:19.93 + 136.1 + 3.5 + + + 2025-07-24T06:52:21 + 142.49 + -6.3899994 + + + 2025-07-24T06:52:21 + 135.9 + 6.5900116 + + + 2025-07-24T06:52:22 + 142.69 + -6.7900085 + + + 2025-07-24T06:52:22 + 136.7 + 5.9900055 + + + 2025-07-24T06:52:22 + 141.3 + -4.600006 + + + 2025-07-24T06:52:23 + 141.7 + -0.3999939 + + + 2025-07-24T06:52:23 + 143.66 + -1.9600067 + + + 2025-07-24T06:52:23 + 141.7 + 1.9600067 + + + 2025-07-24T06:52:24 + 144.95 + -3.25 + + + 2025-07-24T06:52:24 + 143.7 + 1.25 + + + 2025-07-24T06:52:24 + 143.1 + 0.59999084 + + + 2025-07-24T06:52:25 + 145.65 + -2.5499878 + + + 2025-07-24T06:52:25 + 140.1 + 5.549988 + + + 2025-07-24T06:52:26 + 147.69 + -7.5899963 + + + 2025-07-24T06:52:26 + 145.4 + 2.2900085 + + + 2025-07-24T06:52:25 + 140.9 + 4.5 + + + 2025-07-24T06:52:27 + 146.77 + -5.8700104 + + + 2025-07-24T06:52:27 + 141.6 + 5.169998 + + + 2025-07-24T06:52:27 + 142.6 + -1 + + + 2025-07-24T06:52:27 + 142.6 + 0 + + + 2025-07-24T06:52:28 + 147.5 + -4.899994 + + + 2025-07-24T06:52:28 + 150.59 + -3.0899963 + + + 2025-07-24T06:52:27.9 + 139.7 + 10.889999 + + + 2025-07-24T06:52:29 + 149.14 + -9.440002 + + + 2025-07-24T06:52:28.93 + 144.2 + 4.9400024 + + + 2025-07-24T06:52:30 + 151.24 + -7.0400085 + + + 2025-07-24T06:52:30 + 149.6 + 1.6399994 + + + 2025-07-24T06:52:30 + 145 + 4.600006 + + + 2025-07-24T06:52:31 + 151.35 + -6.350006 + + + 2025-07-24T06:52:30.93 + 147.1 + 4.25 + + + 2025-07-24T06:52:31.93 + 148.4 + -1.2999878 + + + 2025-07-24T06:52:32 + 153.56 + -5.1600037 + + + 2025-07-24T06:52:32 + 152.3 + 1.2599945 + + + 2025-07-24T06:52:31.93 + 148.4 + 3.9000092 + + + 2025-07-24T06:52:33 + 153.59 + -5.1900024 + + + 2025-07-24T06:52:32.93 + 147.9 + 5.6900024 + + + 2025-07-24T06:52:34 + 154.82 + -6.9200134 + + + 2025-07-24T06:52:34 + 153.6 + 1.2200012 + + + 2025-07-24T06:52:33.93 + 150.3 + 3.300003 + + + 2025-07-24T06:52:35 + 155.24 + -4.9400024 + + + 2025-07-24T06:52:35.09 + 149.5 + 5.7400055 + + + 2025-07-24T06:52:35.09 + 149.5 + 0 + + + 2025-07-24T06:52:36 + 156.17 + -6.669998 + + + 2025-07-24T06:52:36.09 + 150.4 + 5.7700043 + + + 2025-07-24T06:52:36 + 155.4 + -5 + + + 2025-07-24T06:52:37 + 153.1 + 2.2999878 + + + 2025-07-24T06:52:37 + 158.2 + -5.099991 + + + 2025-07-24T06:52:37.08 + 152 + 6.199997 + + + 2025-07-24T06:52:38 + 157 + -5 + + + 2025-07-24T06:52:38 + 157.67 + -0.66999817 + + + 2025-07-24T06:52:38.09 + 152.7 + 4.970001 + + + 2025-07-24T06:52:39 + 159.8 + -7.100006 + + + 2025-07-24T06:52:39.09 + 153.4 + 6.400009 + + + 2025-07-24T06:52:40 + 160.92 + -7.5200043 + + + 2025-07-24T06:52:40 + 159.3 + 1.6199951 + + + 2025-07-24T06:52:40.08 + 155.6 + 3.699997 + + + 2025-07-24T06:52:41 + 161.27 + -5.669998 + + + 2025-07-24T06:52:41.09 + 156.3 + 4.970001 + + + 2025-07-24T06:52:41.09 + 155.7 + 0.6000061 + + + 2025-07-24T06:52:42 + 162.63 + -6.930008 + + + 2025-07-24T06:52:42 + 162 + 0.6300049 + + + 2025-07-24T06:52:42.09 + 156.8 + 5.199997 + + + 2025-07-24T06:52:43 + 163.15 + -6.349991 + + + 2025-07-24T06:52:43.09 + 157.5 + 5.649994 + + + 2025-07-24T06:52:44 + 164.18 + -6.6799927 + + + 2025-07-24T06:52:44 + 162.3 + 1.8799896 + + + 2025-07-24T06:52:44.09 + 158.3 + 4 + + + 2025-07-24T06:52:45 + 164.81 + -6.5099945 + + + 2025-07-24T06:52:45.09 + 160.4 + 4.4100037 + + + 2025-07-24T06:52:46 + 165.97 + -5.5700073 + + + 2025-07-24T06:52:46 + 159.8 + 6.169998 + + + 2025-07-24T06:52:46 + 165.2 + -5.399994 + + + 2025-07-24T06:52:46.07 + 160.6 + 4.599991 + + + 2025-07-24T06:52:47 + 168.46 + -7.8600006 + + + 2025-07-24T06:52:47.09 + 162.6 + 5.8600006 + + + 2025-07-24T06:52:48 + 164.5 + -1.8999939 + + + 2025-07-24T06:52:48 + 164.5 + 0 + + + 2025-07-24T06:52:48 + 168.15 + -3.649994 + + + 2025-07-24T06:52:48.09 + 162.9 + 5.25 + + + 2025-07-24T06:52:49 + 168.74 + -5.8400116 + + + 2025-07-24T06:52:49.19 + 163 + 5.7400055 + + + 2025-07-24T06:52:50 + 169.93 + -6.9299927 + + + 2025-07-24T06:52:50 + 169.7 + 0.22999573 + + + 2025-07-24T06:52:50.09 + 163.7 + 6 + + + 2025-07-24T06:52:51 + 164 + -0.30000305 + + + 2025-07-24T06:52:51 + 172.11 + -8.110001 + + + 2025-07-24T06:52:51.09 + 165.7 + 6.4100037 + + + 2025-07-24T06:52:52 + 172.17 + -6.470001 + + + 2025-07-24T06:52:52 + 172.5 + -0.33000183 + + + 2025-07-24T06:52:52.09 + 166.3 + 6.199997 + + + 2025-07-24T06:52:53 + 173.6 + -7.300003 + + + 2025-07-24T06:52:53.2 + 167.1 + 6.5 + + + 2025-07-24T06:52:54 + 173.77 + -6.669998 + + + 2025-07-24T06:52:54 + 173 + 0.7700043 + + + 2025-07-24T06:52:54.09 + 167.9 + 5.100006 + + + 2025-07-24T06:52:55 + 175.27 + -7.3700104 + + + 2025-07-24T06:52:55 + 168.8 + 6.470001 + + + 2025-07-24T06:52:56 + 170.6 + -1.800003 + + + 2025-07-24T06:52:56 + 176.61 + -6.0099945 + + + 2025-07-24T06:52:56 + 176.8 + -0.19000244 + + + 2025-07-24T06:52:56.19 + 170.6 + 6.199997 + + + 2025-07-24T06:52:57 + 176.9 + -6.299988 + + + 2025-07-24T06:52:57.3 + 171.4 + 5.5 + + + 2025-07-24T06:52:58 + 177.4 + -6 + + + 2025-07-24T06:52:58 + 178.54 + -1.1399994 + + + 2025-07-24T06:52:58.3 + 172.1 + 6.439987 + + + 2025-07-24T06:52:58.3 + 172.1 + 0 + + + 2025-07-24T06:52:59 + 178.85 + -6.75 + + + 2025-07-24T06:52:59.3 + 174.8 + 4.050003 + + + 2025-07-24T06:53:00 + 179.75 + -4.949997 + + + 2025-07-24T06:53:00 + 175.7 + 4.050003 + + + 2025-07-24T06:53:00 + 178.6 + -2.9000092 + + + 2025-07-24T06:53:00.29 + 174.7 + 3.9000092 + + + 2025-07-24T06:53:01 + 181.09 + -6.3899994 + + + 2025-07-24T06:53:01.3 + 175.5 + 5.5899963 + + + 2025-07-24T06:53:02 + 181.43 + -5.9299927 + + + 2025-07-24T06:53:02 + 179.9 + 1.5299988 + + + 2025-07-24T06:53:02.3 + 176.3 + 3.5999908 + + + 2025-07-24T06:53:03 + 183.14 + -6.8399963 + + + 2025-07-24T06:53:03.2 + 177.1 + 6.0399933 + + + 2025-07-24T06:53:04 + 184.19 + -7.0899963 + + + 2025-07-24T06:53:04 + 183 + 1.1900024 + + + 2025-07-24T06:53:04 + 179.3 + 3.699997 + + + 2025-07-24T06:53:05 + 178.5 + 0.80000305 + + + 2025-07-24T06:53:05 + 185.07 + -6.5700073 + + + 2025-07-24T06:53:05.3 + 179.3 + 5.7700043 + + + 2025-07-24T06:53:06 + 186.08 + -6.779999 + + + 2025-07-24T06:53:06 + 185.8 + 0.27999878 + + + 2025-07-24T06:53:06.3 + 180 + 5.800003 + + + 2025-07-24T06:53:07 + 186.67 + -6.669998 + + + 2025-07-24T06:53:07.3 + 182.3 + 4.369995 + + + 2025-07-24T06:53:08 + 185.8 + -3.5 + + + 2025-07-24T06:53:08 + 185.8 + 0 + + + 2025-07-24T06:53:08 + 187.57 + -1.7700043 + + + 2025-07-24T06:53:08.3 + 183.4 + 4.1700134 + + + 2025-07-24T06:53:09 + 188.49 + -5.0900116 + + + 2025-07-24T06:53:09 + 182.5 + 5.9900055 + + + 2025-07-24T06:53:10 + 185.3 + -2.800003 + + + 2025-07-24T06:53:10 + 189.54 + -4.23999 + + + 2025-07-24T06:53:10 + 188.5 + 1.0399933 + + + 2025-07-24T06:53:10.2 + 185.3 + 3.199997 + + + 2025-07-24T06:53:11 + 190.69 + -5.3899994 + + + 2025-07-24T06:53:11.3 + 184.8 + 5.8899994 + + + 2025-07-24T06:53:12 + 191.5 + -6.699997 + + + 2025-07-24T06:53:12 + 189.9 + 1.6000061 + + + 2025-07-24T06:53:12.43 + 185.5 + 4.399994 + + + 2025-07-24T06:53:13 + 186.2 + -0.69999695 + + + 2025-07-24T06:53:13 + 192.26 + -6.0599976 + + + 2025-07-24T06:53:14 + 193.52 + -1.2600098 + + + 2025-07-24T06:53:14 + 186.9 + 6.6200104 + + + 2025-07-24T06:53:14 + 191.5 + -4.600006 + + + 2025-07-24T06:53:14.4 + 187.7 + 3.800003 + + + 2025-07-24T06:53:15 + 194.01 + -6.3099976 + + + 2025-07-24T06:53:15.43 + 189.9 + 4.1100006 + + + 2025-07-24T06:53:16 + 195.15 + -5.25 + + + 2025-07-24T06:53:16 + 193 + 2.149994 + + + 2025-07-24T06:53:16.4 + 189.3 + 3.699997 + + + 2025-07-24T06:53:17 + 196.37 + -7.069992 + + + 2025-07-24T06:53:17.3 + 189.9 + 6.470001 + + + 2025-07-24T06:53:18 + 195.8 + -5.900009 + + + 2025-07-24T06:53:18 + 192.5 + 3.300003 + + + 2025-07-24T06:53:18 + 196.78 + -4.279999 + + + 2025-07-24T06:53:19 + 197.71 + -0.93000793 + + + 2025-07-24T06:53:19 + 193.7 + 4.01001 + + + 2025-07-24T06:53:19.43 + 193.7 + 0 + + + 2025-07-24T06:53:20 + 198.66 + -4.9600067 + + + 2025-07-24T06:53:20 + 198.3 + 0.3600006 + + + 2025-07-24T06:53:20.43 + 194.7 + 3.600006 + + + 2025-07-24T06:53:21 + 199.85 + -5.150009 + + + 2025-07-24T06:53:21.43 + 193.9 + 5.950012 + + + 2025-07-24T06:53:22 + 200.55 + -6.650009 + + + 2025-07-24T06:53:22 + 199 + 1.550003 + + + 2025-07-24T06:53:22 + 194.8 + 4.199997 + + + 2025-07-24T06:53:23 + 195.5 + -0.69999695 + + + 2025-07-24T06:53:23 + 201.8 + -6.300003 + + + 2025-07-24T06:53:24 + 197.9 + 3.9000092 + + + 2025-07-24T06:53:24 + 202.91 + -5.01001 + + + 2025-07-24T06:53:24 + 200.9 + 2.0100098 + + + 2025-07-24T06:53:24.4 + 196.9 + 4 + + + 2025-07-24T06:53:25 + 203.4 + -6.5 + + + 2025-07-24T06:53:25.43 + 197.6 + 5.799988 + + + 2025-07-24T06:53:26 + 204.78 + -7.1799927 + + + 2025-07-24T06:53:26 + 203.4 + 1.3800049 + + + 2025-07-24T06:53:26.43 + 200.3 + 3.0999908 + + + 2025-07-24T06:53:27 + 205.3 + -5 + + + 2025-07-24T06:53:26 + 202.2 + 3.100006 + + + 2025-07-24T06:53:28 + 204.6 + -2.4000092 + + + 2025-07-24T06:53:28 + 200.1 + 4.5 + + + 2025-07-24T06:53:28 + 205.92 + -5.819992 + + + 2025-07-24T06:53:28.43 + 200.7 + 5.220001 + + + 2025-07-24T06:53:29 + 207.31 + -6.6100006 + + + 2025-07-24T06:53:29.59 + 201.4 + 5.9100037 + + + 2025-07-24T06:53:30 + 208.17 + -6.7700043 + + + 2025-07-24T06:53:30 + 207.8 + 0.36999512 + + + 2025-07-24T06:53:30 + 207.8 + 0 + + + 2025-07-24T06:53:30.59 + 202.3 + 5.5 + + + 2025-07-24T06:53:31 + 209.04 + -6.73999 + + + 2025-07-24T06:53:31 + 203 + 6.0399933 + + + 2025-07-24T06:53:32 + 210.36 + -7.3600006 + + + 2025-07-24T06:53:32 + 208.9 + 1.4600067 + + + 2025-07-24T06:53:32 + 205.3 + 3.5999908 + + + 2025-07-24T06:53:33 + 204.4 + 0.90000916 + + + 2025-07-24T06:53:33 + 211.18 + -6.779999 + + + 2025-07-24T06:53:33.59 + 205.2 + 5.9799957 + + + 2025-07-24T06:53:34 + 212.54 + -7.3399963 + + + 2025-07-24T06:53:34 + 210.9 + 1.6399994 + + + 2025-07-24T06:53:34.59 + 207.2 + 3.699997 + + + 2025-07-24T06:53:35 + 213.32 + -6.1200104 + + + 2025-07-24T06:53:35.59 + 208.3 + 5.0200043 + + + 2025-07-24T06:53:36 + 214.55 + -6.25 + + + 2025-07-24T06:53:36 + 213.3 + 1.25 + + + 2025-07-24T06:53:36 + 207.5 + 5.800003 + + + 2025-07-24T06:53:37 + 215.27 + -7.7700043 + + + 2025-07-24T06:53:37 + 208.6 + 6.669998 + + + 2025-07-24T06:53:38 + 210.8 + -2.199997 + + + 2025-07-24T06:53:38 + 214.4 + -3.5999908 + + + 2025-07-24T06:53:38 + 216.47 + -2.0700073 + + + 2025-07-24T06:53:38.59 + 210.3 + 6.169998 + + + 2025-07-24T06:53:39 + 217.05 + -6.75 + + + 2025-07-24T06:53:39.59 + 211.1 + 5.949997 + + + 2025-07-24T06:53:40 + 218.09 + -6.98999 + + + 2025-07-24T06:53:40 + 218.09 + 0 + + + 2025-07-24T06:53:40 + 217.4 + 0.69000244 + + + 2025-07-24T06:53:40 + 211.9 + 5.5 + + + 2025-07-24T06:53:41 + 218.91 + -7.01001 + + + 2025-07-24T06:53:41 + 212.5 + 6.4100037 + + + 2025-07-24T06:53:42 + 220 + -7.5 + + + 2025-07-24T06:53:42 + 218.6 + 1.3999939 + + + 2025-07-24T06:53:42 + 213.3 + 5.300003 + + + 2025-07-24T06:53:43 + 216.6 + -3.300003 + + + 2025-07-24T06:53:43 + 220.8 + -4.199997 + + + 2025-07-24T06:53:43.69 + 216.6 + 4.199997 + + + 2025-07-24T06:53:44 + 221.68 + -5.0799866 + + + 2025-07-24T06:53:44 + 220.5 + 1.1799927 + + + 2025-07-24T06:53:44.69 + 215.5 + 5 + + + 2025-07-24T06:53:45 + 222.7 + -7.199997 + + + 2025-07-24T06:53:45 + 216.1 + 6.599991 + + + 2025-07-24T06:53:46 + 223.96 + -7.8600006 + + + 2025-07-24T06:53:46 + 222.4 + 1.5600128 + + + 2025-07-24T06:53:46 + 217.3 + 5.099991 + + + 2025-07-24T06:53:47 + 224.4 + -7.099991 + + + 2025-07-24T06:53:47 + 216.3 + 8.099991 + + + 2025-07-24T06:53:47.7 + 218.4 + -2.0999908 + + + 2025-07-24T06:53:48 + 224.3 + -5.900009 + + + 2025-07-24T06:53:48 + 224.3 + 0 + + + 2025-07-24T06:53:48 + 225.74 + -1.4400024 + + + 2025-07-24T06:53:48.69 + 219.2 + 6.5400085 + + + 2025-07-24T06:53:49 + 226.36 + -7.1600037 + + + 2025-07-24T06:53:49 + 220 + 6.3600006 + + + 2025-07-24T06:53:50 + 227.51 + -7.5099945 + + + 2025-07-24T06:53:50 + 225.7 + 1.8099976 + + + 2025-07-24T06:53:50 + 220.8 + 4.899994 + + + 2025-07-24T06:53:51 + 228.21 + -7.4100037 + + + 2025-07-24T06:53:51 + 221.5 + 6.7100067 + + + 2025-07-24T06:53:52 + 229.68 + -8.179993 + + + 2025-07-24T06:53:52 + 225.8 + 3.8799896 + + + 2025-07-24T06:53:52 + 227.8 + -2 + + + 2025-07-24T06:53:52.8 + 223.3 + 4.5 + + + 2025-07-24T06:53:53 + 230.6 + -7.300003 + + + 2025-07-24T06:53:53 + 230.6 + 0 + + + 2025-07-24T06:53:53.7 + 224.3 + 6.300003 + + + 2025-07-24T06:53:54 + 231.77 + -7.470001 + + + 2025-07-24T06:53:54 + 230.3 + 1.4700012 + + + 2025-07-24T06:53:54 + 227.4 + 2.9000092 + + + 2025-07-24T06:53:55 + 232.25 + -4.850006 + + + 2025-07-24T06:53:55 + 228.2 + 4.050003 + + + 2025-07-24T06:53:56 + 233.61 + -5.4100037 + + + 2025-07-24T06:53:56 + 237.3 + -3.6900024 + + + 2025-07-24T06:53:56 + 226.7 + 10.600006 + + + 2025-07-24T06:53:57 + 227.6 + -0.90000916 + + + 2025-07-24T06:53:57 + 234.51 + -6.9099884 + + + 2025-07-24T06:53:57.7 + 228.4 + 6.1100006 + + + 2025-07-24T06:53:58 + 233.4 + -5 + + + 2025-07-24T06:53:58 + 235.48 + -2.0800018 + + + 2025-07-24T06:53:57.7 + 229.2 + 6.279999 + + + 2025-07-24T06:53:59 + 236.67 + -7.470001 + + + 2025-07-24T06:53:59 + 231.7 + 4.970001 + + + 2025-07-24T06:54:00 + 237.33 + -5.630005 + + + 2025-07-24T06:54:00 + 235.5 + 1.8300018 + + + 2025-07-24T06:53:59.8 + 230.8 + 4.699997 + + + 2025-07-24T06:54:01 + 238.69 + -7.8899994 + + + 2025-07-24T06:54:00.7 + 231.7 + 6.9900055 + + + 2025-07-24T06:54:01.79 + 232.6 + -0.90000916 + + + 2025-07-24T06:54:02 + 239.7 + -7.099991 + + + 2025-07-24T06:54:02 + 238.2 + 1.5 + + + 2025-07-24T06:54:02.8 + 235.6 + 2.5999908 + + + 2025-07-24T06:54:03 + 240.64 + -5.0399933 + + + 2025-07-24T06:54:03 + 235.6 + 5.0399933 + + + 2025-07-24T06:54:04 + 241.88 + -6.279999 + + + 2025-07-24T06:54:04 + 240.1 + 1.7799988 + + + 2025-07-24T06:54:04 + 235 + 5.100006 + + + 2025-07-24T06:54:05 + 243.01 + -8.0099945 + + + 2025-07-24T06:54:05 + 237.3 + 5.7099915 + + + 2025-07-24T06:54:06 + 243.75 + -6.449997 + + + 2025-07-24T06:54:06 + 236.9 + 6.850006 + + + 2025-07-24T06:54:06 + 241.9 + -5 + + + 2025-07-24T06:54:06.7 + 237.8 + 4.099991 + + + 2025-07-24T06:54:07 + 244.5 + -6.699997 + + + 2025-07-24T06:54:07 + 240.3 + 4.199997 + + + 2025-07-24T06:54:08 + 244.1 + -3.800003 + + + 2025-07-24T06:54:08 + 245.74 + -1.6399994 + + + 2025-07-24T06:54:08 + 239.6 + 6.1399994 + + + 2025-07-24T06:54:09 + 246.28 + -6.6799927 + + + 2025-07-24T06:54:09 + 240.5 + 5.779999 + + + 2025-07-24T06:54:10 + 247.64 + -7.1399994 + + + 2025-07-24T06:54:10 + 245.8 + 1.8399963 + + + 2025-07-24T06:54:10 + 241.3 + 4.5 + + + 2025-07-24T06:54:11 + 248.64 + -7.3399963 + + + 2025-07-24T06:54:11 + 243.3 + 5.3399963 + + + 2025-07-24T06:54:11.9 + 244.3 + -1 + + + 2025-07-24T06:54:12 + 249.55 + -5.25 + + + 2025-07-24T06:54:12 + 247.8 + 1.75 + + + 2025-07-24T06:54:12 + 243.7 + 4.100006 + + + 2025-07-24T06:54:13 + 249.98 + -6.279999 + + + 2025-07-24T06:54:13 + 245.4 + 4.580002 + + + 2025-07-24T06:54:14 + 251.34 + -5.9400024 + + + 2025-07-24T06:54:14 + 249.6 + 1.7399902 + + + 2025-07-24T06:54:13.8 + 246.7 + 2.9000092 + + + 2025-07-24T06:54:15 + 252.55 + -5.850006 + + + 2025-07-24T06:54:15 + 246.3 + 6.25 + + + 2025-07-24T06:54:16 + 248.6 + -2.300003 + + + 2025-07-24T06:54:16 + 253.55 + -4.949997 + + + 2025-07-24T06:54:16 + 252.1 + 1.449997 + + + 2025-07-24T06:54:16 + 247.8 + 4.300003 + + + 2025-07-24T06:54:17 + 254.63 + -6.830002 + + + 2025-07-24T06:54:17 + 254.63 + 0 + + + 2025-07-24T06:54:17 + 248.7 + 5.930008 + + + 2025-07-24T06:54:18 + 254.5 + -5.800003 + + + 2025-07-24T06:54:18 + 255.42 + -0.91999817 + + + 2025-07-24T06:54:18 + 249.4 + 6.0200043 + + + 2025-07-24T06:54:19 + 256.4 + -7 + + + 2025-07-24T06:54:19 + 251.2 + 5.199997 + + + 2025-07-24T06:54:20 + 256.92 + -5.7200165 + + + 2025-07-24T06:54:20 + 250.9 + 6.0200195 + + + 2025-07-24T06:54:20 + 255.9 + -5 + + + 2025-07-24T06:54:20.93 + 251.3 + 4.599991 + + + 2025-07-24T06:54:21 + 257.52 + -6.219986 + + + 2025-07-24T06:54:21 + 254.4 + 3.119995 + + + 2025-07-24T06:54:22 + 258.55 + -4.149994 + + + 2025-07-24T06:54:22 + 257.4 + 1.1499939 + + + 2025-07-24T06:54:22 + 254.4 + 3 + + + 2025-07-24T06:54:23 + 259.02 + -4.619995 + + + 2025-07-24T06:54:23 + 253.6 + 5.419983 + + + 2025-07-24T06:54:24 + 259.65 + -6.049988 + + + 2025-07-24T06:54:24 + 258.8 + 0.8500061 + + + 2025-07-24T06:54:24 + 254.2 + 4.599991 + + + 2025-07-24T06:54:25 + 259.91 + -5.7100067 + + + 2025-07-24T06:54:25 + 254.9 + 5.01001 + + + 2025-07-24T06:54:25 + 255.7 + -0.80000305 + + + 2025-07-24T06:54:26 + 260.78 + -5.080002 + + + 2025-07-24T06:54:26 + 260.4 + 0.38000488 + + + 2025-07-24T06:54:26.08 + 256.1 + 4.299988 + + + 2025-07-24T06:54:27 + 262.12 + -6.019989 + + + 2025-07-24T06:54:26 + 256.9 + 5.220001 + + + 2025-07-24T06:54:28 + 261.8 + -4.899994 + + + 2025-07-24T06:54:28 + 262.09 + -0.29000854 + + + 2025-07-24T06:54:28.07 + 257.4 + 4.6900024 + + + 2025-07-24T06:54:29 + 262.46 + -5.0599976 + + + 2025-07-24T06:54:29.09 + 258.6 + 3.8599854 + + + 2025-07-24T06:54:30 + 261 + -2.399994 + + + 2025-07-24T06:54:30 + 262.63 + -1.6300049 + + + 2025-07-24T06:54:30 + 262.3 + 0.3300171 + + + 2025-07-24T06:54:30.09 + 261.1 + 1.1999817 + + + 2025-07-24T06:54:31 + 263.28 + -2.1799927 + + + 2025-07-24T06:54:31.08 + 260.2 + 3.0799866 + + + 2025-07-24T06:54:32 + 264.38 + -4.1799927 + + + 2025-07-24T06:54:32 + 265.4 + -1.019989 + + + 2025-07-24T06:54:32.09 + 261.3 + 4.100006 + + + 2025-07-24T06:54:33 + 264.16 + -2.8600159 + + + 2025-07-24T06:54:33 + 262.2 + 1.9599915 + + + 2025-07-24T06:54:34 + 264.12 + -1.9199829 + + + 2025-07-24T06:54:34 + 264.3 + -0.17999268 + + + 2025-07-24T06:54:34.08 + 262.8 + 1.5 + + + 2025-07-24T06:54:34.08 + 261.6 + 1.1999817 + + + 2025-07-24T06:54:35 + 265.2 + -3.600006 + + + 2025-07-24T06:54:35.07 + 262.2 + 3 + + + 2025-07-24T06:54:36 + 265.38 + -3.1799927 + + + 2025-07-24T06:54:36 + 264.6 + 0.7799988 + + + 2025-07-24T06:54:36.2 + 262.6 + 2 + + + 2025-07-24T06:54:37 + 265.54 + -2.9400024 + + + 2025-07-24T06:54:37.19 + 262.8 + 2.7400208 + + + 2025-07-24T06:54:38 + 264.5 + -1.7000122 + + + 2025-07-24T06:54:38.19 + 264.5 + 0 + + + 2025-07-24T06:54:38 + 265.41 + -0.91000366 + + + 2025-07-24T06:54:39 + 265.73 + -0.32000732 + + + 2025-07-24T06:54:39.09 + 263.2 + 2.5299988 + + + 2025-07-24T06:54:39.09 + 263.5 + -0.2999878 + + + 2025-07-24T06:54:40 + 266.49 + -2.9899902 + + + 2025-07-24T06:54:40 + 266.1 + 0.38998413 + + + 2025-07-24T06:54:40.09 + 265.4 + 0.7000122 + + + 2025-07-24T06:54:40.09 + 265.4 + 0 + + + 2025-07-24T06:54:41 + 266.7 + -1.3000183 + + + 2025-07-24T06:54:41.2 + 265.4 + 1.3000183 + + + 2025-07-24T06:54:42 + 266.66 + -1.2600098 + + + 2025-07-24T06:54:42 + 265.6 + 1.0599976 + + + 2025-07-24T06:54:42.09 + 265.7 + -0.1000061 + + + 2025-07-24T06:54:43.19 + 264.9 + 0.8000183 + + + 2025-07-24T06:54:43 + 266.79 + -1.8900146 + + + 2025-07-24T06:54:44 + 267.26 + -0.47000122 + + + 2025-07-24T06:54:44 + 265.1 + 2.1600037 + + + 2025-07-24T06:54:44 + 267 + -1.8999939 + + + 2025-07-24T06:54:44.19 + 265.4 + 1.6000061 + + + 2025-07-24T06:54:45 + 267.98 + -2.580017 + + + 2025-07-24T06:54:45.2 + 265.7 + 2.2799988 + + + 2025-07-24T06:54:46 + 268.07 + -2.369995 + + + 2025-07-24T06:54:46 + 267.6 + 0.47000122 + + + 2025-07-24T06:54:46.2 + 266.3 + 1.3000183 + + + 2025-07-24T06:54:47 + 267.62 + -1.3200073 + + + 2025-07-24T06:54:47.3 + 266.3 + 1.3200073 + + + 2025-07-24T06:54:47.3 + 266.3 + 0 + + + 2025-07-24T06:54:48 + 267.2 + -0.9000244 + + + 2025-07-24T06:54:48 + 266.5 + 0.7000122 + + + 2025-07-24T06:54:48 + 267.97 + -1.4700012 + + + 2025-07-24T06:54:49 + 269.6 + -1.6300049 + + + 2025-07-24T06:54:49 + 269.71 + -0.10998535 + + + 2025-07-24T06:54:49.3 + 270.4 + -0.69000244 + + + 2025-07-24T06:54:50 + 268.82 + 1.5799866 + + + 2025-07-24T06:54:50 + 269.6 + -0.7799988 + + + 2025-07-24T06:54:50.3 + 267.5 + 2.100006 + + + 2025-07-24T06:54:51 + 266.69 + 0.80999756 + + + 2025-07-24T06:54:51.3 + 268.1 + -1.4100037 + + + 2025-07-24T06:54:52 + 265.31 + 2.7900085 + + + 2025-07-24T06:54:52 + 269.9 + -4.5899963 + + + 2025-07-24T06:54:52.3 + 273.4 + -3.5 + + + 2025-07-24T06:54:53 + 267.8 + 5.600006 + + + 2025-07-24T06:54:53 + 264.45 + 3.3499756 + + + 2025-07-24T06:54:53.3 + 267.3 + -2.8499756 + + + 2025-07-24T06:54:54 + 262.54 + 4.7599792 + + + 2025-07-24T06:54:54 + 285.4 + -22.859985 + + + 2025-07-24T06:54:54.3 + 270.8 + 14.600006 + + + 2025-07-24T06:54:55 + 260.57 + 10.22998 + + + 2025-07-24T06:54:55.3 + 266.2 + -5.630005 + + + 2025-07-24T06:54:56 + 258.93 + 7.2700195 + + + 2025-07-24T06:54:56 + 260.4 + -1.4700012 + + + 2025-07-24T06:54:56.3 + 265.7 + -5.3000183 + + + 2025-07-24T06:54:57 + 257.49 + 8.210022 + + + 2025-07-24T06:54:57 + 265 + -7.51001 + + + 2025-07-24T06:54:57 + 265 + 0 + + + 2025-07-24T06:54:58 + 264.3 + 0.7000122 + + + 2025-07-24T06:54:58 + 258.1 + 6.1999817 + + + 2025-07-24T06:54:58 + 256.35 + 1.75 + + + 2025-07-24T06:54:58.3 + 263.2 + -6.850006 + + + 2025-07-24T06:54:59 + 254.96 + 8.2400055 + + + 2025-07-24T06:54:59.2 + 262 + -7.0399933 + + + 2025-07-24T06:55:00 + 253.19 + 8.809998 + + + 2025-07-24T06:55:00 + 254.5 + -1.3099976 + + + \ No newline at end of file diff --git a/src/devices/Nmea0183/tests/MagneticDeviationCorrectionTest.cs b/src/devices/Nmea0183/tests/MagneticDeviationCorrectionTest.cs index 57d8a502cc..ecff56c4af 100644 --- a/src/devices/Nmea0183/tests/MagneticDeviationCorrectionTest.cs +++ b/src/devices/Nmea0183/tests/MagneticDeviationCorrectionTest.cs @@ -11,6 +11,7 @@ using System.Xml; using Iot.Device.Common; using Iot.Device.Nmea0183.Sentences; +using Shouldly; using UnitsNet; using Xunit; @@ -39,7 +40,8 @@ public void CreateDeviationTable5() TestDataHelper.GetResourceStream("Nmea-2023-10-22-13-39.txt") }, DateTimeOffset.Parse("2023-10-22T13:40:00", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal), - DateTimeOffset.Parse("2023-10-22T13:50:00", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal)); + DateTimeOffset.Parse("2023-10-22T13:50:00", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal), + Angle.FromDegrees(30)); dev.Save("Calibration_Cirrus_test.xml", "Cirrus", "HBY5127", "269110660"); @@ -50,6 +52,31 @@ public void CreateDeviationTable5() } } + [Fact] + public void CreateDeviationTable2025() + { + using (new SetCultureForTest("de-DE")) + { + MagneticDeviationCorrection dev = new MagneticDeviationCorrection(); + var result = dev.CreateCorrectionTable(new Stream[] + { + TestDataHelper.GetResourceStream("Nmea-2025-07-24-06-40.txt"), + TestDataHelper.GetResourceStream("Nmea-2025-07-24-06-50.txt"), + }, + DateTimeOffset.Parse("2025-07-24T06:43", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal), + DateTimeOffset.Parse("2025-07-24T06:55", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal), + Angle.FromDegrees(90)); + + result.ShouldBeEmpty(); + + dev.Save("Calibration_Cirrus_2025.xml", "Cirrus", "HBY5127", "269110660"); + + var expected = new MagneticDeviationCorrection(TestDataHelper.GetResourceStream("Calibration_Cirrus_2025.xml")); + Assert.Equal(expected.Identification, dev.Identification); + Assert.Equal(expected, dev); + } + } + [Fact] public void DifferentCalibrationsAreNotEqual() { diff --git a/src/devices/Nmea0183/tests/MessageRouterTests.cs b/src/devices/Nmea0183/tests/MessageRouterTests.cs index 13a61e1baf..ecbb6a065f 100644 --- a/src/devices/Nmea0183/tests/MessageRouterTests.cs +++ b/src/devices/Nmea0183/tests/MessageRouterTests.cs @@ -56,7 +56,7 @@ public void NothingHappensWhenNoFilter() public void AddSimpleOutgoingFilter() { // This rule sends all messages from the local client to all (other) sinks - FilterRule f = new FilterRule(MessageRouter.LocalMessageSource, TalkerId.Any, SentenceId.Any, new[] { "1", "2" }, false); + FilterRule f = new FilterRule(MessageRouter.LocalMessageSource, TalkerId.Any, SentenceId.Any, new[] { "1", "2" }, false, false); _router.AddFilterRule(f); var sentence = TypedTestSentence(); @@ -71,7 +71,7 @@ public void AddSimpleOutgoingFilterRawOnly() { // Configuring false for the last parameter here on the local outgoing rule is probably not useful, because // the local sender will typically provide typed messages. - FilterRule f = new FilterRule(MessageRouter.LocalMessageSource, TalkerId.Any, SentenceId.Any, new[] { "1", "2" }, true); + FilterRule f = new FilterRule(MessageRouter.LocalMessageSource, TalkerId.Any, SentenceId.Any, new[] { "1", "2" }, true, false); _router.AddFilterRule(f); _router.SendSentence(_router, TypedTestSentence()); } @@ -81,8 +81,8 @@ public void AddIncomingTalkerRule() { // These two rules define that messages with a YDGGA header (Navigation data from the NMEA2000 Gateway) shall be // discarded and GPGGA messages used instead. These (in my test case) contain elevation as well. - FilterRule f1 = new FilterRule("*", new TalkerId('Y', 'D'), new SentenceId("GGA"), new List(), false); - FilterRule f2 = new FilterRule("*", new TalkerId('G', 'P'), new SentenceId("GGA"), new[] { "1", "2" }, false); + FilterRule f1 = new FilterRule("*", new TalkerId('Y', 'D'), new SentenceId("GGA"), new List(), false, false); + FilterRule f2 = new FilterRule("*", new TalkerId('G', 'P'), new SentenceId("GGA"), new[] { "1", "2" }, false, false); _router.AddFilterRule(f1); _router.AddFilterRule(f2); @@ -106,7 +106,7 @@ public void AddIncomingTalkerRule() [Fact] public void DecodableMessageIsOnlyForwardedOnce() { - FilterRule f1 = new FilterRule("*", new TalkerId('G', 'P'), new SentenceId("GGA"), new[] { "1" }, true); + FilterRule f1 = new FilterRule("*", new TalkerId('G', 'P'), new SentenceId("GGA"), new[] { "1" }, true, false); _router.AddFilterRule(f1); @@ -126,7 +126,7 @@ public void DecodableMessageIsOnlyForwardedOnce() [InlineData("1")] public void MessageLoopingDoesNotCauseStackOverflow(string target) { - FilterRule f1 = new FilterRule("*", new TalkerId('G', 'P'), new SentenceId("GGA"), new[] { target }, true); + FilterRule f1 = new FilterRule("*", new TalkerId('G', 'P'), new SentenceId("GGA"), new[] { target }, true, false); _router.AddFilterRule(f1); diff --git a/src/devices/Nmea0183/tests/Nmea-2025-07-24-06-40.txt b/src/devices/Nmea0183/tests/Nmea-2025-07-24-06-40.txt new file mode 100644 index 0000000000..9b4f470547 --- /dev/null +++ b/src/devices/Nmea0183/tests/Nmea-2025-07-24-06-40.txt @@ -0,0 +1,80667 @@ +2025-07-24T06:40:03|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:03|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:03|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:40:03|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:03|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:03|<<8?o=H7it`@BgwQQl4jP,0|$AIVDM,1,1,,B,B3@oGQ@0>8?o=H7it`@BgwQQl4jP,0 +2025-07-24T06:40:04|<<QmUtTd:00Se,0|$AIVDM,1,1,,B,13mDP2001`0viQVO>QmUtTd:00Se,0 +2025-07-24T06:40:04|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:04|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:04|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:04|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:40:04|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:05|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:05|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:05|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:40:05|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:05|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:05|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:06|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:06|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:06|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:40:06|<<H2O;7;4H2O;7;4>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:07|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:07|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:07|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:40:07|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:40:07|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:07|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:08|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:08|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:08|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:40:08|<<TrUv4fB0D1s,0|$AIVDM,1,1,,A,13ku;qh01D0vl62O>TrUv4fB0D1s,0 +2025-07-24T06:40:09|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:09|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:09|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:09|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:40:09|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:09|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:09|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:10|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:10|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:10|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:40:10|<<1r4@ha>220EHDq@Tr2222222222221@83BBN4000OU0PH8,0|$AIVDM,2,1,6,B,539GH702>1r4@ha>220EHDq@Tr2222222222221@83BBN4000OU0PH8,0 +2025-07-24T06:40:11|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:11|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:11|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:11|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:40:11|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:40:11|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:11|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:12|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:12|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:12|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:40:12|<<fPP00Pvb=bO79u00?vK2@7b,0|$AIVDM,1,1,,B,139T>fPP00Pvb=bO79u00?vK2@7b,0 +2025-07-24T06:40:13|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:13|<<h0020vM@4Oh0020vM@4O>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:13|<<PsUtTdL0886,0|$AIVDM,1,1,,A,13mDP2001`0vi`:O>PsUtTdL0886,0 +2025-07-24T06:40:13|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:13|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:40:13|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:13|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:13|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:14|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:14|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:14|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:40:14|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:15|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:15|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:15|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:40:15|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:15|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:15|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:16|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:16|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:16|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:40:16|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:17|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:17|<<>>Seatalk1|$STALK,85,06,00,82,C5,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.12 NM } +2025-07-24T06:40:17|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:40:17|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:17|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:17|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:18|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:18|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:18|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:40:18|<<T15vDf`08;B,0|$AIVDM,1,1,,B,13ku;qh01D0vlT15vDf`08;B,0 +2025-07-24T06:40:19|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:19|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:19|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:19|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:40:19|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:19|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:19|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:20|<<PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0|$AIVDM,2,1,7,A,539EIqP2>PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0 +2025-07-24T06:40:20|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:20|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:20|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:40:20|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:21|<<11H5T,0|$AIVDM,2,1,8,B,54QuSV82A@d1K8Q?L00dE==D00000000000000161aM964000>11H5T,0 +2025-07-24T06:40:21|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:21|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:21|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:40:21|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:21|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:21|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:22|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:22|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:22|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:40:22|<<32t0000SkPQB,0|$AIVDM,2,1,9,B,53`lQb4000010?SG;T05E8u8622000000000001S0P>32t0000SkPQB,0 +2025-07-24T06:40:23|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:23|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:23|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:23|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:40:23|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:23|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:23|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:24|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:24|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:24|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:40:24|<<O>OeUtTdj08>e,0|$AIVDM,1,1,,B,13mDP2001`0vii>O>OeUtTdj08>e,0 +2025-07-24T06:40:25|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:25|<<s,0|$AIVDM,1,1,,B,15ABS400020wW1rO;:GjBTTl0H>s,0 +2025-07-24T06:40:25|<<@003Pv9RHNwoRUqPjj04jP,0|$AIVDM,1,1,,B,13@pD>@003Pv9RHNwoRUqPjj04jP,0 +2025-07-24T06:40:25|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:25|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:25|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:40:25|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:25|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:25|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:26|<<H>O;7;3`gvl08?Q,0|$AIVDM,1,1,,B,13:iFj3P01Pv>H>O;7;3`gvl08?Q,0 +2025-07-24T06:40:26|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:26|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:26|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:40:26|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:27|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:27|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:27|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:40:27|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:27|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:27|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:28|<<j482@ueP@8P@0008u8eDl00000000000000o589::4000;Q1CEB,0|$AIVDM,2,1,1,B,53@>j482@ueP@8P@0008u8eDl00000000000000o589::4000;Q1CEB,0 +2025-07-24T06:40:28|<<>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:28|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:28|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:40:28|<<>>Seatalk1|$STALK,9C,71,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:29|<<>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:29|<<>>Seatalk1|$STALK,85,06,00,E2,95,00,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.09 NM } +2025-07-24T06:40:29|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:40:29|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:29|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:29|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:30|<<0?ITGWhrj=oCwg1h0Rp,0|$AIVDM,1,1,,B,B39J46P0>0?ITGWhrj=oCwg1h0Rp,0 +2025-07-24T06:40:30|<<>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:30|<<>>Seatalk1|$STALK,85,16,00,22,86,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.08 NM } +2025-07-24T06:40:30|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:40:30|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:31|<<H?o@<7itwLB3wgQlD1q,0|$AIVDM,1,1,,A,B3@oGQ@0>H?o@<7itwLB3wgQlD1q,0 +2025-07-24T06:40:31|<<H?VLoWiHbbH3wgUoP06,0|$AIVDM,1,1,,A,B39inLP0>H?VLoWiHbbH3wgUoP06,0 +2025-07-24T06:40:31|<<>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:31|<<>>Seatalk1|$STALK,85,16,00,22,86,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.08 NM } +2025-07-24T06:40:31|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:40:31|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:31|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:31|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:32|<<h0000vM@4Oh0000vM@4O>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:32|<<>>Seatalk1|$STALK,85,16,00,22,86,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.08 NM } +2025-07-24T06:40:32|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:40:32|<<fPP00Pvb=tO79tP0?w32HCK,0|$AIVDM,1,1,,B,139T>fPP00Pvb=tO79tP0?w32HCK,0 +2025-07-24T06:40:33|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:33|<<>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:33|<<>>Seatalk1|$STALK,85,16,00,22,86,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.08 NM } +2025-07-24T06:40:33|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:40:33|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:33|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:33|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:34|<<,0|$AIVDM,1,1,,B,13@pVE001B0wNaRO:5i@C0A508D>,0 +2025-07-24T06:40:34|<<>>Seatalk1|$STALK,84,F6,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 327 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:34|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:34|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:40:34|<<>>Seatalk1|$STALK,9C,71,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:35|<<>>Seatalk1|$STALK,84,76,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:35|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:35|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:40:35|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:35|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:35|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:36|<<@003Pv9RVNwoPmt0m604jP,0|$AIVDM,1,1,,A,13@pD>@003Pv9RVNwoPmt0m604jP,0 +2025-07-24T06:40:36|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:36|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:36|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:40:36|<<H:O;7;3Rww80?gu,0|$AIVDM,1,1,,A,33:iFj3P00Pv>H:O;7;3Rww80?gu,0 +2025-07-24T06:40:36|<<>>Seatalk1|$STALK,9C,71,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:37|<<>>Seatalk1|$STALK,84,36,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:37|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:37|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:40:37|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:37|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:37|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:38|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:38|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:38|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:40:38|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:39|<<>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:39|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:39|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:40:39|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:39|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:39|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:40|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:40|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:40|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:40:40|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:41|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:41|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:41|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:40:41|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:41|<<>>Seatalk1|$STALK,20,81,32,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’280 kn, Forwarded = True } +2025-07-24T06:40:41|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:42|<<MLtbIB00RM,0|$AIVDM,1,1,,B,139V=f001PPvo=fO0>MLtbIB00RM,0 +2025-07-24T06:40:42|<<h0000vM?fOh0000vM?fO>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:42|<<fPP00Pvb=pO79tP0?wE20S6,0|$AIVDM,1,1,,A,139T>fPP00Pvb=pO79tP0?wE20S6,0 +2025-07-24T06:40:42|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:42|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:40:42|<<BdO;74KUhSH08IE,0|$AIVDM,1,1,,B,13:EIf00010v>BdO;74KUhSH08IE,0 +2025-07-24T06:40:43|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:43|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:43|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:43|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:40:43|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:40:43|<<>>Seatalk1|$STALK,20,81,32,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’280 kn, Forwarded = True } +2025-07-24T06:40:43|<<O:6b@BhAI0<2K,0|$AIVDM,1,1,,A,13@pVE001C0wNc>O:6b@BhAI0<2K,0 +2025-07-24T06:40:44|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:44|<<@003Pv9RjNwoNmt0mF04jP,0|$AIVDM,1,1,,B,13@pD>@003Pv9RjNwoNmt0mF04jP,0 +2025-07-24T06:40:44|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:44|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:44|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:40:44|<<MmUplkJ00S;,0|$AIVDM,1,1,,B,13mDP20P1`0vj04O>MmUplkJ00S;,0 +2025-07-24T06:40:45|<<>>Seatalk1|$STALK,9C,31,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:45|<<>>Seatalk1|$STALK,84,36,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:45|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:45|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:40:45|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:45|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:45|<<>>Seatalk1|$STALK,9C,31,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:46|<<>>Seatalk1|$STALK,84,36,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:46|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:46|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:40:46|<<>>Seatalk1|$STALK,9C,B1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:47|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:47|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:47|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:40:47|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:47|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:40:47|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:48|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:48|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:48|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:40:48|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:49|<<4?wR20Rs,0|$AIVDM,1,1,,A,139SHt?P00PvOkHO6L7>4?wR20Rs,0 +2025-07-24T06:40:49|<<QT5vleT04jP,0|$AIVDM,1,1,,A,13ku;qh01D0vlMbO>QT5vleT04jP,0 +2025-07-24T06:40:49|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:49|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:49|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:40:49|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:49|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:49|<<>>Seatalk1|$STALK,9C,31,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:50|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:50|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:50|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:40:50|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:51|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:51|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:51|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:40:51|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:40:51|<<>>Seatalk1|$STALK,20,81,32,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’280 kn, Forwarded = True } +2025-07-24T06:40:51|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:52|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:52|<<>>Seatalk1|$STALK,85,16,00,42,76,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.07 NM } +2025-07-24T06:40:52|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:40:52|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:53|<<G00?wT04jP,0|$AIVDM,1,1,,A,139EIqSP000w1W4Nv>G00?wT04jP,0 +2025-07-24T06:40:53|<<>>Seatalk1|$STALK,84,36,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:53|<<>>Seatalk1|$STALK,85,16,00,AA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 241 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:40:53|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:40:53|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:53|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:53|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:54|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:54|<<>>Seatalk1|$STALK,85,16,00,AA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 241 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:40:54|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:40:54|<<BjO;74KUhSf0HPB,0|$AIVDM,1,1,,A,13:EIf00000v>BjO;74KUhSf0HPB,0 +2025-07-24T06:40:55|<<>>Seatalk1|$STALK,9C,B1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:55|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:55|<<>>Seatalk1|$STALK,85,16,00,CA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 242 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:40:55|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:40:55|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:55|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:55|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:56|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:40:56|<<>>Seatalk1|$STALK,85,16,00,CA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 242 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:40:56|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:40:56|<<>>Seatalk1|$STALK,9C,31,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:57|<<O:20cR9Oj00UP,0|$AIVDM,1,1,,A,339O=5P02s0w0:>O:20cR9Oj00UP,0 +2025-07-24T06:40:57|<<uNO4V7HNnkl28Qm,0|$AIVDM,1,1,,A,13@p94hP0o0w>uNO4V7HNnkl28Qm,0 +2025-07-24T06:40:57|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:57|<<>>Seatalk1|$STALK,85,16,00,CA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 242 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:40:57|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:40:57|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:57|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:57|<<>>Seatalk1|$STALK,9C,31,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:40:58|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:58|<<>>Seatalk1|$STALK,85,16,00,CA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 242 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:40:58|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:40:58|<<PlmvDgn04jP,0|$AIVDM,1,1,,B,13ku;qh01D0vlRjO>PlmvDgn04jP,0 +2025-07-24T06:40:59|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:40:59|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:40:59|<<>>Seatalk1|$STALK,85,16,00,EA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 243 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:40:59|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:40:59|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:40:59|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:40:59|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:00|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:00|<<>>Seatalk1|$STALK,85,16,00,EA,57,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 243 °, BearingIsTrue = True, DistanceToDestination = 0.05 NM } +2025-07-24T06:41:00|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:41:00|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:01|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:01|<<>>Seatalk1|$STALK,85,16,00,0A,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 244 °, BearingIsTrue = True, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:01|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:41:01|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:01|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:01|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:02|<<h0000vM?fOh0000vM?fOfPP00Pvb>:O79u00?v5281N,0|$AIVDM,1,1,,A,139T>fPP00Pvb>:O79u00?v5281N,0 +2025-07-24T06:41:02|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:02|<<>>Seatalk1|$STALK,85,16,00,0A,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 244 °, BearingIsTrue = True, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:02|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:41:02|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:03|<<>>Seatalk1|$STALK,84,F6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:03|<<>>Seatalk1|$STALK,85,16,00,4A,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = True, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:03|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:41:03|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:03|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:03|<<`?oCU7iuK0B;wQQl0S;,0|$AIVDM,1,1,,B,B3@oGQ@0>`?oCU7iuK0B;wQQl0S;,0 +2025-07-24T06:41:04|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:04|<<BRO;74KUhP:082d,0|$AIVDM,1,1,,B,13:EIf00020v>BRO;74KUhP:082d,0 +2025-07-24T06:41:04|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:04|<<>>Seatalk1|$STALK,85,16,00,4A,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = True, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:04|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:41:04|<<r6O4Ui8JVh:20k@,0|$AIVDM,1,1,,A,33@p94hP0p0w>r6O4Ui8JVh:20k@,0 +2025-07-24T06:41:05|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:05|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:05|<<>>Seatalk1|$STALK,85,16,00,6A,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 247 °, BearingIsTrue = True, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:05|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:41:05|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:05|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:05|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:06|<<22222221D2i>3>4000?1h`51,0|$AIVDM,2,1,4,A,5815A9l2D;nqKLP?B20D22222221D2i>3>4000?1h`51,0 +2025-07-24T06:41:06|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:06|<<>>Seatalk1|$STALK,85,16,00,E2,47,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 243 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:06|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:41:06|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:07|<<pLO4U``OFj@284H,0|$AIVDM,1,1,,B,13@p94hP0o0w>pLO4U``OFj@284H,0 +2025-07-24T06:41:07|<<>>Seatalk1|$STALK,84,36,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:07|<<>>Seatalk1|$STALK,85,16,00,E2,47,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 243 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:07|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:41:07|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:07|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:07|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:08|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:08|<<>>Seatalk1|$STALK,85,16,00,E2,47,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 243 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:08|<<>>Seatalk1|$STALK,10,01,00,3A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 29 ° } +2025-07-24T06:41:08|<<P?Q3wT5kP06,0|$AIVDM,1,1,,B,B39cMA0000?b<27i>P?Q3wT5kP06,0 +2025-07-24T06:41:09|<<P0UvTfB0@5G,0|$AIVDM,1,1,,A,13ku;qh01D0vl`RO>P0UvTfB0@5G,0 +2025-07-24T06:41:09|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:09|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:09|<<>>Seatalk1|$STALK,85,16,00,E2,47,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 243 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:09|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:41:09|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:09|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:09|<<>>Seatalk1|$STALK,9C,B1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:10|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:10|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:10|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:41:10|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:11|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:11|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:11|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:41:11|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:11|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:11|<<>>Seatalk1|$STALK,9C,F1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:12|<<>>Seatalk1|$STALK,84,36,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:12|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:12|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:41:12|<<>>Seatalk1|$STALK,9C,31,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 334 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:13|<<Jv68lpL05n3,0|$AIVDM,1,1,,A,33mDP2001`0vjADO>Jv68lpL05n3,0 +2025-07-24T06:41:13|<<>>Seatalk1|$STALK,84,36,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:13|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:13|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:41:13|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:13|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:13|<<>>Seatalk1|$STALK,9C,71,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:14|<<mJO4UA`4F:N20n@,0|$AIVDM,1,1,,B,33@p94hP0n0w>mJO4UA`4F:N20n@,0 +2025-07-24T06:41:14|<<>>Seatalk1|$STALK,84,B6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:14|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:14|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:41:14|<<@003Pv9SJNwoIF3PnJ00Sn,0|$AIVDM,1,1,,A,13@pD>@003Pv9SJNwoIF3PnJ00Sn,0 +2025-07-24T06:41:15|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:15|<<>>Seatalk1|$STALK,84,F6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 335 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:15|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:15|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:41:15|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:15|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:15|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:16|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:16|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:16|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:41:16|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:17|<<GtO;7;KugvR0D0p,0|$AIVDM,1,1,,A,13:iFj3P01Pv>GtO;7;KugvR0D0p,0 +2025-07-24T06:41:17|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:17|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:17|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:41:17|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:17|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:17|<<m2O4U7W@U0T20nP,0|$AIVDM,1,1,,A,33@p94hP0h0w>m2O4U7W@U0T20nP,0 +2025-07-24T06:41:17|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:18|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:18|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:18|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:41:18|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:19|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:19|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:19|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:41:19|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:19|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:19|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:20|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:20|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:20|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:41:20|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:21|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:21|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:21|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:41:21|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:21|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:21|<<>>Seatalk1|$STALK,9C,F1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:22|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:22|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:22|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:41:22|<<fPP00Pvb=tO79u00?vg24jT,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79u00?vg24jT,0 +2025-07-24T06:41:23|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:23|<<h0020vM?fOh0020vM?fOG00?v`0@=l,0|$AIVDM,1,1,,B,139EIqSP000w1W4Nv>G00?v`0@=l,0 +2025-07-24T06:41:23|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:23|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:23|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:41:23|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:23|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:23|<<>>Seatalk1|$STALK,9C,71,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:24|<<A,0|$AIVDM,1,1,,B,13pr=F00000t13vO4RubGFBf08>A,0 +2025-07-24T06:41:24|<<C,0|$AIVDM,1,1,,A,13:EQR00020vLTBO:ekM0ALj0@>C,0 +2025-07-24T06:41:24|<<J,0|$AIVDM,1,1,,A,13@pVE001B0wNidO::?hB0@i0@>J,0 +2025-07-24T06:41:24|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:24|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:24|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:41:24|<<>>Seatalk1|$STALK,9C,F1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:25|<<@003Pv9SVNwoG5vPph00RO,0|$AIVDM,1,1,,B,13@pD>@003Pv9SVNwoG5vPph00RO,0 +2025-07-24T06:41:25|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:25|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:25|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:41:25|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:25|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:25|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:26|<<H8O;7;B`gvl04jT,0|$AIVDM,1,1,,B,13:iFj3P01Pv>H8O;7;B`gvl04jT,0 +2025-07-24T06:41:26|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:26|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:26|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:41:26|<<p8O4TllFjRn24jT,0|$AIVDM,1,1,,B,13@p94hP0S0w>p8O4TllFjRn24jT,0 +2025-07-24T06:41:27|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:27|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:27|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:27|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:41:27|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:27|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:27|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:28|<<m7iPHWQ3wf1jDPJ,0|$AIVDM,1,1,,A,B39thuP00@?M>m7iPHWQ3wf1jDPJ,0 +2025-07-24T06:41:28|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:28|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:28|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:41:28|<<NGEwlfr00SR,0|$AIVDM,1,1,,A,13ku;qh01D0vlknO>NGEwlfr00SR,0 +2025-07-24T06:41:28|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:29|<<>>Seatalk1|$STALK,84,F6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:29|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:29|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:41:29|<<>>Seatalk1|$STALK,11,00,05|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 5 } +2025-07-24T06:41:29|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:29|<<:b3wg1hHAd,0|$AIVDM,1,1,,B,B3`hD:b3wg1hHAd,0 +2025-07-24T06:41:30|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:30|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:30|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:30|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:41:30|<<j45000Pv>J2O;?7ihRdv0lb:,0|$AIVDM,1,1,,B,33@>j45000Pv>J2O;?7ihRdv0lb:,0 +2025-07-24T06:41:30|<<>>Seatalk1|$STALK,9C,31,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:31|<<H?VAG7iHA>JOwgUoP06,0|$AIVDM,1,1,,A,B39inLP0>H?VAG7iHA>JOwgUoP06,0 +2025-07-24T06:41:31|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:31|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:31|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:41:31|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:31|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:31|<<h0000vM?fOh0000vM?fO>>Seatalk1|$STALK,9C,71,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:32|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:32|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:32|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:41:32|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:33|<<>>Seatalk1|$STALK,84,76,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:33|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:33|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:41:33|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:33|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:33|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:34|<<HfV<4q60D2L,0|$AIVDM,1,1,,A,13mDP2001`0vjMDO>HfV<4q60D2L,0 +2025-07-24T06:41:34|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:34|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:34|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:41:34|<<G00?vv0HDT,0|$AIVDM,1,1,,A,139EIqSP000w1W4Nv>G00?vv0HDT,0 +2025-07-24T06:41:35|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:35|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:35|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:35|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:41:35|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:35|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:35|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:36|<<@003Pv9SlNwoDn10q600R8,0|$AIVDM,1,1,,A,13@pD>@003Pv9SlNwoDn10q600R8,0 +2025-07-24T06:41:36|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:36|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:36|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:41:36|<<WE?:980E1J,0|$AIVDM,1,1,,B,33ku8NE0000v?`pO;>WE?:980E1J,0 +2025-07-24T06:41:37|<<>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:37|<<hHPt7CGKIhHPt7CGKI>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:37|<<>>Seatalk1|$STALK,85,16,00,42,48,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 246 °, BearingIsTrue = False, DistanceToDestination = 0.04 NM } +2025-07-24T06:41:37|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:41:37|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:37|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:37|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:38|<<4?w<20S1,0|$AIVDM,1,1,,B,139SHt?P00PvOk0O6L:>4?w<20S1,0 +2025-07-24T06:41:38|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:38|<<>>Seatalk1|$STALK,85,16,00,0B,14,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 302 °, BearingIsTrue = True, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:38|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:41:38|<<MSUwlg>08Fv,0|$AIVDM,1,1,,B,13ku;qh01D0vlqJO>MSUwlg>08Fv,0 +2025-07-24T06:41:39|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:39|<<O:7AKba?>00S0,0|$AIVDM,1,1,,B,339O=5PP390vvV>O:7AKba?>00S0,0 +2025-07-24T06:41:39|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:39|<<>>Seatalk1|$STALK,85,16,00,2B,15,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 311 °, BearingIsTrue = True, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:39|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:41:39|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:39|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:39|<<0000,0|$AIVDM,1,1,,B,139vIM002kPw5VjO0V0ihAM>0000,0 +2025-07-24T06:41:40|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:40|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:40|<<>>Seatalk1|$STALK,85,16,00,2B,15,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 311 °, BearingIsTrue = True, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:40|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:41:40|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:41|<<svO4U:P`0cD21hP,0|$AIVDM,1,1,,B,33@p94hP0W0w>svO4U:P`0cD21hP,0 +2025-07-24T06:41:41|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:41|<<>>Seatalk1|$STALK,85,16,00,8B,16,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 322 °, BearingIsTrue = True, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:41|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:41:41|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:41|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:41|<<42=W7@0Dib,0|$AIVDM,1,1,,B,33cPHl50000v<3NO;>42=W7@0Dib,0 +2025-07-24T06:41:42|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:42|<<h0020vM?fOh0020vM?fOfPP00Pvb>>O79u00?wE2D0O,0|$AIVDM,1,1,,A,139T>fPP00Pvb>>O79u00?wE2D0O,0 +2025-07-24T06:41:42|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:42|<<>>Seatalk1|$STALK,85,16,00,03,16,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 318 °, BearingIsTrue = False, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:42|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:41:42|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:43|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:43|<<>>Seatalk1|$STALK,85,16,00,03,16,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 318 °, BearingIsTrue = False, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:43|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:41:43|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:43|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:43|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:44|<<O0VT1eiMF01fi,0|$AIVDM,1,1,,B,339vIM002jPw5f>O0VT1eiMF01fi,0 +2025-07-24T06:41:44|<<@003Pv9SvNwoCF10qF00S2,0|$AIVDM,1,1,,B,13@pD>@003Pv9SvNwoCF10qF00S2,0 +2025-07-24T06:41:44|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:44|<<>>Seatalk1|$STALK,85,16,00,03,16,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 318 °, BearingIsTrue = False, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:44|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:41:44|<<G00?wB00Rb,0|$AIVDM,1,1,,B,139EIqSP000w1W4Nv>G00?wB00Rb,0 +2025-07-24T06:41:45|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:45|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:45|<<>>Seatalk1|$STALK,85,16,00,03,16,00,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 318 °, BearingIsTrue = False, DistanceToDestination = 0.01 NM } +2025-07-24T06:41:45|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:41:45|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:45|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:45|<<>>Seatalk1|$STALK,9C,71,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:46|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:46|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:46|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:41:46|<<>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:47|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:47|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:47|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:41:47|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:47|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:47|<<vPO4UKif17P2<10,0|$AIVDM,1,1,,B,13@p94hP0d0w>vPO4UKif17P2<10,0 +2025-07-24T06:41:48|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:48|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:48|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:48|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:41:48|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:49|<<KUaAR0000,0|$AIVDM,1,1,,A,339O=5PP390vv;BO:8>KUaAR0000,0 +2025-07-24T06:41:49|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:49|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:49|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:41:49|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:49|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:49|<<>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:50|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:50|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:50|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:41:50|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:51|<<wfO4USA=0s`21hh,0|$AIVDM,1,1,,A,33@p94hP0f0w>wfO4USA=0s`21hh,0 +2025-07-24T06:41:51|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:51|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:51|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:41:51|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:51|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:41:51|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:52|<<fPP00Pvb>:O79sP0?wa2@Nf,0|$AIVDM,1,1,,B,139T>fPP00Pvb>:O79sP0?wa2@Nf,0 +2025-07-24T06:41:52|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:52|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:52|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:41:52|<<h0000vM@4Oh0000vM@4O>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:53|<<tn4h5AOR21LTitn4h5AOR21LTi>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:53|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:53|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:41:53|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:53|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:53|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:54|<<@003Pv9T:NwoA610sb0D0J,0|$AIVDM,1,1,,A,13@pD>@003Pv9T:NwoA610sb0D0J,0 +2025-07-24T06:41:54|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:54|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:54|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:41:54|<<CLO;74DH@Kf0D1n,0|$AIVDM,1,1,,A,13:EIf00020v>CLO;74DH@Kf0D1n,0 +2025-07-24T06:41:55|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:55|<<,0|$AIVDM,1,1,,B,1815A9h02110S?,0 +2025-07-24T06:41:55|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:55|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:55|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:41:55|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:55|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:55|<<HFO;7;BeOwh00SI,0|$AIVDM,1,1,,A,13:iFj3P00Pv>HFO;7;BeOwh00SI,0 +2025-07-24T06:41:56|<<>>Seatalk1|$STALK,9C,71,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:41:56|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:41:56|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:56|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:41:56|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:57|<<>>Seatalk1|$STALK,84,F6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:57|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:57|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:41:57|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:57|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:57|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:58|<<4?wl2<0e,0|$AIVDM,1,1,,B,139SHt?P00PvOk6O6L:>4?wl2<0e,0 +2025-07-24T06:41:58|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:58|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:58|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:41:58|<<8wwuQh8Rg,0|$AIVDM,1,1,,A,B3prNN@0=0?ghmWi46>8wwuQh8Rg,0 +2025-07-24T06:41:59|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:41:59|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:41:59|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:41:59|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:41:59|<<,0|$AIVDM,1,1,,A,13KKDCP00APv<`BO;5LKFpun00S>,0 +2025-07-24T06:41:59|>>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:41:59|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:41:59|<<>>Seatalk1|$STALK,9C,71,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:00|<<0?IOe7hqP1r7wP1h0S1,0|$AIVDM,1,1,,A,B39J46P0>0?IOe7hqP1r7wP1h0S1,0 +2025-07-24T06:42:00|<<>>Seatalk1|$STALK,84,36,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:00|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:00|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:42:00|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:01|<<<,0|$AIVDM,2,1,9,B,53@pVE82;AIPu`QS:20PDTl@4j1:22222222220Q7PH9:4000=Rl8><,0 +2025-07-24T06:42:01|<<>>Seatalk1|$STALK,84,36,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:01|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:01|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:42:01|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:01|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:42:01|<<O=jq`And404j`,0|$AIVDM,1,1,,B,13@orC0P3G0vuf>O=jq`And404j`,0 +2025-07-24T06:42:01|<<>>Seatalk1|$STALK,9C,B1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:02|<<>>Seatalk1|$STALK,84,B6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:02|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:02|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:42:02|<<>>Seatalk1|$STALK,9C,B1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:03|<<O:9IsF`l600U@,0|$AIVDM,1,1,,B,339O=5PP350vuU>O:9IsF`l600U@,0 +2025-07-24T06:42:03|<<>>Seatalk1|$STALK,84,B6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:03|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:03|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:42:03|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:03|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:42:03|<<>>Seatalk1|$STALK,9C,31,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:04|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:04|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:04|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:42:04|<<>>Seatalk1|$STALK,9C,31,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:05|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:05|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:05|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:42:05|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:05|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:42:05|<<4?v4?v>>Seatalk1|$STALK,9C,F1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:06|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:06|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:06|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:42:06|<<HJO;7;jSOv<084:,0|$AIVDM,1,1,,B,13:iFj3P00Pv>HJO;7;jSOv<084:,0 +2025-07-24T06:42:07|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:07|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:07|<<>>Seatalk1|$STALK,85,06,00,E2,F5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.11 NM } +2025-07-24T06:42:07|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:42:07|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:07|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:42:07|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:08|<<>>Seatalk1|$STALK,84,F6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:08|<<>>Seatalk1|$STALK,85,06,00,6A,C6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.08 NM } +2025-07-24T06:42:08|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:42:08|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:09|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:09|<<>>Seatalk1|$STALK,85,06,00,6A,C6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.08 NM } +2025-07-24T06:42:09|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:09|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:09|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:42:09|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:10|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:10|<<>>Seatalk1|$STALK,85,06,00,6A,C6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.08 NM } +2025-07-24T06:42:10|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:10|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:11|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:11|<<>>Seatalk1|$STALK,85,06,00,6A,C6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.08 NM } +2025-07-24T06:42:11|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:11|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:11|<<>>Seatalk1|$STALK,20,81,34,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’331.2 kn, Forwarded = True } +2025-07-24T06:42:11|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:12|<<>>Seatalk1|$STALK,84,76,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:12|<<>>Seatalk1|$STALK,85,06,00,6A,C6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.08 NM } +2025-07-24T06:42:12|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:42:12|<<fPP00Pvb>4O79rh0?vK287b,0|$AIVDM,1,1,,B,139T>fPP00Pvb>4O79rh0?vK287b,0 +2025-07-24T06:42:13|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:13|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:13|<<>>Seatalk1|$STALK,85,06,00,6A,C6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.08 NM } +2025-07-24T06:42:13|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:42:13|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:13|<<>>Seatalk1|$STALK,20,81,33,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’305.6 kn, Forwarded = True } +2025-07-24T06:42:13|<<h0000vM@4Oh0000vM@4O>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:14|<<>>Seatalk1|$STALK,84,B6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:14|<<>>Seatalk1|$STALK,85,06,00,6A,C6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.08 NM } +2025-07-24T06:42:14|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:42:14|<<CFO;754H@LN00RL,0|$AIVDM,1,1,,A,13:EIf00010v>CFO;754H@LN00RL,0 +2025-07-24T06:42:15|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:15|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:15|<<>>Seatalk1|$STALK,85,06,00,6A,B6,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:15|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:15|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:15|<<>>Seatalk1|$STALK,20,81,32,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’280 kn, Forwarded = True } +2025-07-24T06:42:15|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:16|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:16|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:16|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:42:16|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:17|<<HJO;7;jSOvP0@:=,0|$AIVDM,1,1,,A,13:iFj3P00Pv>HJO;7;jSOvP0@:=,0 +2025-07-24T06:42:17|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:17|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:17|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:42:17|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:17|<<>>Seatalk1|$STALK,20,81,32,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’280 kn, Forwarded = True } +2025-07-24T06:42:17|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:18|<<CDR0Dvr,0|$AIVDM,1,1,,B,339LE450000w1`NNvMEk>CDR0Dvr,0 +2025-07-24T06:42:18|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:18|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:18|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:42:18|<<4?vT2Dj:,0|$AIVDM,1,1,,B,33aDAo5P01PukrfO62k>4?vT2Dj:,0 +2025-07-24T06:42:18|<<J;V0Tf`00RS,0|$AIVDM,1,1,,B,13ku;qh01D0vm@HO>J;V0Tf`00RS,0 +2025-07-24T06:42:19|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:19|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:19|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:19|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:42:19|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:19|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:42:19|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:20|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:20|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:20|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:42:20|<<Pt`08Pt`08>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:21|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:21|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:21|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:21|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:21|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:42:21|<<G?wc5oP06,0|$AIVDM,1,1,,B,B39L?Q0008?gNPWgOv>G?wc5oP06,0 +2025-07-24T06:42:22|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:22|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:22|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:22|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:22|<<fPP00Pvb=tO79r@0?vg20S>,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79r@0?vg20S>,0 +2025-07-24T06:42:23|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:23|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:23|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:23|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:42:23|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:23|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:42:23|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:24|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:24|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:24|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:42:24|<<C?n=lpj00RJ,0|$AIVDM,1,1,,B,13mDP2001`0vjrbO>C?n=lpj00RJ,0 +2025-07-24T06:42:25|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:25|<<s,0|$AIVDM,1,1,,A,B39wP?005`?oMiWi?q9JkwdQl@>s,0 +2025-07-24T06:42:25|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:25|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:25|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:25|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:25|<<>>Seatalk1|$STALK,20,81,2E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’177.6 kn, Forwarded = True } +2025-07-24T06:42:25|<<>>Seatalk1|$STALK,9C,B1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 334 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:26|<<H8O;7H8O;7>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:26|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:26|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:26|<<fO4W=i`1Vn20SF,0|$AIVDM,1,1,,B,13@p94hP0h0w?>fO4W=i`1Vn20SF,0 +2025-07-24T06:42:27|<<>>Seatalk1|$STALK,9C,31,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:27|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:27|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:27|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:27|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:27|<<>>Seatalk1|$STALK,20,81,2E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’177.6 kn, Forwarded = True } +2025-07-24T06:42:27|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:28|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:28|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:28|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:28|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:29|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:29|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:29|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:29|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:29|<<>>Seatalk1|$STALK,20,81,2D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’152 kn, Forwarded = True } +2025-07-24T06:42:29|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:30|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:30|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:30|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:42:30|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:31|<<`?oM0Wiva4BCwgQl<1w,0|$AIVDM,1,1,,A,B3@oGQ@0>`?oM0Wiva4BCwgQl<1w,0 +2025-07-24T06:42:31|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:31|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:31|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:42:31|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:31|<<>>Seatalk1|$STALK,20,81,2D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’152 kn, Forwarded = True } +2025-07-24T06:42:31|<<h0000vM@4Oh0000vM@4O>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:32|<<H?V5?WiGtRLKwh5oP06,0|$AIVDM,1,1,,A,B39inLP0>H?V5?WiGtRLKwh5oP06,0 +2025-07-24T06:42:32|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:32|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:32|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:32|<<fPP00Pvb=tO79s00?w32@CK,0|$AIVDM,1,1,,B,139T>fPP00Pvb=tO79s00?w32@CK,0 +2025-07-24T06:42:33|<<>>Seatalk1|$STALK,9C,F1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:33|<<>>Seatalk1|$STALK,84,F6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:33|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:33|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:42:33|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:33|<<>>Seatalk1|$STALK,20,81,2C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’126.4 kn, Forwarded = True } +2025-07-24T06:42:33|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:34|<<O4WAT1TC620t@,0|$AIVDM,1,1,,B,33@p94hP0M0w?B>O4WAT1TC620t@,0 +2025-07-24T06:42:34|<<BBn=Tq60@DG,0|$AIVDM,1,1,,A,13mDP2001a0vjwVO>BBn=Tq60@DG,0 +2025-07-24T06:42:34|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:34|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:34|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:42:34|<<>>Seatalk1|$STALK,9C,71,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:35|<<>>Seatalk1|$STALK,84,B6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:35|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:35|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:42:35|<<5UC@7mnnq00;40w,0|$AIVDM,1,1,,B,H3prNNDTCBD:>5UC@7mnnq00;40w,0 +2025-07-24T06:42:35|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:35|<<>>Seatalk1|$STALK,20,81,2B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’100.8 kn, Forwarded = True } +2025-07-24T06:42:35|<<>>Seatalk1|$STALK,9C,B1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:36|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:36|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:36|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:42:36|<<Trls:20SW,0|$AIVDM,1,1,,A,13@p94hP0N0w?CDO4W>Trls:20SW,0 +2025-07-24T06:42:37|<<>>Seatalk1|$STALK,9C,F1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:37|<<GjO;7=Kngw80@F3,0|$AIVDM,1,1,,A,13:iFj3P01Pv>GjO;7=Kngw80@F3,0 +2025-07-24T06:42:37|<<>>Seatalk1|$STALK,84,B6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:37|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:37|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:42:37|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:37|<<>>Seatalk1|$STALK,20,81,2B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’100.8 kn, Forwarded = True } +2025-07-24T06:42:37|<<>>Seatalk1|$STALK,9C,B1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:38|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:38|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:38|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:38|<<HVF1Dg>04j`,0|$AIVDM,1,1,,B,13ku;qh01D0vmJvO>HVF1Dg>04j`,0 +2025-07-24T06:42:39|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:39|<<00UP,0|$AIVDM,1,1,,B,339O=5PP340vsvpO:;2s9q1>00UP,0 +2025-07-24T06:42:39|<<>>Seatalk1|$STALK,84,76,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:39|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:39|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:39|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:39|<<>>Seatalk1|$STALK,20,81,2B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’100.8 kn, Forwarded = True } +2025-07-24T06:42:39|<<>>Seatalk1|$STALK,9C,71,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:40|<<0<20,0|$AIVDM,1,1,,B,139UEUSP140udolO15wVuww>0<20,0 +2025-07-24T06:42:40|<<>>Seatalk1|$STALK,84,76,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:40|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:40|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:42:40|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:41|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:41|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:41|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:42:41|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:41|<<>>Seatalk1|$STALK,20,81,2B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’100.8 kn, Forwarded = True } +2025-07-24T06:42:41|<<>>Seatalk1|$STALK,9C,71,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:42|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:42|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:42|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:42|<<C0O;764H@IH00T0,0|$AIVDM,1,1,,B,13:EIf00010v>C0O;764H@IH00T0,0 +2025-07-24T06:42:43|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:43|<<>>Seatalk1|$STALK,84,F6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:43|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:43|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:42:43|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:43|<<>>Seatalk1|$STALK,20,81,2B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’100.8 kn, Forwarded = True } +2025-07-24T06:42:43|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:44|<<@003Pv9U@003Pv9U>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:44|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:44|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:42:44|<<A86=TqJ0D2M,0|$AIVDM,1,1,,B,13mDP2001a0vk6FO>A86=TqJ0D2M,0 +2025-07-24T06:42:45|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:45|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:45|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:45|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:45|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:45|<<>>Seatalk1|$STALK,20,81,2A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’075.2 kn, Forwarded = True } +2025-07-24T06:42:45|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:46|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:46|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:46|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:46|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:47|<<>>Seatalk1|$STALK,84,76,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:47|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:47|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:42:47|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:47|<<>>Seatalk1|$STALK,20,81,2A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’075.2 kn, Forwarded = True } +2025-07-24T06:42:47|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:48|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:48|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:48|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:48|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:49|<<>>Seatalk1|$STALK,84,76,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:49|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:49|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:49|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:49|<<>>Seatalk1|$STALK,20,81,2A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’075.2 kn, Forwarded = True } +2025-07-24T06:42:49|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:50|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:50|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:50|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:42:50|<<>>Seatalk1|$STALK,9C,71,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:51|<<>>Seatalk1|$STALK,84,76,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:51|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:51|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:42:51|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:51|<<>>Seatalk1|$STALK,20,81,2A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’075.2 kn, Forwarded = True } +2025-07-24T06:42:51|<<>>Seatalk1|$STALK,9C,71,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:52|<<fPP00Pvb=nO79u00?wa2<0Q,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79u00?wa2<0Q,0 +2025-07-24T06:42:52|<<>>Seatalk1|$STALK,84,76,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:52|<<>>Seatalk1|$STALK,85,06,00,E2,B5,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.07 NM } +2025-07-24T06:42:52|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:42:52|<<NvH1ssaUb0D0C,0|$AIVDM,1,1,,B,13`lQb00120vw;>NvH1ssaUb0D0C,0 +2025-07-24T06:42:53|<<>>Seatalk1|$STALK,9C,71,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:53|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:53|<<>>Seatalk1|$STALK,85,06,00,6A,76,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.03 NM } +2025-07-24T06:42:53|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:53|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:53|<<>>Seatalk1|$STALK,20,81,2A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’075.2 kn, Forwarded = True } +2025-07-24T06:42:53|<<3dpwwV0@Oa,0|$AIVDM,1,1,,A,139EIqSP0A0w1bfNv>3dpwwV0@Oa,0 +2025-07-24T06:42:53|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:54|<<@003Pv9UHNwo5n10ub0@P1,0|$AIVDM,1,1,,A,13@pD>@003Pv9UHNwo5n10ub0@P1,0 +2025-07-24T06:42:54|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:54|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:42:54|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:54|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:55|<<sH99f0000,0|$AIVDM,1,1,,B,339O=5PP340vsC@O:<>sH99f0000,0 +2025-07-24T06:42:55|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:55|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:42:55|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:42:55|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:55|<<>>Seatalk1|$STALK,20,81,2A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’075.2 kn, Forwarded = True } +2025-07-24T06:42:55|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:56|<<GtO;7=CNgwh0<0q,0|$AIVDM,1,1,,A,13:iFj3P00Pv>GtO;7=CNgwh0<0q,0 +2025-07-24T06:42:56|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:56|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:42:56|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:56|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:57|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:57|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:42:57|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:57|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:42:57|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:42:57|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:42:58|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:42:58|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:42:58|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:42:58|<<>>Seatalk1|$STALK,9C,31,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:42:59|<<>>Seatalk1|$STALK,84,76,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:42:59|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:42:59|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:42:59|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:42:59|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:42:59|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:00|<<>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:00|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:00|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:43:00|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:01|<<O:O:>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:01|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:01|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:43:01|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:01|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:01|<<>>Seatalk1|$STALK,9C,31,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:02|<<>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:02|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:02|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:43:02|<<>>Seatalk1|$STALK,9C,B1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:03|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:03|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:03|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:43:03|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:43:03|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:03|<<`?oPUWiw64BKwR1l82J,0|$AIVDM,1,1,,B,B3@oGQ@0>`?oPUWiw64BKwR1l82J,0 +2025-07-24T06:43:04|<<>>Seatalk1|$STALK,9C,B1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:04|<<;Lw?v20D11,0|$AIVDM,1,1,,B,139EIqSP0B0w1bfNv>;Lw?v20D11,0 +2025-07-24T06:43:04|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:04|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:04|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:43:04|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:05|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:05|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:05|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:43:05|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:05|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:05|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:06|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:06|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:06|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:43:06|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:07|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:07|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:43:07|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:43:07|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:07|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:07|<<0@4h,0|$AIVDM,1,1,,B,139vIM002uPw8?:O0jH1hiJ>0@4h,0 +2025-07-24T06:43:08|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:08|<<00S;,0|$AIVDM,1,1,,A,19NSghP02AQ1cJ`O?SsD=kH>00S;,0 +2025-07-24T06:43:08|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:08|<<>>Seatalk1|$STALK,85,06,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:08|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:43:08|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:09|<<4?vB20R@,0|$AIVDM,1,1,,A,139SHt?P00PvOkhO6L4>4?vB20R@,0 +2025-07-24T06:43:09|<<>>Seatalk1|$STALK,84,36,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:09|<<>>Seatalk1|$STALK,85,06,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:09|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:43:09|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:09|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:09|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:10|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:10|<<>>Seatalk1|$STALK,85,06,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:10|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:43:10|<<8lD00aA,0|$AIVDM,1,1,,B,339O=5PP2w0vrbtO:=B;>8lD00aA,0 +2025-07-24T06:43:11|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:11|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:11|<<>>Seatalk1|$STALK,85,06,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:11|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:43:11|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:11|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:11|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:12|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:12|<<>>Seatalk1|$STALK,85,06,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:12|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:43:12|<<fPP00Pvb=jO79t@0?vK24jd,0|$AIVDM,1,1,,B,139T>fPP00Pvb=jO79t@0?vK24jd,0 +2025-07-24T06:43:12|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:13|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:13|<<C:O;75kd@HL0<1o,0|$AIVDM,1,1,,A,13:EIf00010v>C:O;75kd@HL0<1o,0 +2025-07-24T06:43:13|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:13|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:43:13|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:13|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:13|<<h0020vM?fOh0020vM?fO>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:14|<<M0<2N,0|$AIVDM,1,1,,B,13@pVE001C0wO3LO:D1@BP>M0<2N,0 +2025-07-24T06:43:14|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:14|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:14|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:43:14|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:15|<<>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:15|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:15|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:43:15|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:15|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:15|<<@003Pv9UhNwo1V60tL0@9R,0|$AIVDM,1,1,,A,13@pD>@003Pv9UhNwo1V60tL0@9R,0 +2025-07-24T06:43:16|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:16|<<>>Seatalk1|$STALK,84,76,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:16|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:16|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:43:16|<<>>Seatalk1|$STALK,9C,B1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:17|<<>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:17|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:17|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:43:17|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:17|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:17|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:18|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:18|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:18|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:43:18|<<>>Seatalk1|$STALK,9C,31,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:19|<<4?vV2D0e,0|$AIVDM,1,1,,B,139SHt?P00PvOkJO6L7>4?vV2D0e,0 +2025-07-24T06:43:19|<<>>Seatalk1|$STALK,84,76,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:19|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:19|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:43:19|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:19|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:19|<<>>Seatalk1|$STALK,9C,31,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:20|<<>>Seatalk1|$STALK,84,36,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:20|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:20|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:43:20|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:21|<<>>Seatalk1|$STALK,84,76,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:21|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:21|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:43:21|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:21|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:21|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:22|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:22|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:22|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:43:22|<<fPP00Pvb=hO79tP0?vg2D0Q,0|$AIVDM,1,1,,A,139T>fPP00Pvb=hO79tP0?vg2D0Q,0 +2025-07-24T06:43:23|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:23|<<=66=4ph0H=u,0|$AIVDM,1,1,,B,13mDP2001a0vkK:O>=66=4ph0H=u,0 +2025-07-24T06:43:23|<<>>Seatalk1|$STALK,84,76,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:23|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:23|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:43:23|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:23|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:43:23|<<CBO;74Cd@Jj0D1o,0|$AIVDM,1,1,,B,13:EIf00010v>CBO;74Cd@Jj0D1o,0 +2025-07-24T06:43:24|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:24|<<@003Pv9UtNwo063Ptf08>I,0|$AIVDM,1,1,,B,13@pD>@003Pv9UtNwo063Ptf08>I,0 +2025-07-24T06:43:24|<<J,0|$AIVDM,1,1,,A,13@pVE001B0wO56O:Dr@C@@i08>J,0 +2025-07-24T06:43:24|<<>>Seatalk1|$STALK,84,76,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:24|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:24|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:43:24|<<>>Seatalk1|$STALK,9C,31,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:25|<<O:=sK4Htj0000,0|$AIVDM,1,1,,A,339O=5PP300vr1>O:=sK4Htj0000,0 +2025-07-24T06:43:25|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:25|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:25|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:43:25|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:25|<<>>Seatalk1|$STALK,20,81,28,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’024 kn, Forwarded = True } +2025-07-24T06:43:25|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:26|<<>>Seatalk1|$STALK,84,B6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:26|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:26|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:43:26|<<>>Seatalk1|$STALK,9C,31,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:27|<<1K5ptn00W@,0|$AIVDM,1,1,,B,339O=5P0300vqsdO:>1K5ptn00W@,0 +2025-07-24T06:43:27|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:27|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:27|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:43:27|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:27|<<>>Seatalk1|$STALK,20,81,27,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 998.4 kn, Forwarded = True } +2025-07-24T06:43:27|<<>>Seatalk1|$STALK,9C,31,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:28|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:28|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:28|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:43:28|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:29|<<DGV1ldt0<25,0|$AIVDM,1,1,,A,13ku;qh01D0vmo`O>DGV1ldt0<25,0 +2025-07-24T06:43:29|<<>>Seatalk1|$STALK,84,B6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:29|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:29|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:43:29|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:29|<<>>Seatalk1|$STALK,20,81,26,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 972.8 kn, Forwarded = True } +2025-07-24T06:43:29|<<9s8Hvr00Oi,0|$AIVDM,1,1,,A,339O=5P0300vqn:O:>9s8Hvr00Oi,0 +2025-07-24T06:43:29|<<vlO4Tu967jt22?0,0|$AIVDM,1,1,,A,33@p94hP0m0w>vlO4Tu967jt22?0,0 +2025-07-24T06:43:30|<<>>Seatalk1|$STALK,9C,31,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 334 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:30|<<v00<@,0|$AIVDM,1,1,,A,33:EQR0P080vLW2O:ehDcA>v00<@,0 +2025-07-24T06:43:30|<<v01fP,0|$AIVDM,1,1,,B,33:EQR0P080vLWv01fP,0 +2025-07-24T06:43:30|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:30|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:43:30|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:43:30|<<87wg1h4jd,0|$AIVDM,1,1,,B,B3prNN@0=@?gUOWi34>87wg1h4jd,0 +2025-07-24T06:43:31|<<>>Seatalk1|$STALK,9C,B1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:31|<<`?oSK7iwMdBowgQl8BM,0|$AIVDM,1,1,,A,B3@oGQ@0>`?oSK7iwMdBowgQl8BM,0 +2025-07-24T06:43:31|<<AK98vv0000,0|$AIVDM,1,1,,B,339O=5P0300vqhfO:>AK98vv0000,0 +2025-07-24T06:43:31|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:31|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:31|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:43:31|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:31|<<>>Seatalk1|$STALK,20,81,24,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 921.6 kn, Forwarded = True } +2025-07-24T06:43:31|<<H?UqQWiGaBLSwgUoP06,0|$AIVDM,1,1,,A,B39inLP0>H?UqQWiGaBLSwgUoP06,0 +2025-07-24T06:43:31|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:32|<<>>Seatalk1|$STALK,84,36,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:32|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:32|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:43:32|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:33|<<CNO;733d@K40@Cf,0|$AIVDM,1,1,,A,13:EIf00010v>CNO;733d@K40@Cf,0 +2025-07-24T06:43:33|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:33|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:33|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:43:33|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:33|<<>>Seatalk1|$STALK,20,81,23,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 896 kn, Forwarded = True } +2025-07-24T06:43:33|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:34|<<@003Pv9V8NwnvEvPu20<0J,0|$AIVDM,1,1,,A,13@pD>@003Pv9V8NwnvEvPu20<0J,0 +2025-07-24T06:43:34|<<;qF;qF>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:34|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:34|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:43:34|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:35|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:35|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:35|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:43:35|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:43:35|<<>>Seatalk1|$STALK,20,81,23,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 896 kn, Forwarded = True } +2025-07-24T06:43:35|<<>>Seatalk1|$STALK,9C,31,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:36|<<>>Seatalk1|$STALK,84,76,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:36|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:36|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:43:36|<<>>Seatalk1|$STALK,9C,31,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:37|<<r6O4Tvsvqm<2<10,0|$AIVDM,1,1,,A,13@p94hP0g0w>r6O4Tvsvqm<2<10,0 +2025-07-24T06:43:37|<<>>Seatalk1|$STALK,84,F6,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 327 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:37|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:37|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:43:37|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:37|<<>>Seatalk1|$STALK,20,81,22,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 870.4 kn, Forwarded = True } +2025-07-24T06:43:37|<<>>Seatalk1|$STALK,9C,B1,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 326 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:38|<<>>Seatalk1|$STALK,84,76,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 327 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:38|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:38|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:43:38|<<CWV1De>00S4,0|$AIVDM,1,1,,B,13ku;qh01D0vmt`O>CWV1De>00S4,0 +2025-07-24T06:43:39|<<>>Seatalk1|$STALK,9C,71,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 327 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:39|<<hs>I5>00WP,0|$AIVDM,1,1,,B,339O=5PP310vqJlO:>hs>I5>00WP,0 +2025-07-24T06:43:39|<<>>Seatalk1|$STALK,84,36,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 326 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:39|<<>>Seatalk1|$STALK,85,16,00,E2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:43:39|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:43:39|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:39|<<>>Seatalk1|$STALK,20,81,22,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 870.4 kn, Forwarded = True } +2025-07-24T06:43:39|<<>>Seatalk1|$STALK,9C,F1,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 325 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:40|<<08Gc,0|$AIVDM,1,1,,B,139UEUSP0q0udqPO112VF?w>08Gc,0 +2025-07-24T06:43:40|<<>>Seatalk1|$STALK,84,B6,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 324 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:40|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:40|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:43:40|<<>>Seatalk1|$STALK,9C,71,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 325 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:41|<<pLO4U5dFqoD21v@,0|$AIVDM,1,1,,B,33@p94hP0l0w>pLO4U5dFqoD21v@,0 +2025-07-24T06:43:41|<<>>Seatalk1|$STALK,84,76,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 325 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:41|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:41|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:43:41|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:41|<<>>Seatalk1|$STALK,20,81,21,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 844.8 kn, Forwarded = True } +2025-07-24T06:43:41|<<>>Seatalk1|$STALK,9C,71,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 325 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:42|<<fPP00Pvb=hO79u00?wE2<0N,0|$AIVDM,1,1,,A,139T>fPP00Pvb=hO79u00?wE2<0N,0 +2025-07-24T06:43:42|<<>>Seatalk1|$STALK,84,76,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 325 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:42|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:42|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:43:42|<<>>Seatalk1|$STALK,9C,31,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 324 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:43|<<2222220s386330000911DhD,0|$AIVDM,2,1,5,B,53@oL@T1jeKPuDh;:2058pF1@U2222220s386330000911DhD,0 +2025-07-24T06:43:43|<<>>Seatalk1|$STALK,84,F6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 323 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:43|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:43|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:43:43|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:43|<<>>Seatalk1|$STALK,20,81,21,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 844.8 kn, Forwarded = True } +2025-07-24T06:43:43|<<>>Seatalk1|$STALK,9C,B1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 322 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:44|<<@003Pv9V@NwntmvPsD0@J5,0|$AIVDM,1,1,,B,13@pD>@003Pv9V@NwntmvPsD0@J5,0 +2025-07-24T06:43:44|<<CRO;723d@KJ0HJ;,0|$AIVDM,1,1,,B,13:EIf00000v>CRO;723d@KJ0HJ;,0 +2025-07-24T06:43:44|<<>>Seatalk1|$STALK,84,76,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 323 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:44|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:44|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:43:44|<<:d6<4qJ0@JL,0|$AIVDM,1,1,,B,13mDP2001b0vkaDO>:d6<4qJ0@JL,0 +2025-07-24T06:43:45|<<nn>>Seatalk1|$STALK,9C,F1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:45|<<>>Seatalk1|$STALK,84,36,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 322 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:45|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:45|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:43:45|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:43:45|<<>>Seatalk1|$STALK,20,81,20,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 819.2 kn, Forwarded = True } +2025-07-24T06:43:45|<<>>Seatalk1|$STALK,9C,F1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:46|<<4?wL2@KL,0|$AIVDM,1,1,,B,139Q2bPP00Ptn:VO260>4?wL2@KL,0 +2025-07-24T06:43:46|<<H8O;7H8O;7>>Seatalk1|$STALK,84,76,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 321 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:46|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:46|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:43:46|<<>>Seatalk1|$STALK,9C,71,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:47|<<>>Seatalk1|$STALK,84,76,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 321 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:47|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:47|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:43:47|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:47|<<>>Seatalk1|$STALK,20,81,1F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 793.6 kn, Forwarded = True } +2025-07-24T06:43:47|<<lHO4UIdDbAP24jd,0|$AIVDM,1,1,,B,13@p94hP0r0w>lHO4UIdDbAP24jd,0 +2025-07-24T06:43:48|<<>>Seatalk1|$STALK,9C,71,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:48|<<>>Seatalk1|$STALK,84,76,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 321 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:48|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:48|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:43:48|<<>>Seatalk1|$STALK,9C,71,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:49|<<>>Seatalk1|$STALK,84,76,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 321 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:49|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:49|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:43:49|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:49|<<>>Seatalk1|$STALK,20,81,1F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 793.6 kn, Forwarded = True } +2025-07-24T06:43:49|<<kRO4UOu0JsT22=h,0|$AIVDM,1,1,,A,33@p94hP0n0w>kRO4UOu0JsT22=h,0 +2025-07-24T06:43:50|<<>>Seatalk1|$STALK,9C,B1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 318 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:50|<<>>Seatalk1|$STALK,84,B6,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 318 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:50|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:50|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:43:50|<<>>Seatalk1|$STALK,9C,71,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 319 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:51|<<>>Seatalk1|$STALK,84,F6,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 319 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:51|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:51|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:43:51|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:51|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:43:51|<<>>Seatalk1|$STALK,9C,71,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 319 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:52|<<>>Seatalk1|$STALK,84,36,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 318 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:52|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:52|<<>>Seatalk1|$STALK,10,01,00,3A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 29 ° } +2025-07-24T06:43:52|<<>>Seatalk1|$STALK,9C,F1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 317 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:53|<<>>Seatalk1|$STALK,84,76,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 315 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:53|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:53|<<>>Seatalk1|$STALK,10,01,00,3A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 29 ° } +2025-07-24T06:43:53|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:53|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:43:53|<<F@0?wV0<12,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?wV0<12,0 +2025-07-24T06:43:53|<<>>Seatalk1|$STALK,9C,F1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 315 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:43:54|<<@003Pv9VJNwnsEt0sb0<0J,0|$AIVDM,1,1,,A,13@pD>@003Pv9VJNwnsEt0sb0<0J,0 +2025-07-24T06:43:54|<<k`O4Uk@@h=f20m0,0|$AIVDM,1,1,,B,33@p94hP0r0w>k`O4Uk@@h=f20m0,0 +2025-07-24T06:43:54|<<>>Seatalk1|$STALK,84,36,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 316 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:54|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:54|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:43:54|<<C6O;71Sd@Kf0<1s,0|$AIVDM,1,1,,A,13:EIf00000v>C6O;71Sd@Kf0<1s,0 +2025-07-24T06:43:55|<<9W6:lqf0HPD,0|$AIVDM,1,1,,A,13mDP2001b0vkgJO>9W6:lqf0HPD,0 +2025-07-24T06:43:55|<<>>Seatalk1|$STALK,9C,31,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 316 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:55|<<Mudrwd0000,0|$AIVDM,1,1,,B,138G;V002:Q0TbVO:>Mudrwd0000,0 +2025-07-24T06:43:55|<<>>Seatalk1|$STALK,84,36,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 316 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:55|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:55|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:43:55|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:55|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:43:55|<<>>Seatalk1|$STALK,9C,31,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 316 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:56|<<H2O;7,0|$AIVDM,1,1,,A,13:iFj3P00Pv>H2O;7,0 +2025-07-24T06:43:56|<<knO4Ut0>P=j2@Q@,0|$AIVDM,1,1,,A,13@p94hP0u0w>knO4Ut0>P=j2@Q@,0 +2025-07-24T06:43:56|<<>>Seatalk1|$STALK,84,F6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 315 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:56|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:56|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:43:56|<<>>Seatalk1|$STALK,9C,71,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 315 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:57|<<oMcrwh01ki,0|$AIVDM,1,1,,A,338G;V002:Q0TbVO:>oMcrwh01ki,0 +2025-07-24T06:43:57|<<>>Seatalk1|$STALK,84,B6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 314 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:57|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:57|<<>>Seatalk1|$STALK,10,01,00,46|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 35 ° } +2025-07-24T06:43:57|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:43:57|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:43:57|<<>>Seatalk1|$STALK,9C,31,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 314 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:58|<<11>>Seatalk1|$STALK,84,F6,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:43:58|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:58|<<>>Seatalk1|$STALK,10,01,00,42|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 33 ° } +2025-07-24T06:43:58|<<>>Seatalk1|$STALK,9C,31,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 314 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:43:59|<<>>Seatalk1|$STALK,84,36,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 312 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:43:59|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:43:59|<<>>Seatalk1|$STALK,10,01,00,46|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 35 ° } +2025-07-24T06:43:59|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:43:59|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:43:59|<<>>Seatalk1|$STALK,9C,31,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 312 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:00|<<>>Seatalk1|$STALK,84,36,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 312 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:00|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:44:00|<<>>Seatalk1|$STALK,10,01,00,58|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 44 ° } +2025-07-24T06:44:00|<<H?Uki7iGONLKwP5oP06,0|$AIVDM,1,1,,B,B39inLP0>H?Uki7iGONLKwP5oP06,0 +2025-07-24T06:44:01|<<>>Seatalk1|$STALK,9C,31,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 312 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:01|<<>>Seatalk1|$STALK,84,76,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:01|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:44:01|<<>>Seatalk1|$STALK,10,01,00,46|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 35 ° } +2025-07-24T06:44:01|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:01|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:44:01|<<>>Seatalk1|$STALK,9C,F1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 311 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:02|<<h0000vM?fOh0000vM?fOO0r>QhiJ2081U,0|$AIVDM,1,1,,A,139vIM002uPw9r>O0r>QhiJ2081U,0 +2025-07-24T06:44:02|<<>>Seatalk1|$STALK,84,76,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:02|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:44:02|<<O2ptbD`P40PRW,0|$AIVDM,1,1,,A,13@orW@00R0vqv>O2ptbD`P40PRW,0 +2025-07-24T06:44:02|>>>Seatalk1|$STALK,10,01,00,5C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 46 ° } +2025-07-24T06:44:02|<<>>Seatalk1|$STALK,9C,31,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 312 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:03|<<fPP00Pvb=nO79tP0?v72L0O,0|$AIVDM,1,1,,A,139T>fPP00Pvb=nO79tP0?v72L0O,0 +2025-07-24T06:44:03|<<>>Seatalk1|$STALK,84,36,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 312 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:03|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:44:03|<<>>Seatalk1|$STALK,10,01,00,4C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 38 ° } +2025-07-24T06:44:03|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:44:03|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:44:03|<<`?oVrWiwrHB7wR1l4jh,0|$AIVDM,1,1,,B,B3@oGQ@0>`?oVrWiwrHB7wR1l4jh,0 +2025-07-24T06:44:04|<<OO>>Seatalk1|$STALK,9C,B1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 310 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:04|<<>>Seatalk1|$STALK,84,B6,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 310 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:04|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:44:04|<<>>Seatalk1|$STALK,10,01,00,44|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 34 ° } +2025-07-24T06:44:04|<<@003Pv9VdNwnqmo0r800Ru,0|$AIVDM,1,1,,B,13@pD>@003Pv9VdNwnqmo0r800Ru,0 +2025-07-24T06:44:05|<<mpO4VNPR0H:20nP,0|$AIVDM,1,1,,A,33@p94hP110w>mpO4VNPR0H:20nP,0 +2025-07-24T06:44:05|<<8Rn:Tp<0<2N,0|$AIVDM,1,1,,B,13mDP2001a0vkmDO>8Rn:Tp<0<2N,0 +2025-07-24T06:44:05|<<>>Seatalk1|$STALK,9C,71,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 311 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:05|<<>>Seatalk1|$STALK,84,B6,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 310 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:05|<<>>Seatalk1|$STALK,85,06,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:44:05|<<>>Seatalk1|$STALK,10,01,00,4A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 37 ° } +2025-07-24T06:44:05|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:44:05|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:05|<<>>Seatalk1|$STALK,9C,31,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 310 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:06|<<>>Seatalk1|$STALK,84,F6,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 309 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:06|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:06|<<>>Seatalk1|$STALK,10,01,00,50|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 40 ° } +2025-07-24T06:44:06|<<>>Seatalk1|$STALK,9C,F1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 309 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:07|<<BO:@dK?`v>0000,0|$AIVDM,1,1,,B,139O=5P0330vp>BO:@dK?`v>0000,0 +2025-07-24T06:44:07|<<>>Seatalk1|$STALK,84,B6,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 308 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:07|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:07|<<>>Seatalk1|$STALK,10,01,00,4C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 38 ° } +2025-07-24T06:44:07|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:44:07|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:07|<<2<12,0|$AIVDM,1,1,,B,139vIM002vPw:5tO0s6ihAJ>2<12,0 +2025-07-24T06:44:08|<<0vLfJO:edSAPFB02:0,0|$AIVDM,1,1,,B,33:EQR0P0>0vLfJO:edSAPFB02:0,0 +2025-07-24T06:44:08|<<>>Seatalk1|$STALK,9C,F1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 309 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:08|<<>>Seatalk1|$STALK,84,B6,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 308 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:08|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:08|<<>>Seatalk1|$STALK,10,01,00,44|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 34 ° } +2025-07-24T06:44:08|<<44400033EBlP,0|$AIVDM,2,1,9,B,53@orC42DjE8uM4s:20lPv36222222222222220`1`>44400033EBlP,0 +2025-07-24T06:44:09|<<>>Seatalk1|$STALK,9C,B1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:09|<<>>Seatalk1|$STALK,84,76,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 309 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:09|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:09|<<>>Seatalk1|$STALK,10,01,00,44|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 34 ° } +2025-07-24T06:44:09|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:44:09|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:09|<<>>Seatalk1|$STALK,9C,31,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:10|<<4000GASl`3,0|$AIVDM,2,1,0,B,53mKhp42?=dTh4AKN20pE1ADpF2222222222221A7kMN>4000GASl`3,0 +2025-07-24T06:44:10|<<QGQ3wU5kP06,0|$AIVDM,1,1,,A,B39cMA0000?b;w7i>QGQ3wU5kP06,0 +2025-07-24T06:44:10|<<>>Seatalk1|$STALK,84,F6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 307 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:10|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:10|<<p@O4Vn1IQ4F21m@,0|$AIVDM,1,1,,A,33@p94hP0v0w>p@O4Vn1IQ4F21m@,0 +2025-07-24T06:44:10|<<>>Seatalk1|$STALK,10,01,00,4E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 39 ° } +2025-07-24T06:44:10|<<HtD000L,0|$AIVDM,1,1,,B,139O=5P0330vp5vO:@pK>HtD000L,0 +2025-07-24T06:44:11|<<>>Seatalk1|$STALK,9C,F1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 307 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:11|<<tO=Is`Ho0H00c@,0|$AIVDM,1,1,,A,33@orC0P3B0vr>tO=Is`Ho0H00c@,0 +2025-07-24T06:44:11|<<>>Seatalk1|$STALK,84,36,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 308 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:11|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:11|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:44:11|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:44:11|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:44:11|<<>>Seatalk1|$STALK,9C,71,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 307 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:12|<<Nvuoe6?vH04jh,0|$AIVDM,1,1,,A,139MLt3P000vPn>Nvuoe6?vH04jh,0 +2025-07-24T06:44:12|<<>>Seatalk1|$STALK,84,76,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 307 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:12|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:12|<<>>Seatalk1|$STALK,10,01,00,5A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 45 ° } +2025-07-24T06:44:12|<<fPP00Pvb=nO79t@0?vK20Rm,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79t@0?vK20Rm,0 +2025-07-24T06:44:12|<<>>Seatalk1|$STALK,9C,71,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:13|<<>>Seatalk1|$STALK,84,B6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 304 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:13|<<>>Seatalk1|$STALK,85,06,00,E2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:13|<<>>Seatalk1|$STALK,10,01,00,48|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 36 ° } +2025-07-24T06:44:13|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:44:13|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:13|<<>>Seatalk1|$STALK,9C,31,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 306 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:14|<<O=II`N72N00Rp,0|$AIVDM,1,1,,B,13@orC0P3B0vr9>O=II`N72N00Rp,0 +2025-07-24T06:44:14|<<7UV9lpN088O,0|$AIVDM,1,1,,A,13mDP2001a0vkrbO>7UV9lpN088O,0 +2025-07-24T06:44:14|<<>>Seatalk1|$STALK,84,F6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:14|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:14|<<>>Seatalk1|$STALK,10,01,00,5A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 45 ° } +2025-07-24T06:44:14|<<F@0?vH0D0w,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vH0D0w,0 +2025-07-24T06:44:15|<<>>Seatalk1|$STALK,9C,F1,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:15|<<>>Seatalk1|$STALK,84,F6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:15|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:15|<<>>Seatalk1|$STALK,10,01,00,58|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 44 ° } +2025-07-24T06:44:15|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:15|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:15|<<>>Seatalk1|$STALK,9C,71,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:16|<<>>Seatalk1|$STALK,84,76,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:16|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:16|<<>>Seatalk1|$STALK,10,01,00,40|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 32 ° } +2025-07-24T06:44:16|<<>>Seatalk1|$STALK,9C,B1,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 304 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:17|<<GnO;7=LwgvP08:=,0|$AIVDM,1,1,,A,13:iFj3P01Pv>GnO;7=LwgvP08:=,0 +2025-07-24T06:44:17|<<>>Seatalk1|$STALK,84,36,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 304 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:17|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:17|<<>>Seatalk1|$STALK,10,01,00,4A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 37 ° } +2025-07-24T06:44:17|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:17|<<O0RIu2:LR00t0,0|$AIVDM,1,1,,A,339V=f0P1PPvm2>O0RIu2:LR00t0,0 +2025-07-24T06:44:17|>>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:44:17|<<@DEw4dV0@:c,0|$AIVDM,1,1,,B,13ku;qh01D0vnC0O>@DEw4dV0@:c,0 +2025-07-24T06:44:18|<<>>Seatalk1|$STALK,9C,F1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 303 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:18|<<>>Seatalk1|$STALK,84,F6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 303 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:18|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:18|<<>>Seatalk1|$STALK,10,01,00,54|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 42 ° } +2025-07-24T06:44:18|<<>>Seatalk1|$STALK,9C,F1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 303 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:19|<<O10OjG?vT0@;Q,0|$AIVDM,1,1,,B,139UEUSP0W0ue9>O10OjG?vT0@;Q,0 +2025-07-24T06:44:19|<<>>Seatalk1|$STALK,84,B6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 302 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:19|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:19|<<>>Seatalk1|$STALK,10,01,00,50|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 40 ° } +2025-07-24T06:44:19|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:19|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:19|<<>>Seatalk1|$STALK,9C,B1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 302 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:20|<<>>Seatalk1|$STALK,84,B6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 302 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:20|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:20|<<>>Seatalk1|$STALK,10,01,00,56|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 43 ° } +2025-07-24T06:44:20|<<>>Seatalk1|$STALK,9C,31,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 302 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:21|<<ttO4WLiW16d21jP,0|$AIVDM,1,1,,B,33@p94hP0o0w>ttO4WLiW16d21jP,0 +2025-07-24T06:44:21|<<>>Seatalk1|$STALK,84,36,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 302 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:21|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:21|<<>>Seatalk1|$STALK,10,01,00,56|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 43 ° } +2025-07-24T06:44:21|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:21|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:21|<<>>Seatalk1|$STALK,9C,31,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 302 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:22|<<>>Seatalk1|$STALK,84,F6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:22|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:22|<<>>Seatalk1|$STALK,10,01,00,58|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 44 ° } +2025-07-24T06:44:22|<<fPP00Pvb=tO79s00?vg2@=`,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79s00?vg2@=`,0 +2025-07-24T06:44:23|<<>>Seatalk1|$STALK,9C,31,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 302 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:23|<<F@0?v`04jh,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v`04jh,0 +2025-07-24T06:44:23|<<6`V:4ph0D2O,0|$AIVDM,1,1,,B,13mDP2001a0vl06O>6`V:4ph0D2O,0 +2025-07-24T06:44:23|<<>>Seatalk1|$STALK,84,F6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:23|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:23|<<>>Seatalk1|$STALK,10,01,00,4A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 37 ° } +2025-07-24T06:44:23|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:23|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:24|<<>>Seatalk1|$STALK,9C,F1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:24|<<@003Pv9W4NwnnEbPpf04jh,0|$AIVDM,1,1,,B,13@pD>@003Pv9W4NwnnEbPpf04jh,0 +2025-07-24T06:44:24|<<pO:J@PBh@i04jh,0|$AIVDM,1,1,,A,13@pVE001C0wO>pO:J@PBh@i04jh,0 +2025-07-24T06:44:24|<<>>Seatalk1|$STALK,84,76,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:24|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:24|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:44:24|<<>>Seatalk1|$STALK,9C,31,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 300 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:25|<<s,0|$AIVDM,1,1,,A,B39wP?005p?oS;7i?C=M?wdQl8>s,0 +2025-07-24T06:44:25|<<s,0|$AIVDM,1,1,,B,15ABS400020wW9HO;:cRpE6l08>s,0 +2025-07-24T06:44:25|<<>>Seatalk1|$STALK,84,36,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:25|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:25|<<>>Seatalk1|$STALK,10,01,00,50|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 40 ° } +2025-07-24T06:44:25|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:25|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:44:25|<<>>Seatalk1|$STALK,9C,31,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 300 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:26|<<>>Seatalk1|$STALK,84,76,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:26|<<GJO;7=KGOvn0@?h,0|$AIVDM,1,1,,B,13:iFj3P02Pv>GJO;7=KGOvn0@?h,0 +2025-07-24T06:44:26|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:26|<<>>Seatalk1|$STALK,10,01,00,54|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 42 ° } +2025-07-24T06:44:26|<<>>Seatalk1|$STALK,9C,71,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:27|<<wFO4Wd1Hi8p2@@4,0|$AIVDM,1,1,,B,13@p94hP0p0w>wFO4Wd1Hi8p2@@4,0 +2025-07-24T06:44:27|<<>>Seatalk1|$STALK,84,36,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:27|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:27|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:44:27|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:27|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:27|<<>>Seatalk1|$STALK,9C,71,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:28|<<>>Seatalk1|$STALK,84,B6,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 298 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:28|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:28|<<Hjr08@t,0|$AIVDM,1,1,,B,13KKDCP00:PvHjr08@t,0 +2025-07-24T06:44:28|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:44:28|<<>>Seatalk1|$STALK,9C,F1,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 299 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:29|<<p7iPHKQ3wfQjDl:,0|$AIVDM,1,1,,B,B39thuP000?M>p7iPHKQ3wfQjDl:,0 +2025-07-24T06:44:29|<<>>Seatalk1|$STALK,84,76,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 299 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:29|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:29|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:44:29|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:29|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:29|<<0?IGrWhoDurcwg1h8Ab,0|$AIVDM,1,1,,B,B39J46P0>0?IGrWhoDurcwg1h8Ab,0 +2025-07-24T06:44:30|<<>>Seatalk1|$STALK,9C,71,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 299 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:30|<<>>Seatalk1|$STALK,84,36,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 298 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:30|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:30|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:44:30|<<>>Seatalk1|$STALK,9C,F1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:31|<<`?oaeWj0B0BKwgQn0`?oaeWj0B0BKwgQn0j45001Pv>J0O;?7qN2e00lSr,0|$AIVDM,1,1,,A,33@>j45001Pv>J0O;?7qN2e00lSr,0 +2025-07-24T06:44:31|<<>>Seatalk1|$STALK,84,F6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:31|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:31|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:44:31|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:31|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:32|<<>>Seatalk1|$STALK,9C,B1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:32|<<>>Seatalk1|$STALK,84,F6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:32|<<>>Seatalk1|$STALK,85,16,00,02,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:32|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:44:32|<<tVb920D0C,0|$AIVDM,1,1,,B,13`lQb00130vv7RNvM>tVb920D0C,0 +2025-07-24T06:44:33|<<fPP00Pvb=tO79sP0?w32CAC,0|$AIVDM,1,1,,B,339T>fPP00Pvb=tO79sP0?w32CAC,0 +2025-07-24T06:44:33|<<3Q3whUkP06,0|$AIVDM,1,1,,B,B39gBA0000?bGvWiV>3Q3whUkP06,0 +2025-07-24T06:44:33|<<>>Seatalk1|$STALK,9C,F1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:33|<<>>Seatalk1|$STALK,84,F6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:33|<<>>Seatalk1|$STALK,85,16,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:33|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:44:33|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:33|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:33|<<>>Seatalk1|$STALK,9C,B1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:34|<<,0|$AIVDM,1,1,,B,1815A9h02210OGdO470;vIW60HD>,0 +2025-07-24T06:44:34|<<5M69lq608DG,0|$AIVDM,1,1,,A,13mDP2001a0vl6pO>5M69lq608DG,0 +2025-07-24T06:44:34|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:34|<<>>Seatalk1|$STALK,85,16,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:34|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:44:34|<<>>Seatalk1|$STALK,9C,71,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:35|<<>>Seatalk1|$STALK,84,36,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:35|<<>>Seatalk1|$STALK,85,16,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:35|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:44:35|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:35|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:35|<<>>Seatalk1|$STALK,9C,31,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:36|<<0u=MpO0mpUqDg600u0,0|$AIVDM,1,1,,A,339NTv0P1>0u=MpO0mpUqDg600u0,0 +2025-07-24T06:44:36|<<>>Seatalk1|$STALK,84,36,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:36|<<>>Seatalk1|$STALK,85,16,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:36|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:44:36|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:37|<<GpO;7GpO;7>>Seatalk1|$STALK,84,36,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:37|<<>>Seatalk1|$STALK,85,16,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:37|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:44:37|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:37|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:37|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:38|<<>>Seatalk1|$STALK,84,F6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:38|<<>>Seatalk1|$STALK,85,16,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:38|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:44:38|<<>dUv4e>0<27,0|$AIVDM,1,1,,B,13ku;qh01D0vnNRO>>dUv4e>0<27,0 +2025-07-24T06:44:38|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:39|<<0HGE,0|$AIVDM,1,1,,B,138G;V002:Q0TKDO:E:Md:u>0HGE,0 +2025-07-24T06:44:39|<<>>Seatalk1|$STALK,84,76,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:39|<<>>Seatalk1|$STALK,85,26,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:39|<<>>Seatalk1|$STALK,10,01,00,40|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 32 ° } +2025-07-24T06:44:39|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:39|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:39|<<0u=ONO0mbEuDg<00oQ,0|$AIVDM,1,1,,B,339NTv0P1>0u=ONO0mbEuDg<00oQ,0 +2025-07-24T06:44:40|<<>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:40|<<>>Seatalk1|$STALK,84,76,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:40|<<>>Seatalk1|$STALK,85,26,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:40|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:44:40|<<>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:41|<<>>Seatalk1|$STALK,84,36,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:41|<<>>Seatalk1|$STALK,85,26,00,02,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:41|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:44:41|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:41|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:41|<<O0L1rj8WB0HHi,0|$AIVDM,1,1,,A,13aCdr3019Pvqv>O0L1rj8WB0HHi,0 +2025-07-24T06:44:42|<<>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:42|<<fPP00Pvb=vO79sh0?wE28I3,0|$AIVDM,1,1,,A,139T>fPP00Pvb=vO79sh0?wE28I3,0 +2025-07-24T06:44:42|<<>>Seatalk1|$STALK,84,36,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:42|<<>>Seatalk1|$STALK,85,26,00,22,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:42|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:44:42|<<5R=W9B0D`r,0|$AIVDM,1,1,,A,33cPHl50000v<3RO;>5R=W9B0D`r,0 +2025-07-24T06:44:43|<<>>Seatalk1|$STALK,9C,B1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:43|<<>>Seatalk1|$STALK,84,F6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:43|<<>>Seatalk1|$STALK,85,26,00,22,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:43|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:44:43|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:44:43|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:43|<<>>Seatalk1|$STALK,9C,31,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 294 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:44|<<CBO;70SNhEJ0D1r,0|$AIVDM,1,1,,B,13:EIf00020v>CBO;70SNhEJ0D1r,0 +2025-07-24T06:44:44|<<>>Seatalk1|$STALK,84,F6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:44|<<>>Seatalk1|$STALK,85,26,00,22,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:44|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:44:44|<<4?wJRHJR,0|$AIVDM,1,1,,A,139pin0P00PvbC0O79`>4?wJRHJR,0 +2025-07-24T06:44:45|<<>>Seatalk1|$STALK,9C,F1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:45|<<>>Seatalk1|$STALK,84,F6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:45|<<>>Seatalk1|$STALK,85,26,00,22,16,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:44:45|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:44:45|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:45|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:45|<<>>Seatalk1|$STALK,9C,F1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:46|<<>>Seatalk1|$STALK,84,F6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:46|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:46|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:44:46|<<>>Seatalk1|$STALK,9C,71,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:47|<<>>Seatalk1|$STALK,84,76,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:47|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:47|<<>>Seatalk1|$STALK,10,01,00,3E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 31 ° } +2025-07-24T06:44:47|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:47|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:47|<<>>Seatalk1|$STALK,9C,71,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:48|<<>>Seatalk1|$STALK,84,B6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 292 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:48|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:48|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:44:48|<<>>Seatalk1|$STALK,9C,71,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:49|<<=k5uleT08M:,0|$AIVDM,1,1,,A,13ku;qh01D0vnTrO>=k5uleT08M:,0 +2025-07-24T06:44:49|<<>>Seatalk1|$STALK,84,76,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:49|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:49|<<>>Seatalk1|$STALK,10,01,00,3A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 29 ° } +2025-07-24T06:44:49|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:49|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:49|<<>>Seatalk1|$STALK,9C,71,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:50|<<>>Seatalk1|$STALK,84,76,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:50|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:50|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:44:50|<<>>Seatalk1|$STALK,9C,31,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:51|<<00004;llqo00`421w,0|$AIVDM,1,1,,B,H39EMR4TH9>00004;llqo00`421w,0 +2025-07-24T06:44:51|<<>>Seatalk1|$STALK,84,36,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 292 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:51|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:51|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:44:51|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:51|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:51|<<>>Seatalk1|$STALK,9C,B1,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 290 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:52|<<>>Seatalk1|$STALK,84,B6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 290 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:52|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:52|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:44:52|<<>>Seatalk1|$STALK,9C,71,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:53|<<>>Seatalk1|$STALK,84,F6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 291 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:53|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:53|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:44:53|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:53|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:53|<<>>Seatalk1|$STALK,9C,F1,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 291 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:54|<<@002Pv9WfNwnjEPPkb08P1,0|$AIVDM,1,1,,A,13@pD>@002Pv9WfNwnjEPPkb08P1,0 +2025-07-24T06:44:54|<<>>Seatalk1|$STALK,84,36,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 292 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:54|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:54|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:44:54|<<3@n753f0D2R,0|$AIVDM,1,1,,A,13mDP20P1a0vlD4O>3@n753f0D2R,0 +2025-07-24T06:44:55|<<>>Seatalk1|$STALK,9C,F1,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 291 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:55|<<>>Seatalk1|$STALK,84,B6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 290 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:55|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:55|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:44:55|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:55|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:56|<<>>Seatalk1|$STALK,9C,B1,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 290 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:56|<<>>Seatalk1|$STALK,84,B6,09,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 288 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:56|<<>>Seatalk1|$STALK,85,26,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:56|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:44:56|<<>>Seatalk1|$STALK,9C,B1,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 290 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:44:57|<<>>Seatalk1|$STALK,84,F6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 291 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:57|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:57|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:44:57|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:57|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:57|<<>>Seatalk1|$STALK,9C,31,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:58|<<=4EtTen0<28,0|$AIVDM,1,1,,B,13ku;qh01D0vnb@O>=4EtTen0<28,0 +2025-07-24T06:44:58|<<>>Seatalk1|$STALK,84,B6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 292 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:44:58|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:58|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:44:58|<<>>Seatalk1|$STALK,9C,71,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 293 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:44:59|<<>>Seatalk1|$STALK,84,36,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 292 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:44:59|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:44:59|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:44:59|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:44:59|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:44:59|<<>>Seatalk1|$STALK,9C,71,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 291 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:00|<<>>Seatalk1|$STALK,84,76,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:00|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:00|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:45:00|<<221m0,0|$AIVDM,1,1,,B,33@p94h00s0w?@FO4aNQT1>221m0,0 +2025-07-24T06:45:00|<<>>Seatalk1|$STALK,9C,31,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:01|<<>>Seatalk1|$STALK,84,B6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 290 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:01|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:01|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:45:01|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:01|<<H?UWVWiG:bM;wPUoP06,0|$AIVDM,1,1,,B,B39inLP0>H?UWVWiG:bM;wPUoP06,0 +2025-07-24T06:45:01|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:01|<<>>Seatalk1|$STALK,9C,31,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:02|<<22222222222221S1P<3340003lm4PC,0|$AIVDM,2,1,5,A,539UEUP00000@822222222222221S1P<3340003lm4PC,0 +2025-07-24T06:45:02|<<>>Seatalk1|$STALK,84,B6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 290 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:02|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:02|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:45:02|<<>>Seatalk1|$STALK,9C,F1,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 291 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:03|<<a2600Wh,0|$AIVDM,1,1,,B,339O=5PP320vmj2O:C`c>a2600Wh,0 +2025-07-24T06:45:03|<<fPP00Pvb>2O79sh0?v72H2<,0|$AIVDM,1,1,,A,139T>fPP00Pvb>2O79sh0?v72H2<,0 +2025-07-24T06:45:03|<<O:Mg0Ch@7082?,0|$AIVDM,1,1,,A,13@pVE001C0wOE>O:Mg0Ch@7082?,0 +2025-07-24T06:45:03|<<CfO;6wuDPH80<1s,0|$AIVDM,1,1,,B,13:EIf00020v>CfO;6wuDPH80<1s,0 +2025-07-24T06:45:03|<<>>Seatalk1|$STALK,84,F6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 291 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:03|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:03|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:45:03|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:03|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:03|<<`?oe=7j0fpBwwR1l0RR,0|$AIVDM,1,1,,B,B3@oGQ@0>`?oe=7j0fpBwwR1l0RR,0 +2025-07-24T06:45:04|<<>>Seatalk1|$STALK,9C,31,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:04|<<@003Pv9`2NwnhEKPj60H2i,0|$AIVDM,1,1,,B,13@pD>@003Pv9`2NwnhEKPj60H2i,0 +2025-07-24T06:45:04|<<>>Seatalk1|$STALK,84,36,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 292 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:04|<<F@0?v20<12,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v20<12,0 +2025-07-24T06:45:04|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:04|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:45:04|<<33400044m0B3,0|$AIVDM,2,1,6,A,539h=GT00000@iHB220LiDD33400044m0B3,0 +2025-07-24T06:45:05|<<>>Seatalk1|$STALK,9C,B1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:05|<<>>Seatalk1|$STALK,84,B6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 292 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:05|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:05|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:45:05|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:05|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:45:05|<<O79af4?vO79af4?v>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:06|<<>>Seatalk1|$STALK,84,36,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:06|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:06|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:45:06|<<2H4<,0|$AIVDM,1,1,,B,13@p94hP0t0w?CjO4aj1IA4>2H4<,0 +2025-07-24T06:45:07|<<>>Seatalk1|$STALK,9C,B1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 292 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:07|<<>>Seatalk1|$STALK,84,76,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:07|<<>>Seatalk1|$STALK,85,36,00,22,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:07|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:45:07|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:07|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:45:07|<<>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:08|<<>>Seatalk1|$STALK,84,76,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 293 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:08|<<>>Seatalk1|$STALK,85,36,00,AA,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:08|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:45:08|<<>>Seatalk1|$STALK,9C,31,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 294 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:09|<<>>Seatalk1|$STALK,84,36,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:09|<<>>Seatalk1|$STALK,85,36,00,CA,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:09|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:45:09|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:09|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:09|<<>>Seatalk1|$STALK,9C,71,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:10|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:10|<<>>Seatalk1|$STALK,85,36,00,CA,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:10|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:45:10|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:11|<<>>Seatalk1|$STALK,84,36,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 298 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:11|<<>>Seatalk1|$STALK,85,36,00,CA,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:11|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:45:11|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:11|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:11|<<>>Seatalk1|$STALK,9C,B1,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:12|<<fPP00Pvb=tO79sP0?vI2H7E,0|$AIVDM,1,1,,B,139T>fPP00Pvb=tO79sP0?vI2H7E,0 +2025-07-24T06:45:12|<<>>Seatalk1|$STALK,84,76,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:12|<<>>Seatalk1|$STALK,85,36,00,CA,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:12|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:45:12|<<>>Seatalk1|$STALK,9C,F1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:13|<<>>Seatalk1|$STALK,84,B6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:13|<<>>Seatalk1|$STALK,85,36,00,CA,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:13|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:45:13|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:13|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:13|<<>>Seatalk1|$STALK,9C,F1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:14|<<1<6G5:N04jl,0|$AIVDM,1,1,,A,13mDP2001`0vlMBO>1<6G5:N04jl,0 +2025-07-24T06:45:14|<<N0@8Q,0|$AIVDM,1,1,,A,15ABS400010wW:lO;:g39U>N0@8Q,0 +2025-07-24T06:45:14|<<>>Seatalk1|$STALK,84,B6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 302 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:14|<<>>Seatalk1|$STALK,85,36,00,CA,26,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:45:14|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:45:14|<<>>Seatalk1|$STALK,9C,B1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 302 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:15|<<>>Seatalk1|$STALK,84,36,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 304 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:15|<<>>Seatalk1|$STALK,85,46,00,CA,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:15|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:45:15|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:15|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:15|<<kwWUoP06,0|$AIVDM,1,1,,A,B3MAkwWUoP06,0 +2025-07-24T06:45:16|<<@003Pv9`DNwnfUKPhL089R,0|$AIVDM,1,1,,A,13@pD>@003Pv9`DNwnfUKPhL089R,0 +2025-07-24T06:45:16|<<>>Seatalk1|$STALK,9C,71,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:16|<<>>Seatalk1|$STALK,84,76,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:16|<<>>Seatalk1|$STALK,85,46,00,CA,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:16|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:45:16|<<>>Seatalk1|$STALK,9C,F1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 309 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:17|<<O4bGiIA0T2@:F,0|$AIVDM,1,1,,A,13@p94h00s0w?I>O4bGiIA0T2@:F,0 +2025-07-24T06:45:17|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:17|<<>>Seatalk1|$STALK,85,46,00,CA,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:17|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:45:17|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:17|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:17|<<>>Seatalk1|$STALK,9C,B1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 314 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:18|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:18|<<>>Seatalk1|$STALK,85,46,00,CA,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:18|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:45:18|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:19|<<kplG4`0H;U,0|$AIVDM,1,1,,A,13@orC003E0vopnO=>kplG4`0H;U,0 +2025-07-24T06:45:19|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:19|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:19|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:45:19|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:19|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:19|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:20|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:20|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:20|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:45:20|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:21|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:21|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:21|<<>>Seatalk1|$STALK,10,01,00,3E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 31 ° } +2025-07-24T06:45:21|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:21|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:21|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:22|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:22|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:22|<<>>Seatalk1|$STALK,10,01,00,40|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 32 ° } +2025-07-24T06:45:22|<<fPP00Pvb=nO79s00?vg2<0Q,0|$AIVDM,1,1,,A,139T>fPP00Pvb=nO79s00?vg2<0Q,0 +2025-07-24T06:45:23|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:23|<<h0020vM?fOh0020vM?fO>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:23|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:23|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:45:23|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:23|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:23|<<D0O;74PAhJj0<1s,0|$AIVDM,1,1,,B,13:EIf00040v>D0O;74PAhJj0<1s,0 +2025-07-24T06:45:24|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:24|<<t0I`j00Rp,0|$AIVDM,1,1,,A,1815A9h02210N:@O4;>t0I`j00Rp,0 +2025-07-24T06:45:24|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:24|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:24|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:45:24|<<08l72l0<1P,0|$AIVDM,1,1,,B,13@orC003E0voeNO=>08l72l0<1P,0 +2025-07-24T06:45:25|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:25|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:25|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:25|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:45:25|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:25|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:25|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:26|<<H:O;7;uMwvl0<0n,0|$AIVDM,1,1,,B,13:iFj3P01Pv>H:O;7;uMwvl0<0n,0 +2025-07-24T06:45:26|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:26|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:26|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:45:26|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:27|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:27|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:27|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:45:27|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:27|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:27|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:28|<<H2G04huTHw:21@E984j22222222222220`10I7540006AmcLH,0|$AIVDM,2,1,9,A,53@pD>H2G04huTHw:21@E984j22222222222220`10I7540006AmcLH,0 +2025-07-24T06:45:28|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:28|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:28|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:45:28|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:29|<<:S5t4ft04jl,0|$AIVDM,1,1,,A,13ku;qh01D0vnt`O>:S5t4ft04jl,0 +2025-07-24T06:45:29|<<4?vr2HAH,0|$AIVDM,1,1,,A,139SHt?P00PvOjrO6L5>4?vr2HAH,0 +2025-07-24T06:45:29|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:29|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:29|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:45:29|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:29|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:29|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:30|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:30|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:30|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:45:30|<<O0LGri8`r04jl,0|$AIVDM,1,1,,B,13aCdr3018Pvq;>O0LGri8`r04jl,0 +2025-07-24T06:45:30|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:31|<<`?oh8Wj17@BWwgQl0Rt,0|$AIVDM,1,1,,A,B3@oGQ@0>`?oh8Wj17@BWwgQl0Rt,0 +2025-07-24T06:45:31|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:31|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:31|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:45:31|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:31|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:31|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:32|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:32|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:32|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:45:32|<<H?UQD7iG1bMkwh5oP06,0|$AIVDM,1,1,,A,B39inLP0>H?UQD7iG1bMkwh5oP06,0 +2025-07-24T06:45:32|<<fPP00Pvb=nO79s00?w324jl,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79s00?w324jl,0 +2025-07-24T06:45:33|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:33|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:33|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:33|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:45:33|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:33|<<3EBlP,0|$AIVDM,2,1,1,A,53ku8NH2FPg@=5=J221H:0I8UA`V22222222220l2@;764000>3EBlP,0 +2025-07-24T06:45:33|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:33|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:34|<<@003Pv9`hNwndEN0g004jl,0|$AIVDM,1,1,,A,13@pD>@003Pv9`hNwndEN0g004jl,0 +2025-07-24T06:45:34|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:34|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:34|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:45:34|<<F@0?w008DT,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?w008DT,0 +2025-07-24T06:45:35|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:35|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:35|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:35|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:45:35|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:35|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:35|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:36|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:36|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:36|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:45:36|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:37|<<GbO;7;s>?w:04jl,0|$AIVDM,1,1,,A,13:iFj3P02Pv>GbO;7;s>?w:04jl,0 +2025-07-24T06:45:37|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:37|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:37|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:45:37|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:37|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:37|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:38|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:38|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:38|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:45:38|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:39|<<0<0r,0|$AIVDM,1,1,,A,13KKDCP007Pv0<0r,0 +2025-07-24T06:45:39|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:39|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:39|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:45:39|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:39|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:39|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:40|<<00S;,0|$AIVDM,1,1,,B,139UEUSP0G0uevNO13pP00S;,0 +2025-07-24T06:45:40|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:40|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:40|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:45:40|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:41|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:41|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:41|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:45:41|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:41|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:41|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:42|<<h0020vM?fOh0020vM?fO>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:42|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:42|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:45:42|<<PC0AE0<2R,0|$AIVDM,1,1,,A,13@pVE001C0wOKVO:Q>PC0AE0<2R,0 +2025-07-24T06:45:43|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:43|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:43|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:43|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:45:43|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:43|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:43|<<F@0?wB04jl,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?wB04jl,0 +2025-07-24T06:45:44|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:44|<<@003Pv9a2NwnbEKPeF0BIu,0|$AIVDM,1,1,,B,33@pD>@003Pv9a2NwnbEKPeF0BIu,0 +2025-07-24T06:45:44|<<CrO;79PR@IJ0@J;,0|$AIVDM,1,1,,B,13:EIf0P030v>CrO;79PR@IJ0@J;,0 +2025-07-24T06:45:44|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:44|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:44|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:45:44|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:45|<<>>Seatalk1|$STALK,84,46,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 55 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:45|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:45|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:45:45|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:45|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:45|<<>>Seatalk1|$STALK,9C,01,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 54 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:46|<<>>Seatalk1|$STALK,84,06,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 56 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:46|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:46|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:45:46|<<>>Seatalk1|$STALK,9C,41,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 57 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:47|<<>>Seatalk1|$STALK,84,46,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 57 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:47|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:47|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:45:47|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:47|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:47|<<>>Seatalk1|$STALK,9C,41,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 57 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:48|<<>>Seatalk1|$STALK,84,86,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 56 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:48|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:48|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:45:48|<<>>Seatalk1|$STALK,9C,81,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:49|<<>>Seatalk1|$STALK,84,86,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 56 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:49|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:49|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:45:49|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:49|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:49|<<>>Seatalk1|$STALK,9C,81,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:50|<<>O19r1giKR28MT,0|$AIVDM,1,1,,A,139vIM002uPw=>>O19r1giKR28MT,0 +2025-07-24T06:45:50|<<,0|$AIVDM,1,1,,A,139MLt3P000vPmbNvutM6?wT000>,0 +2025-07-24T06:45:50|<<>>Seatalk1|$STALK,84,46,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 57 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:50|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:50|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:45:50|<<>>Seatalk1|$STALK,9C,41,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 57 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:51|<<>>Seatalk1|$STALK,84,46,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 57 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:51|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:51|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:45:51|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:51|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:51|<<OO>>Seatalk1|$STALK,9C,41,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 57 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:52|<<fPP00Pvb>2O79tP0?wa20SH,0|$AIVDM,1,1,,B,139T>fPP00Pvb>2O79tP0?wa20SH,0 +2025-07-24T06:45:52|<<>>Seatalk1|$STALK,84,46,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 57 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:52|<<>>Seatalk1|$STALK,85,46,00,42,36,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:45:52|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:45:52|<<>>Seatalk1|$STALK,9C,C1,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 55 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:45:53|<<h0000vM?fOh0000vM?fO>>Seatalk1|$STALK,84,06,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 56 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:53|<<>>Seatalk1|$STALK,85,46,00,CA,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 1.01 NM } +2025-07-24T06:45:53|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:45:53|<<F@0?wV04jl,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?wV04jl,0 +2025-07-24T06:45:53|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:53|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:53|<<>>Seatalk1|$STALK,9C,01,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:54|<<@003Pv9aDNwnaEKPeb04jl,0|$AIVDM,1,1,,A,13@pD>@003Pv9aDNwnaEKPeb04jl,0 +2025-07-24T06:45:54|<<>>Seatalk1|$STALK,84,46,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 57 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:54|<<>>Seatalk1|$STALK,85,46,00,CA,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 234 °, BearingIsTrue = True, DistanceToDestination = 1.01 NM } +2025-07-24T06:45:54|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:45:54|<<>>Seatalk1|$STALK,9C,01,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:55|<<>>Seatalk1|$STALK,84,06,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 56 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:55|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:45:55|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:45:55|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:45:55|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:55|<<>>Seatalk1|$STALK,9C,01,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:56|<<HFO;7;3fOwj00SS,0|$AIVDM,1,1,,A,13:iFj3P02Pv>HFO;7;3fOwj00SS,0 +2025-07-24T06:45:56|<<>>Seatalk1|$STALK,84,06,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 56 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:56|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:45:56|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:45:56|<<DqPgwh20Ru,0|$AIVDM,1,1,,B,139Q2t0P0sPtqGFO2>DqPgwh20Ru,0 +2025-07-24T06:45:57|<<>>Seatalk1|$STALK,9C,01,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:57|<<>>Seatalk1|$STALK,84,06,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 56 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:45:57|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:45:57|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:45:57|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:57|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:57|<<>>Seatalk1|$STALK,9C,01,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:58|<<>>Seatalk1|$STALK,84,C6,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 55 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:58|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:45:58|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:45:58|<<>>Seatalk1|$STALK,9C,01,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 56 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:45:59|<<>>Seatalk1|$STALK,84,C6,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 55 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:45:59|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:45:59|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:45:59|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:45:59|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:45:59|<<>>Seatalk1|$STALK,9C,41,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 55 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:00|<<>>Seatalk1|$STALK,84,86,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 54 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:00|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:00|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:46:00|<<>>Seatalk1|$STALK,9C,81,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 54 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:01|<<>>Seatalk1|$STALK,84,46,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 55 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:01|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:01|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:46:01|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:01|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:02|<<>>Seatalk1|$STALK,9C,41,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 55 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:02|<<>>Seatalk1|$STALK,84,C6,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 55 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:02|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:02|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:46:02|<<`?okJWj1R4AgwQ1l<20,0|$AIVDM,1,1,,B,B3@oGQ@0>`?okJWj1R4AgwQ1l<20,0 +2025-07-24T06:46:03|<<00>>Seatalk1|$STALK,9C,41,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 55 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:03|<<fPP00Pvb=tO79u00?v72D0Q,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79u00?v72D0Q,0 +2025-07-24T06:46:03|<<DbO;7=Bk@B807@3,0|$AIVDM,1,1,,B,33:EIf00010v>DbO;7=Bk@B807@3,0 +2025-07-24T06:46:03|<<>>Seatalk1|$STALK,84,46,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 55 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:03|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:03|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:46:03|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:03|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:03|<<>>Seatalk1|$STALK,9C,41,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 55 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:04|<<@003Pv9aRNwnWmKPb60D0I,0|$AIVDM,1,1,,B,13@pD>@003Pv9aRNwnWmKPb60D0I,0 +2025-07-24T06:46:04|<<F@0?v2082m,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v2082m,0 +2025-07-24T06:46:04|<<>>Seatalk1|$STALK,84,86,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 54 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:04|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:04|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:46:04|<<;0`p:00S8,0|$AIVDM,1,1,,A,139O=5P0370vk1JO:G>;0`p:00S8,0 +2025-07-24T06:46:05|<<>>Seatalk1|$STALK,9C,41,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 55 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:05|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:05|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:05|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:46:05|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:05|<<12O0hM6@E2800wP,0|$AIVDM,1,1,,B,339NTv0P0r0u>12O0hM6@E2800wP,0 +2025-07-24T06:46:05|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:05|<<4?v4?v>>Seatalk1|$STALK,9C,C1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:06|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:06|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:06|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:46:06|<<>>Seatalk1|$STALK,9C,C1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:07|<<@?W:j7k1KLR?wSQh0SK,0|$AIVDM,1,1,,A,B3@nfLh0>@?W:j7k1KLR?wSQh0SK,0 +2025-07-24T06:46:07|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:07|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:07|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:46:07|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:07|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:07|<<5jCQ0,0|$AIVDM,2,1,4,A,53clc@02@twhTUAO:20d4l58Tp6222222222220l4H?:54000>5jCQ0,0 +2025-07-24T06:46:07|<<24jp,0|$AIVDM,1,1,,B,139vIM002tPw=irO124jp,0 +2025-07-24T06:46:08|<<>>Seatalk1|$STALK,9C,C1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:08|<<>>Seatalk1|$STALK,84,86,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 52 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:08|<<0vq3hO2p`:ca2@0Q2@,0|$AIVDM,1,1,,A,33@orW@P0>0vq3hO2p`:ca2@0Q2@,0 +2025-07-24T06:46:08|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:08|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:46:08|<<7HmsTfB0<2:,0|$AIVDM,1,1,,A,13ku;qh01D0voCpO>7HmsTfB0<2:,0 +2025-07-24T06:46:09|<<>>Seatalk1|$STALK,9C,01,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:09|<<>>Seatalk1|$STALK,84,C6,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 51 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:09|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:09|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:46:09|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:09|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:10|<<>>Seatalk1|$STALK,9C,01,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:10|<<>>Seatalk1|$STALK,84,86,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 52 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:10|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:10|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:46:10|<<>>Seatalk1|$STALK,9C,01,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:11|<<0vq36O2p`:Wq4F0h6k,0|$AIVDM,1,1,,B,13@orW@P0>0vq36O2p`:Wq4F0h6k,0 +2025-07-24T06:46:11|<<>>Seatalk1|$STALK,84,06,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 50 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:11|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:11|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:46:11|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:11|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:11|<<1r4@ha>220EHDq@Tr2222222222221@83BBN4000OU0PH8,0|$AIVDM,2,1,5,A,539GH702>1r4@ha>220EHDq@Tr2222222222221@83BBN4000OU0PH8,0 +2025-07-24T06:46:12|<<>>Seatalk1|$STALK,9C,01,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 50 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:12|<<fPP00Pvb=nO79tP0?vI2D0Q,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79tP0?vI2D0Q,0 +2025-07-24T06:46:12|<<>>Seatalk1|$STALK,84,46,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 51 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:12|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:12|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:46:12|<<>>Seatalk1|$STALK,9C,41,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 51 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:13|<<DNO;7>7B0DL00SS,0|$AIVDM,1,1,,A,13:EIf00030v>DNO;7>7B0DL00SS,0 +2025-07-24T06:46:13|<<>>Seatalk1|$STALK,84,86,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 50 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:13|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:13|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:46:13|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:13|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:14|<<>>Seatalk1|$STALK,9C,81,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 50 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:14|<<M00Rg,0|$AIVDM,1,1,,B,13@pVE001B0wOPbO:T70C0>M00Rg,0 +2025-07-24T06:46:14|<<>>Seatalk1|$STALK,84,06,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 50 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:14|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:14|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:46:14|<<>>Seatalk1|$STALK,9C,C1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 49 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:15|<<>>Seatalk1|$STALK,84,C6,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 49 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:15|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:15|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:46:15|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:15|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:16|<<@003Pv9apNwnUmI0`N04jp,0|$AIVDM,1,1,,A,13@pD>@003Pv9apNwnUmI0`N04jp,0 +2025-07-24T06:46:16|<<>>Seatalk1|$STALK,9C,C1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 49 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:16|<<>>Seatalk1|$STALK,84,06,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 50 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:16|<<>>Seatalk1|$STALK,85,46,00,42,56,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:46:16|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:46:16|<<>>Seatalk1|$STALK,9C,C1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 49 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:17|<<>>Seatalk1|$STALK,84,46,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 49 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:17|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:17|<<>>Seatalk1|$STALK,10,01,FF,DE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -17 ° } +2025-07-24T06:46:17|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:17|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:17|<<PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0|$AIVDM,2,1,8,A,539EIqP2>PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0 +2025-07-24T06:46:18|<<>>Seatalk1|$STALK,9C,41,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 49 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:18|<<4RO0gdFE52R04jp,0|$AIVDM,1,1,,B,139NTv000r0u>4RO0gdFE52R04jp,0 +2025-07-24T06:46:18|<<>>Seatalk1|$STALK,84,46,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 49 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:18|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:18|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:46:18|<<>>Seatalk1|$STALK,9C,41,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 49 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:19|<<0ue`@O14:bGgvT08;Q,0|$AIVDM,1,1,,B,139UEUSP1>0ue`@O14:bGgvT08;Q,0 +2025-07-24T06:46:19|<<>>Seatalk1|$STALK,84,46,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 49 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:19|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:19|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:46:19|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:19|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:19|<<9`O1>?1gQJV2<10,0|$AIVDM,1,1,,B,139vIM002tPw>9`O1>?1gQJV2<10,0 +2025-07-24T06:46:20|<<>>Seatalk1|$STALK,9C,01,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 48 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:20|<<PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0|$AIVDM,2,1,9,B,539EIqP2>PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0 +2025-07-24T06:46:20|<<>>Seatalk1|$STALK,84,C6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 47 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:20|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:20|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:46:20|<<>>Seatalk1|$STALK,9C,81,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 46 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:21|<<11H5T,0|$AIVDM,2,1,0,A,54QuSV82A@d1K8Q?L00dE==D00000000000000161aM964000>11H5T,0 +2025-07-24T06:46:21|<<>>Seatalk1|$STALK,84,C6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 47 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:21|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:21|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:46:21|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:21|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:46:21|<<>>Seatalk1|$STALK,9C,01,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 48 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:22|<<>>Seatalk1|$STALK,84,C6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 47 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:22|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:22|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:46:22|<<e0L2Q,0|$AIVDM,1,1,,A,13@pVE001B0wOQrO:TlhBP>e0L2Q,0 +2025-07-24T06:46:23|<<>>Seatalk1|$STALK,9C,41,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 47 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:23|<<h0020vM?fOJrh0<1<,0|$AIVDM,1,1,,B,13@oP>h0020vM?fOJrh0<1<,0 +2025-07-24T06:46:23|<<>>Seatalk1|$STALK,84,C6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 45 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:23|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:23|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:46:23|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:23|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:24|<<DHO;7?,0|$AIVDM,1,1,,B,13:EIf00010v>DHO;7?,0 +2025-07-24T06:46:24|<<>>Seatalk1|$STALK,9C,01,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 46 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:24|<<32t0000SkPQB,0|$AIVDM,2,1,1,A,53`lQb4000010?SG;T05E8u8622000000000001S0P>32t0000SkPQB,0 +2025-07-24T06:46:24|<<F@0?vb0<16,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?vb0<16,0 +2025-07-24T06:46:24|<<M,0|$AIVDM,1,1,,A,13:EQR0P0f0vLK0O:hMcsq:j0H>M,0 +2025-07-24T06:46:24|<<>>Seatalk1|$STALK,84,46,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 47 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:24|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:24|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:46:24|<<@003Pv9b4NwnTmI0Vf0H>g,0|$AIVDM,1,1,,B,13@pD>@003Pv9b4NwnTmI0Vf0H>g,0 +2025-07-24T06:46:25|<<n,0|$AIVDM,1,1,,B,13@orC0P3E0vmU4O=4K8no2l08>n,0 +2025-07-24T06:46:25|<<>>Seatalk1|$STALK,9C,01,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 46 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:25|<<c5JCwdQl0Q5,0|$AIVDM,1,1,,A,B39wP?005p?oa4Wi>c5JCwdQl0Q5,0 +2025-07-24T06:46:25|<<j0Qo0,0|$AIVDM,1,1,,B,33@orW@P070vq12O2p`rkI>j0Qo0,0 +2025-07-24T06:46:25|<<>>Seatalk1|$STALK,84,C6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 45 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:25|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:25|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:46:25|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:25|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:25|<<>>Seatalk1|$STALK,9C,81,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 44 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:26|<<>>Seatalk1|$STALK,84,86,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 44 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:26|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:26|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:46:26|<<>>Seatalk1|$STALK,9C,41,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 45 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:27|<<HO0LnJkpPl01;@,0|$AIVDM,1,1,,A,33aCdr3P18Pvp>HO0LnJkpPl01;@,0 +2025-07-24T06:46:27|<<>>Seatalk1|$STALK,84,46,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 45 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:27|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:27|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:46:27|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:27|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:28|<<>>Seatalk1|$STALK,9C,41,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 45 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:28|<<>>Seatalk1|$STALK,84,06,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 44 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:28|<<>>Seatalk1|$STALK,85,46,00,42,66,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:46:28|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:46:28|<<>>Seatalk1|$STALK,9C,01,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 44 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:29|<<5dUrTft00RJ,0|$AIVDM,1,1,,A,13ku;qh01D0voP`O>5dUrTft00RJ,0 +2025-07-24T06:46:29|<<>>Seatalk1|$STALK,84,C6,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 43 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:29|<<>>Seatalk1|$STALK,85,46,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:29|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:46:29|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:29|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:30|<<>>Seatalk1|$STALK,9C,C1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 43 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:30|<<>>Seatalk1|$STALK,84,46,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 43 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:30|<<>>Seatalk1|$STALK,85,46,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:30|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:46:30|<<p?onI7j1rlAswg1lL21,0|$AIVDM,1,1,,A,B3@oGQ@0>p?onI7j1rlAswg1lL21,0 +2025-07-24T06:46:31|<<>>Seatalk1|$STALK,9C,81,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 42 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:31|<<>>Seatalk1|$STALK,84,86,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 42 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:31|<<>>Seatalk1|$STALK,85,46,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:31|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:46:31|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:31|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:31|<<>>Seatalk1|$STALK,9C,41,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 43 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:32|<<QFO1?uAgAJv00S3,0|$AIVDM,1,1,,B,139vIM002rPw>QFO1?uAgAJv00S3,0 +2025-07-24T06:46:32|<<>>Seatalk1|$STALK,84,46,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 43 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:32|<<>>Seatalk1|$STALK,85,46,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:32|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:46:33|<<fPP00Pvb=bO79t@0?w320Sa,0|$AIVDM,1,1,,B,139T>fPP00Pvb=bO79t@0?w320Sa,0 +2025-07-24T06:46:33|<<>>Seatalk1|$STALK,9C,41,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 43 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:33|<<D2O;7;oc@I404jp,0|$AIVDM,1,1,,A,13:EIf00000v>D2O;7;oc@I404jp,0 +2025-07-24T06:46:33|<<>>Seatalk1|$STALK,84,46,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 43 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:33|<<>>Seatalk1|$STALK,85,46,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:33|<<>>Seatalk1|$STALK,10,01,FF,C6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -29 ° } +2025-07-24T06:46:33|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:33|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:33|<<>>Seatalk1|$STALK,9C,01,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 42 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:34|<<@O;:iCEUM608D@,0|$AIVDM,1,1,,A,15ABS400020wW>@O;:iCEUM608D@,0 +2025-07-24T06:46:34|<<@003Pv9b@NwnRmKPW200S5,0|$AIVDM,1,1,,A,13@pD>@003Pv9b@NwnRmKPW200S5,0 +2025-07-24T06:46:34|<<>>Seatalk1|$STALK,84,06,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 42 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:34|<<>>Seatalk1|$STALK,85,46,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:34|<<>>Seatalk1|$STALK,10,01,FF,CE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -25 ° } +2025-07-24T06:46:34|<<F@0?vv04jp,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vv04jp,0 +2025-07-24T06:46:34|<<>>Seatalk1|$STALK,9C,81,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 40 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:35|<<>>Seatalk1|$STALK,84,86,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:35|<<>>Seatalk1|$STALK,85,46,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.04 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:35|<<>>Seatalk1|$STALK,10,01,FF,B8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -36 ° } +2025-07-24T06:46:35|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:35|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:35|<<>>Seatalk1|$STALK,9C,81,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 40 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:36|<<>>Seatalk1|$STALK,84,86,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:36|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:36|<<>>Seatalk1|$STALK,10,01,FF,B8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -36 ° } +2025-07-24T06:46:36|<<>>Seatalk1|$STALK,9C,01,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 40 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:37|<<>>Seatalk1|$STALK,84,06,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:37|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:37|<<>>Seatalk1|$STALK,10,01,FF,AA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -43 ° } +2025-07-24T06:46:37|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:37|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:37|<<O6L7N4?w<2<0d,0|$AIVDM,1,1,,B,139SHt?P00PvOk>O6L7N4?w<2<0d,0 +2025-07-24T06:46:38|<<>>Seatalk1|$STALK,9C,01,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 40 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:38|<<>>Seatalk1|$STALK,84,06,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:38|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:38|<<>>Seatalk1|$STALK,10,01,FF,BA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -35 ° } +2025-07-24T06:46:38|<<4vErDg>04jp,0|$AIVDM,1,1,,B,13ku;qh01C0voV4O>4vErDg>04jp,0 +2025-07-24T06:46:38|<<>>Seatalk1|$STALK,9C,81,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 38 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:39|<<0@GE,0|$AIVDM,1,1,,B,138G;V002:Q0SjHO:VpMdrw>0@GE,0 +2025-07-24T06:46:39|<<>>Seatalk1|$STALK,84,46,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 39 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:39|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:39|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:46:39|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:39|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:39|<<>O145JT?w>0HGd,0|$AIVDM,1,1,,B,139UEUSP1F0ue>>O145JT?w>0HGd,0 +2025-07-24T06:46:40|<<>>Seatalk1|$STALK,9C,41,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 39 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:40|<<>>Seatalk1|$STALK,84,46,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 39 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:40|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:40|<<>>Seatalk1|$STALK,10,01,FF,E0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -16 ° } +2025-07-24T06:46:40|<<>>Seatalk1|$STALK,9C,01,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 38 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:41|<<MVc1D04jp,0|$AIVDM,1,1,,A,139ncKP0000vN9:OMVc1D04jp,0 +2025-07-24T06:46:41|<<>>Seatalk1|$STALK,84,06,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 38 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:41|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:41|<<>>Seatalk1|$STALK,10,01,FF,CC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -26 ° } +2025-07-24T06:46:41|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:41|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:46:42|<<>>Seatalk1|$STALK,9C,01,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 38 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:42|<<>>Seatalk1|$STALK,84,86,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 36 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:42|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:42|<<>>Seatalk1|$STALK,10,01,FF,CA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -27 ° } +2025-07-24T06:46:42|<<>>Seatalk1|$STALK,9C,81,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 36 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:43|<<pqF0000,0|$AIVDM,1,1,,B,139O=5P0350viGbO:IWK>pqF0000,0 +2025-07-24T06:46:43|<<>>Seatalk1|$STALK,84,C6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 37 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:43|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:43|<<>>Seatalk1|$STALK,10,01,FF,DE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -17 ° } +2025-07-24T06:46:43|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:43|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:43|<<F@0?w@00SS,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?w@00SS,0 +2025-07-24T06:46:44|<<>>Seatalk1|$STALK,9C,81,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 36 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:44|<<@003Pv9bTNwnQmI0UF04jp,0|$AIVDM,1,1,,B,13@pD>@003Pv9bTNwnQmI0UF04jp,0 +2025-07-24T06:46:44|<<qNO1AV1qQSF26>C,0|$AIVDM,1,1,,B,339vIM002pPw>qNO1AV1qQSF26>C,0 +2025-07-24T06:46:44|<<fT000020@OSWK1fT000020@OSWK1>>Seatalk1|$STALK,84,86,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 36 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:44|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:44|<<>>Seatalk1|$STALK,10,01,FF,E0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -16 ° } +2025-07-24T06:46:45|<<lO;:h3DmML0<0a,0|$AIVDM,1,1,,B,15ABS400020wW>lO;:h3DmML0<0a,0 +2025-07-24T06:46:45|<<>>Seatalk1|$STALK,9C,41,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 37 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:45|<<>>Seatalk1|$STALK,84,46,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 37 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:45|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:45|<<>>Seatalk1|$STALK,10,01,FF,E0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -16 ° } +2025-07-24T06:46:45|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:45|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:46|<<>>Seatalk1|$STALK,9C,01,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 36 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:46|<<4?wL24jp,0|$AIVDM,1,1,,B,139Q2bPP00Ptn:vO25v>4?wL24jp,0 +2025-07-24T06:46:46|<<>>Seatalk1|$STALK,84,06,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 36 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:46|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:46|<<>>Seatalk1|$STALK,10,01,FF,D2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -23 ° } +2025-07-24T06:46:46|<<>>Seatalk1|$STALK,9C,C1,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 35 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:47|<<>>Seatalk1|$STALK,84,86,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 34 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:47|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:47|<<>>Seatalk1|$STALK,10,01,FF,CA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -27 ° } +2025-07-24T06:46:47|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:47|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:47|<<O:InK8pmN00OA,0|$AIVDM,1,1,,B,339O=5PP360vi<>O:InK8pmN00OA,0 +2025-07-24T06:46:48|<<>>Seatalk1|$STALK,9C,81,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 34 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:48|<<>>Seatalk1|$STALK,84,46,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 35 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:48|<<4?wP24jp,0|$AIVDM,1,1,,A,139SHt?P00PvOk2O6L:>4?wP24jp,0 +2025-07-24T06:46:48|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:48|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:46:48|<<>>Seatalk1|$STALK,9C,41,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 35 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:49|<<465rDgT00Rw,0|$AIVDM,1,1,,A,13ku;qh01C0vod`O>465rDgT00Rw,0 +2025-07-24T06:46:49|<<>>Seatalk1|$STALK,84,46,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 35 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:49|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:49|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:46:49|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:46:49|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:46:49|<<@IR0<0l,0|$AIVDM,1,1,,A,15?det@000PwEU8O4uJd>@IR0<0l,0 +2025-07-24T06:46:50|<<iQi?V21wP,0|$AIVDM,1,1,,A,33@p94hP0t0w@7BO4g>iQi?V21wP,0 +2025-07-24T06:46:50|<<>>Seatalk1|$STALK,9C,01,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 34 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:50|<<>>Seatalk1|$STALK,84,C6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 33 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:50|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:50|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:46:50|<<>>Seatalk1|$STALK,9C,C1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 33 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:51|<<>>Seatalk1|$STALK,84,86,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 32 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:51|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:51|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:46:51|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:51|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:46:52|<<>>Seatalk1|$STALK,9C,41,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 33 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:52|<<fPP00Pvb=nO79sP0?wa2D0P,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79sP0?wa2D0P,0 +2025-07-24T06:46:52|<<>>Seatalk1|$STALK,84,46,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 33 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:52|<<>>Seatalk1|$STALK,85,36,00,42,76,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 230 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:46:52|<<>>Seatalk1|$STALK,10,01,FF,E0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -16 ° } +2025-07-24T06:46:52|<<>>Seatalk1|$STALK,9C,41,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 33 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:53|<<h0020vM?fOh0020vM?fO>>Seatalk1|$STALK,84,C6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 33 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:53|<<>>Seatalk1|$STALK,85,36,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:46:53|<<>>Seatalk1|$STALK,10,01,FF,CE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -25 ° } +2025-07-24T06:46:53|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:46:53|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:54|<<Q9Lgws1l0S3,0|$AIVDM,1,1,,B,B39wP?0068?obS7i>Q9Lgws1l0S3,0 +2025-07-24T06:46:54|<<>>Seatalk1|$STALK,9C,41,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 33 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:54|<<>>Seatalk1|$STALK,84,86,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 30 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:54|<<>>Seatalk1|$STALK,85,36,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.03 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:46:54|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:46:54|<<CBO;78JC@If00Re,0|$AIVDM,1,1,,A,13:EIf00020v>CBO;78JC@If00Re,0 +2025-07-24T06:46:55|<<>>Seatalk1|$STALK,9C,C1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 31 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:55|<<>>Seatalk1|$STALK,84,86,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 30 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:55|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:46:55|<<>>Seatalk1|$STALK,10,01,FF,BE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -33 ° } +2025-07-24T06:46:55|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:46:55|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:46:55|<<>>Seatalk1|$STALK,9C,81,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 30 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:56|<<>>Seatalk1|$STALK,84,46,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 31 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:56|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:46:56|<<>>Seatalk1|$STALK,10,01,FF,C4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -30 ° } +2025-07-24T06:46:56|<<GhO;7;<4?wj0L0p,0|$AIVDM,1,1,,A,13:iFj3P00Pv>GhO;7;<4?wj0L0p,0 +2025-07-24T06:46:57|<<>>Seatalk1|$STALK,9C,41,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 31 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:57|<<>>Seatalk1|$STALK,84,06,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 30 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:57|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:46:57|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:46:57|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:46:57|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:46:57|<<>>Seatalk1|$STALK,9C,01,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 30 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:46:58|<<3H5qlgn04jp,0|$AIVDM,1,1,,B,13ku;qh01C0voj4O>3H5qlgn04jp,0 +2025-07-24T06:46:58|<<>>Seatalk1|$STALK,84,06,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 30 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:46:58|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:46:58|<<>>Seatalk1|$STALK,10,01,FF,CA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -27 ° } +2025-07-24T06:46:58|<<@JO0eE6>E1l00SH,0|$AIVDM,1,1,,B,139NTv000q0u>@JO0eE6>E1l00SH,0 +2025-07-24T06:46:59|<<>>Seatalk1|$STALK,9C,81,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 28 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:46:59|<<>>Seatalk1|$STALK,84,86,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 28 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:46:59|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:46:59|<<>>Seatalk1|$STALK,10,01,FF,C4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -30 ° } +2025-07-24T06:46:59|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:46:59|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:46:59|<<fWhm;Mt7wP1l0R6,0|$AIVDM,1,1,,A,B39J46P0=p?I>fWhm;Mt7wP1l0R6,0 +2025-07-24T06:47:00|<<>>Seatalk1|$STALK,9C,81,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 28 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:00|<<>>Seatalk1|$STALK,84,06,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 28 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:00|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:00|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:47:00|<<>>Seatalk1|$STALK,9C,41,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 29 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:01|<<>>Seatalk1|$STALK,84,46,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 29 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:01|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:01|<<>>Seatalk1|$STALK,10,01,FF,CE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -25 ° } +2025-07-24T06:47:01|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:01|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:01|<<>>Seatalk1|$STALK,9C,01,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 28 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:02|<<h0000vM?JOh0000vM?JO>>Seatalk1|$STALK,84,06,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 28 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:02|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:02|<<>>Seatalk1|$STALK,10,01,FF,E8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -12 ° } +2025-07-24T06:47:02|<<H?U>w7iFWnOwwQUoP06,0|$AIVDM,1,1,,B,B39inLP0>H?U>w7iFWnOwwQUoP06,0 +2025-07-24T06:47:03|<<sWiP<:dowQQh0Q3,0|$AIVDM,1,1,,A,B3`hDsWiP<:dowQQh0Q3,0 +2025-07-24T06:47:03|<<>>Seatalk1|$STALK,9C,81,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 26 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:03|<<5jCQ0,0|$AIVDM,2,1,5,A,53clc@02@twhTUAO:20d4l58Tp6222222222220l4H?:54000>5jCQ0,0 +2025-07-24T06:47:03|<<fPP00Pvb=pO79sP0?v72@2<,0|$AIVDM,1,1,,A,139T>fPP00Pvb=pO79sP0?v72@2<,0 +2025-07-24T06:47:03|<<,0|$AIVDM,1,1,,B,13pr=F00000t14FO4RpJGFB40H2>,0 +2025-07-24T06:47:03|<<>>Seatalk1|$STALK,84,86,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 26 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:03|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:03|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:47:03|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:03|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:04|<<>>Seatalk1|$STALK,9C,81,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 26 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:04|<<F@0?v404jt,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v404jt,0 +2025-07-24T06:47:04|<<>>Seatalk1|$STALK,84,46,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 27 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:04|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:04|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:47:05|<<>>Seatalk1|$STALK,9C,41,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 27 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:05|<<>>Seatalk1|$STALK,84,06,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 26 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:05|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:05|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:47:05|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:05|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:06|<<>>Seatalk1|$STALK,9C,01,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 26 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:06|<<22222221D2i>3>4000?1h`51,0|$AIVDM,2,1,6,B,5815A9l2D;nqKLP?B20D22222221D2i>3>4000?1h`51,0 +2025-07-24T06:47:06|<<>>Seatalk1|$STALK,84,46,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 27 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:06|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:06|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:47:06|<<>>Seatalk1|$STALK,9C,C1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 25 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:07|<<0000,0|$AIVDM,1,1,,B,339O=5P0370vhB:O:JgK58v>0000,0 +2025-07-24T06:47:07|<<HDO;7:Ce?v>0D0p,0|$AIVDM,1,1,,B,13:iFj3P02Pv>HDO;7:Ce?v>0D0p,0 +2025-07-24T06:47:07|<<>>Seatalk1|$STALK,84,86,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 24 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:07|<<>>Seatalk1|$STALK,85,26,00,AA,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 233 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:07|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:47:07|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:07|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:08|<<20SI,0|$AIVDM,1,1,,B,139vIM002qPw?bjO1DiAp1R>20SI,0 +2025-07-24T06:47:08|<<>>Seatalk1|$STALK,9C,81,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 24 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:08|<<>>Seatalk1|$STALK,84,46,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 25 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:08|<<>>Seatalk1|$STALK,85,26,00,22,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:08|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:47:08|<<>>Seatalk1|$STALK,9C,41,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 25 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:09|<<>>Seatalk1|$STALK,84,46,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 25 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:09|<<>>Seatalk1|$STALK,85,26,00,22,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:09|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:47:09|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:09|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:09|<<>>Seatalk1|$STALK,9C,01,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 24 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:10|<<>>Seatalk1|$STALK,84,06,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 24 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:10|<<QkQ3wU5kP06,0|$AIVDM,1,1,,B,B39cMA0000?b;o7i>QkQ3wU5kP06,0 +2025-07-24T06:47:10|<<>>Seatalk1|$STALK,85,26,00,22,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:10|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:47:10|<<>>Seatalk1|$STALK,9C,C1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 23 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:11|<<>>Seatalk1|$STALK,84,C6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 23 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:11|<<>>Seatalk1|$STALK,85,26,00,22,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.02 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:11|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:47:11|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:11|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:11|<<>>Seatalk1|$STALK,9C,81,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 22 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:12|<<>>Seatalk1|$STALK,84,86,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 22 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:12|<<>>Seatalk1|$STALK,85,16,00,22,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 229 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:12|<<>>Seatalk1|$STALK,10,01,FF,C6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -29 ° } +2025-07-24T06:47:12|<<>>Seatalk1|$STALK,9C,41,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 23 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:13|<<K0@88,0|$AIVDM,1,1,,B,13@pVE001C0wObDO:aHhB0>K0@88,0 +2025-07-24T06:47:13|<<>>Seatalk1|$STALK,84,06,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 22 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:13|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:13|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:47:13|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:13|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:14|<<>>Seatalk1|$STALK,9C,01,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 22 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:14|<<D2O;77EfP@N0@8R,0|$AIVDM,1,1,,A,13:EIf00010v>D2O;77EfP@N0@8R,0 +2025-07-24T06:47:14|<<>>Seatalk1|$STALK,84,C6,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 21 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:14|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:14|<<>>Seatalk1|$STALK,10,01,FF,D8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -20 ° } +2025-07-24T06:47:14|<<F@0?vH088o,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vH088o,0 +2025-07-24T06:47:15|<<>>Seatalk1|$STALK,9C,81,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 20 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:15|<<4?vNR89@,0|$AIVDM,1,1,,B,139pin0P00PvbBLO79d>4?vNR89@,0 +2025-07-24T06:47:15|<<>>Seatalk1|$STALK,84,86,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 20 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:15|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:15|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:47:15|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:15|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:15|<<>>Seatalk1|$STALK,9C,81,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 20 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:16|<<>>Seatalk1|$STALK,84,46,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 21 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:16|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:16|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:47:16|<<>>Seatalk1|$STALK,9C,41,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 21 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:17|<<>>Seatalk1|$STALK,84,46,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 21 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:17|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:17|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:47:17|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:17|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:18|<<1kmq4fT04jt,0|$AIVDM,1,1,,B,13ku;qh01C0vov:O>1kmq4fT04jt,0 +2025-07-24T06:47:18|<<>>Seatalk1|$STALK,9C,C1,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 19 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:18|<<EdO0d>FDm2R00SI,0|$AIVDM,1,1,,B,139NTv000r0u>EdO0d>FDm2R00SI,0 +2025-07-24T06:47:18|<<>>Seatalk1|$STALK,84,46,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 21 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:18|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:18|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:47:18|<<>>Seatalk1|$STALK,9C,C1,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 19 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:19|<<>>Seatalk1|$STALK,84,46,09,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 19 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:19|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:19|<<>>Seatalk1|$STALK,10,01,FF,E8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -12 ° } +2025-07-24T06:47:19|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:19|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:19|<<>>Seatalk1|$STALK,9C,41,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 19 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:20|<<>>Seatalk1|$STALK,84,06,09,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 18 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:20|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:20|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:47:20|<<>>Seatalk1|$STALK,9C,01,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 18 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:21|<<>>Seatalk1|$STALK,84,06,09,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 18 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:21|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:21|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:47:21|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:21|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:21|<<>>Seatalk1|$STALK,9C,01,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 18 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:22|<<FjO0cwFDU2b0000,0|$AIVDM,1,1,,A,339NTv000q0u>FjO0cwFDU2b0000,0 +2025-07-24T06:47:22|<<>>Seatalk1|$STALK,84,C6,08,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 17 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:22|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:22|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:47:22|<<fPP00Pvb=dO79t@0?vg24jt,0|$AIVDM,1,1,,A,139T>fPP00Pvb=dO79t@0?vg24jt,0 +2025-07-24T06:47:23|<<e05@C,0|$AIVDM,1,1,,A,33@pVE001B0wOcfO:b<@AP>e05@C,0 +2025-07-24T06:47:23|<<>>Seatalk1|$STALK,9C,81,08,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 16 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:23|<<>>Seatalk1|$STALK,84,86,08,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 16 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:23|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:23|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:47:23|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:47:23|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:23|<<8,0|$AIVDM,1,1,,B,13pr=F00000t14FO4Rq:GFBf0@>8,0 +2025-07-24T06:47:24|<<;,0|$AIVDM,1,1,,A,1815A9h02210KA0O4EIsvqVj0H>;,0 +2025-07-24T06:47:24|<<>>Seatalk1|$STALK,9C,81,08,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 16 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:24|<<>>Seatalk1|$STALK,84,46,08,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 17 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:24|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:24|<<>>Seatalk1|$STALK,10,01,FF,E8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -12 ° } +2025-07-24T06:47:24|<<>>Seatalk1|$STALK,9C,C1,07,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 15 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:25|<<>>Seatalk1|$STALK,84,C6,07,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 15 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:25|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:25|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:47:25|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:47:25|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:25|<<>>Seatalk1|$STALK,9C,C1,07,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 15 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:26|<<H:O;7:AEOvl04jt,0|$AIVDM,1,1,,B,13:iFj3P01Pv>H:O;7:AEOvl04jt,0 +2025-07-24T06:47:26|<<>>Seatalk1|$STALK,84,C6,07,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 15 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:26|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:26|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:47:26|<<>>Seatalk1|$STALK,9C,C1,07,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 15 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:27|<<>>Seatalk1|$STALK,84,86,07,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 14 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:27|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:27|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:47:27|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:27|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:27|<<11EqTfp0D2<,0|$AIVDM,1,1,,A,13ku;qh01D0vp411EqTfp0D2<,0 +2025-07-24T06:47:28|<<>>Seatalk1|$STALK,9C,01,07,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 14 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:28|<<>>Seatalk1|$STALK,84,06,07,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 14 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:28|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:28|<<>>Seatalk1|$STALK,10,01,FF,DE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -17 ° } +2025-07-24T06:47:29|<<RO;DqK=lJp0lsb,0|$AIVDM,1,1,,B,35`73f50000v=>RO;DqK=lJp0lsb,0 +2025-07-24T06:47:29|<<HbO0cU6Cm2p0<0g,0|$AIVDM,1,1,,A,139NTv000q0u>HbO0cU6Cm2p0<0g,0 +2025-07-24T06:47:29|<<>>Seatalk1|$STALK,9C,01,07,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 14 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:29|<<O6L8f4?vr2@AH,0|$AIVDM,1,1,,A,139SHt?P00PvOk>O6L8f4?vr2@AH,0 +2025-07-24T06:47:29|<<>>Seatalk1|$STALK,84,C6,06,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 13 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:29|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:29|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:47:29|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:29|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:30|<<j45000Pv>J0O;?7sn2dt0lpb,0|$AIVDM,1,1,,B,33@>j45000Pv>J0O;?7sn2dt0lpb,0 +2025-07-24T06:47:30|<<>>Seatalk1|$STALK,9C,C1,06,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 13 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:30|<<>>Seatalk1|$STALK,84,46,06,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 13 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:30|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:30|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:47:30|<<>>Seatalk1|$STALK,9C,41,06,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 13 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:31|<<>>Seatalk1|$STALK,84,46,06,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 13 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:31|<<>>Seatalk1|$STALK,85,16,00,02,86,06,57,00,A8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0.01 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:31|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:47:31|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:31|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:47:31|<<h0020vM?fOh0020vM?fO>>Seatalk1|$STALK,9C,01,06,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 12 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:32|<<>>Seatalk1|$STALK,84,C6,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 11 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:32|<<>>Seatalk1|$STALK,85,06,00,02,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:32|<<>>Seatalk1|$STALK,10,01,FF,D6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -21 ° } +2025-07-24T06:47:32|<<>>Seatalk1|$STALK,9C,C1,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 11 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:33|<<fPP00Pvb=hO79u00?w32L0Q,0|$AIVDM,1,1,,B,139T>fPP00Pvb=hO79u00?w32L0Q,0 +2025-07-24T06:47:33|<<>>Seatalk1|$STALK,84,C6,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 11 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:33|<<>>Seatalk1|$STALK,85,06,00,02,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:33|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:47:33|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:33|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:33|<<>>Seatalk1|$STALK,9C,C1,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 11 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:34|<<>>Seatalk1|$STALK,84,86,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 10 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:34|<<>>Seatalk1|$STALK,85,06,00,02,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:34|<<>>Seatalk1|$STALK,10,01,FF,CE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -25 ° } +2025-07-24T06:47:34|<<4?w6RL0K,0|$AIVDM,1,1,,B,139pin0P00PvbBRO79c>4?w6RL0K,0 +2025-07-24T06:47:35|<<>>Seatalk1|$STALK,9C,81,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 10 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:35|<<>>Seatalk1|$STALK,84,46,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 11 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:35|<<>>Seatalk1|$STALK,85,06,00,02,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:35|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:47:35|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:35|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:35|<<H>O;7:BbOw60<0q,0|$AIVDM,1,1,,A,13:iFj3P01Pv>H>O;7:BbOw60<0q,0 +2025-07-24T06:47:36|<<>>Seatalk1|$STALK,9C,41,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 11 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:36|<<>>Seatalk1|$STALK,84,06,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 10 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:36|<<>>Seatalk1|$STALK,85,06,00,02,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:36|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:47:37|<<>>Seatalk1|$STALK,9C,01,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 10 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:37|<<hHPt7CGKIhHPt7CGKI>>Seatalk1|$STALK,84,C6,04,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 9 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:37|<<>>Seatalk1|$STALK,85,06,00,02,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:37|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:47:37|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:37|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:37|<<>>Seatalk1|$STALK,9C,41,04,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 9 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:38|<<>>Seatalk1|$STALK,84,C6,04,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 9 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:38|<<0D0i,0|$AIVDM,1,1,,A,13KKDMP000Pv;u@O;5pTf71>0D0i,0 +2025-07-24T06:47:38|<<>>Seatalk1|$STALK,85,06,00,8A,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:38|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:47:39|<<V5?:9<0DgJ,0|$AIVDM,1,1,,B,33ku8NE0000v?ajO;>V5?:9<0DgJ,0 +2025-07-24T06:47:39|<<>>Seatalk1|$STALK,9C,81,04,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 8 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:39|<<00SP,0|$AIVDM,1,1,,B,339O=5P0350vfplO:LqK@pw>00SP,0 +2025-07-24T06:47:39|<<04jt,0|$AIVDM,1,1,,A,13KKDCPP01Pv<;PO;5l;JIi>04jt,0 +2025-07-24T06:47:39|<<0000,0|$AIVDM,1,1,,B,138G;V0029Q0SMtO:gfMbbu>0000,0 +2025-07-24T06:47:39|<<>>Seatalk1|$STALK,84,46,04,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 9 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:39|<<>>Seatalk1|$STALK,85,06,00,8A,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:39|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:47:39|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:39|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:39|<<>>Seatalk1|$STALK,9C,01,04,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 8 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:40|<<>>Seatalk1|$STALK,84,06,04,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 8 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:40|<<>>Seatalk1|$STALK,85,06,00,8A,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:40|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:47:40|<<>>Seatalk1|$STALK,9C,C1,03,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 7 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:41|<<>>Seatalk1|$STALK,84,C6,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 7 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:41|<<>>Seatalk1|$STALK,85,06,00,6A,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:41|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:47:41|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:41|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:42|<<O0Lr:I8KB0120,0|$AIVDM,1,1,,A,33aCdr3P17Pvnv>O0Lr:I8KB0120,0 +2025-07-24T06:47:42|<<4j=W9@0DWJ,0|$AIVDM,1,1,,B,33cPHl50000v<3`O;>4j=W9@0DWJ,0 +2025-07-24T06:47:42|<<>>Seatalk1|$STALK,9C,C1,03,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 7 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:42|<<h0020vM?JOh0020vM?JO>>Seatalk1|$STALK,84,46,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 7 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:42|<<>>Seatalk1|$STALK,85,06,00,6A,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:42|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:47:42|<<O@ibkhJ1B04jt,0|$AIVDM,1,1,,B,13@pVL@0070wMv>O@ibkhJ1B04jt,0 +2025-07-24T06:47:43|<<>>Seatalk1|$STALK,9C,01,03,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 6 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:43|<<`uF0000,0|$AIVDM,1,1,,B,139O=5P0350vfeTO:M8K>`uF0000,0 +2025-07-24T06:47:43|<<fPP00Pvb=nO79u00?wG2HIU,0|$AIVDM,1,1,,A,139T>fPP00Pvb=nO79u00?wG2HIU,0 +2025-07-24T06:47:43|<<>>Seatalk1|$STALK,84,06,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 6 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:43|<<>>Seatalk1|$STALK,85,06,00,6A,86,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:43|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:47:43|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:43|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:43|<<>>Seatalk1|$STALK,9C,01,03,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 6 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:44|<<@003Pv9d:NwnHmN0OF00S;,0|$AIVDM,1,1,,B,13@pD>@003Pv9d:NwnHmN0OF00S;,0 +2025-07-24T06:47:44|<<D6O;76UfPGJ08J;,0|$AIVDM,1,1,,B,13:EIf0P010v>D6O;76UfPGJ08J;,0 +2025-07-24T06:47:44|<<>>Seatalk1|$STALK,84,06,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 6 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:44|<<>>Seatalk1|$STALK,85,06,00,E2,85,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:44|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:47:45|<<>>Seatalk1|$STALK,9C,C1,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 5 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:45|<<;u9WL04jt,0|$AIVDM,1,1,,A,1815A9h02210JflO4G>;u9WL04jt,0 +2025-07-24T06:47:45|<<>>Seatalk1|$STALK,84,C6,02,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 5 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:45|<<>>Seatalk1|$STALK,85,06,00,E2,85,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:45|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:47:45|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:45|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:46|<<H2O;7:Mq?wL0<0q,0|$AIVDM,1,1,,B,13:iFj3P01Pv>H2O;7:Mq?wL0<0q,0 +2025-07-24T06:47:46|<<>>Seatalk1|$STALK,9C,81,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 4 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:46|<<>>Seatalk1|$STALK,84,86,02,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 4 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:46|<<>>Seatalk1|$STALK,85,06,00,E2,85,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.04 NM } +2025-07-24T06:47:46|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:47:46|<<>>Seatalk1|$STALK,9C,81,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 4 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:47|<<>>Seatalk1|$STALK,84,06,02,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 4 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:47|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:47|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:47:47|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:47|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:47|<<>>Seatalk1|$STALK,9C,01,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 4 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:48|<<>>Seatalk1|$STALK,84,06,02,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 4 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:48|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:48|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:47:48|<<>>Seatalk1|$STALK,9C,81,01,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 2 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:49|<<>>Seatalk1|$STALK,84,86,01,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 2 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:49|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:49|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:47:49|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:49|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:50|<<WKT0D1O,0|$AIVDM,1,1,,B,13@orC003C0vjJ0OWKT0D1O,0 +2025-07-24T06:47:50|<<>>Seatalk1|$STALK,9C,81,01,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 2 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:50|<<>>Seatalk1|$STALK,84,C6,00,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 1 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:50|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:50|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:47:50|<<>>Seatalk1|$STALK,9C,01,01,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 2 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:51|<<tn4h5AOR21LTitn4h5AOR21LTi>>Seatalk1|$STALK,84,06,01,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 2 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:51|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:51|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:47:51|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:51|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:51|<<eVc1b00SA,0|$AIVDM,1,1,,B,139ncKP0000vN9`OeVc1b00SA,0 +2025-07-24T06:47:52|<<>>Seatalk1|$STALK,9C,C1,00,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 1 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:52|<<>>Seatalk1|$STALK,84,C6,00,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 1 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:52|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:52|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:47:52|<<>>Seatalk1|$STALK,9C,81,00,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 0 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:53|<<h0020vM?JOh0020vM?JO>>Seatalk1|$STALK,84,86,00,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 0 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:53|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:53|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:47:53|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:53|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:54|<<;5Jows1lL1d,0|$AIVDM,1,1,,B,B39wP?006`?oed7i>;5Jows1lL1d,0 +2025-07-24T06:47:54|<<>>Seatalk1|$STALK,9C,81,00,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 0 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:54|<<>>Seatalk1|$STALK,84,86,00,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 0 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:54|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:54|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:47:54|<<F@0?w`0HP>,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?w`0HP>,0 +2025-07-24T06:47:55|<<@003Pv9dLNwnGEN0Od0@PI,0|$AIVDM,1,1,,A,13@pD>@003Pv9dLNwnGEN0Od0@PI,0 +2025-07-24T06:47:55|<<>>Seatalk1|$STALK,9C,01,00,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 0 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:55|<<>>Seatalk1|$STALK,84,F6,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 359 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:55|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:55|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:47:55|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:55|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:55|<<>>Seatalk1|$STALK,9C,F1,2C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 359 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:56|<<>>Seatalk1|$STALK,84,76,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 359 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:56|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:56|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:47:56|<<>>Seatalk1|$STALK,9C,B1,2C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 358 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:57|<<>>Seatalk1|$STALK,84,B6,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 358 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:47:57|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:57|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:47:57|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:57|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:58|<<>>Seatalk1|$STALK,9C,B1,2C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 358 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:47:58|<<>>Seatalk1|$STALK,84,76,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 359 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:58|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:58|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:47:58|<<<,0|$AIVDM,2,1,3,A,53@pVE82;AIPu`QS:20PDTl@4j1:22222222220Q7PH9:4000=Rl8><,0 +2025-07-24T06:47:59|<<>>Seatalk1|$STALK,9C,31,2C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 358 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:47:59|<<PHO0alnDDwl00v1,0|$AIVDM,1,1,,B,339NTv0P0q0u>PHO0alnDDwl00v1,0 +2025-07-24T06:47:59|<<>>Seatalk1|$STALK,84,36,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 358 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:47:59|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:47:59|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:47:59|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:47:59|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:47:59|<<>>Seatalk1|$STALK,9C,F1,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 357 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:00|<<>>Seatalk1|$STALK,84,F6,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 357 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:00|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:00|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:48:00|<<>>Seatalk1|$STALK,9C,71,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 357 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:01|<<40w,0|$AIVDM,1,1,,A,H39EpJ4UG43400041opki000>40w,0 +2025-07-24T06:48:01|<<>>Seatalk1|$STALK,84,B6,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:01|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:01|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:48:01|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:01|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:01|<<>>Seatalk1|$STALK,9C,B1,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:02|<<>>Seatalk1|$STALK,84,F6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:02|<<p?p0I7j3=DBowQ1l4k0,0|$AIVDM,1,1,,B,B3@oGQ@0>p?p0I7j3=DBowQ1l4k0,0 +2025-07-24T06:48:02|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:02|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:48:02|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:03|<<fPP00Pvb=tO79tP0?v72<0Q,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79tP0?v72<0Q,0 +2025-07-24T06:48:03|<<DPO;75sB0N800S;,0|$AIVDM,1,1,,B,13:EIf00030v>DPO;75sB0N800S;,0 +2025-07-24T06:48:03|<<>>Seatalk1|$STALK,84,36,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:03|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:03|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:48:03|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:03|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:03|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:04|<<H`2GgFl@dqK:210ThuB0dh453100003D2C3m,0|$AIVDM,2,1,4,B,53:4>H`2GgFl@dqK:210ThuB0dh453100003D2C3m,0 +2025-07-24T06:48:04|<<>>Seatalk1|$STALK,84,F6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:04|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:04|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:48:04|<<>>Seatalk1|$STALK,9C,B1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:05|<<4?v:R@3K,0|$AIVDM,1,1,,A,139pin0P00PvbBLO79c>4?v:R@3K,0 +2025-07-24T06:48:05|<<>>Seatalk1|$STALK,84,B6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 354 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:05|<<>>Seatalk1|$STALK,85,06,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:05|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:48:05|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:05|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:06|<<8O:jd;>pr>0L0k,0|$AIVDM,1,1,,A,13:EQR000r0vK>8O:jd;>pr>0L0k,0 +2025-07-24T06:48:06|<<>>Seatalk1|$STALK,9C,71,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:06|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:06|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:06|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:48:06|<<2<0v,0|$AIVDM,1,1,,B,13@p94hP0u0w@0`O4g<8K6d>2<0v,0 +2025-07-24T06:48:07|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:07|<<>>Seatalk1|$STALK,84,F6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 353 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:07|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:07|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:48:07|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:07|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:08|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:08|<<0H4w,0|$AIVDM,1,1,,B,139vIM002rPwAb4O1LJAwi`>0H4w,0 +2025-07-24T06:48:08|<<>04k0,0|$AIVDM,1,1,,A,19NSghPvR@Q1m7lO?ErD53>>04k0,0 +2025-07-24T06:48:08|<<>>Seatalk1|$STALK,84,F6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 353 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:08|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:08|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:48:08|<<>>Seatalk1|$STALK,9C,B1,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 352 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:09|<<>>Seatalk1|$STALK,84,76,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 353 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:09|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:09|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:48:09|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:09|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:09|<<>>Seatalk1|$STALK,9C,71,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 353 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:10|<<>>Seatalk1|$STALK,84,F6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:10|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:10|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:48:10|<<>>Seatalk1|$STALK,9C,F1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:11|<<>>Seatalk1|$STALK,84,F6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:11|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:11|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:48:11|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:11|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:12|<<>>Seatalk1|$STALK,9C,F1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:12|<<>>Seatalk1|$STALK,84,F6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:12|<<T6O0a5V>TtF0000,0|$AIVDM,1,1,,B,339NTv000q0u>T6O0a5V>TtF0000,0 +2025-07-24T06:48:12|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:12|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:48:12|<<>>Seatalk1|$STALK,9C,B1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:13|<<>>Seatalk1|$STALK,84,36,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 350 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:13|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:13|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:48:13|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:13|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:13|<<>>Seatalk1|$STALK,9C,31,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:14|<<CtO;78DlhJN0<1u,0|$AIVDM,1,1,,A,13:EIf00020v>CtO;78DlhJN0<1u,0 +2025-07-24T06:48:14|<<>>Seatalk1|$STALK,84,36,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 350 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:14|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:14|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:48:14|<<F@0?vF04k0,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vF04k0,0 +2025-07-24T06:48:15|<<>>Seatalk1|$STALK,9C,31,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:15|<<>>Seatalk1|$STALK,84,F6,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 349 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:15|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:15|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:48:15|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:15|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:16|<<>>Seatalk1|$STALK,9C,F1,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 349 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:16|<<>>Seatalk1|$STALK,84,B6,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:16|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:16|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:48:17|<<>>Seatalk1|$STALK,9C,F1,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 349 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:17|<<>>Seatalk1|$STALK,84,76,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 349 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:17|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:17|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:48:17|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:17|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:17|<<>>Seatalk1|$STALK,9C,31,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 348 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:18|<<>>Seatalk1|$STALK,84,36,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:18|<<>>Seatalk1|$STALK,85,16,00,E2,75,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.03 NM } +2025-07-24T06:48:18|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:48:19|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:19|<<>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:19|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:19|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:48:19|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:19|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:20|<<CDV0DKr,0|$AIVDM,1,1,,B,339LE450000w1`:NvMHS>CDV0DKr,0 +2025-07-24T06:48:20|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:20|<<>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:20|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:20|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:48:20|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:21|<<0QLWwbQlD1b,0|$AIVDM,1,1,,A,B39wP?006`?og:Wi>0QLWwbQlD1b,0 +2025-07-24T06:48:21|<<>>Seatalk1|$STALK,84,36,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:21|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:21|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:48:21|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:21|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:22|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:22|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:22|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:22|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:48:23|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:23|<<>>Seatalk1|$STALK,84,B6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:23|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:23|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:48:23|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:23|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:24|<<>>Seatalk1|$STALK,9C,B1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:24|<<F@0?vb04k0,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?vb04k0,0 +2025-07-24T06:48:24|<<>>Seatalk1|$STALK,84,76,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:24|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:24|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:48:24|<<o,0|$AIVDM,1,1,,B,15ABS400020wWB2O;:jCNETl08>o,0 +2025-07-24T06:48:25|<<>>Seatalk1|$STALK,9C,71,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:25|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:25|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:25|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:48:25|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:25|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:26|<<>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:26|<<H8O;7:Cg?vl00SV,0|$AIVDM,1,1,,B,13:iFj3P01Pv>H8O;7:Cg?vl00SV,0 +2025-07-24T06:48:26|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:26|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:26|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:48:27|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:27|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:27|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:27|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:48:27|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:27|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:28|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:28|<<>>Seatalk1|$STALK,84,76,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:28|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:28|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:48:28|<<aFO0`9F9lrp08Am,0|$AIVDM,1,1,,A,139NTv000q0u>aFO0`9F9lrp08Am,0 +2025-07-24T06:48:29|<<>>Seatalk1|$STALK,9C,71,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:29|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:29|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:29|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:48:29|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:29|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:30|<<>>Seatalk1|$STALK,9C,31,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:30|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:30|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:30|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:48:31|<<H?p3F7j3UtBWwg1lD22,0|$AIVDM,1,1,,A,B3@oGQ@0>H?p3F7j3UtBWwg1lD22,0 +2025-07-24T06:48:31|<<H?TtuWiFCVPWwgUoP06,0|$AIVDM,1,1,,A,B39inLP0>H?TtuWiFCVPWwgUoP06,0 +2025-07-24T06:48:31|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:31|<<Nvuqu6?vv0@BP,0|$AIVDM,1,1,,A,139MLt3P000vPn>Nvuqu6?vv0@BP,0 +2025-07-24T06:48:31|<<>>Seatalk1|$STALK,84,F6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:31|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:31|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:48:31|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:31|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:32|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:32|<<>>Seatalk1|$STALK,84,76,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:32|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:32|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:48:32|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:33|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:33|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:33|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:48:33|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:33|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:34|<<O:hb@@0=500S?,0|$AIVDM,1,1,,B,13@pVE001C0wOn>O:hb@@0=500S?,0 +2025-07-24T06:48:34|<<F@0?vv0<17,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vv0<17,0 +2025-07-24T06:48:34|<<>>Seatalk1|$STALK,9C,F1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:34|<<@003Pv9e:NwnC5PPK40@D>,0|$AIVDM,1,1,,A,13@pD>@003Pv9e:NwnC5PPK40@D>,0 +2025-07-24T06:48:34|<<,0|$AIVDM,1,1,,B,1815A9h02210IQ:O4KAcraU608D>,0 +2025-07-24T06:48:34|<<>>Seatalk1|$STALK,84,36,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:34|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:34|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:48:35|<<D8O;794RhI60@DW,0|$AIVDM,1,1,,A,13:EIf00010v>D8O;794RhI60@DW,0 +2025-07-24T06:48:35|<<c<8m800S6,0|$AIVDM,1,1,,B,13:EQR000s0vJmhO:k>c<8m800S6,0 +2025-07-24T06:48:35|<<93604k0,0|$AIVDM,1,1,,B,139O=5P0310vdLlO:Ons>93604k0,0 +2025-07-24T06:48:35|<<>>Seatalk1|$STALK,9C,F1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:35|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:35|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:35|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:48:35|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:35|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:36|<<>>Seatalk1|$STALK,9C,B1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:36|<<>>Seatalk1|$STALK,84,76,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:36|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:36|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:48:36|<<>>Seatalk1|$STALK,9C,31,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:37|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:37|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:37|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:48:37|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:38|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:48:38|<<>>Seatalk1|$STALK,9C,31,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:38|<<>>Seatalk1|$STALK,84,F6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:38|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:38|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:48:39|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:39|<<dTO0WV694u<0HGk,0|$AIVDM,1,1,,B,139NTv000q0u>dTO0WV694u<0HGk,0 +2025-07-24T06:48:39|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:39|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:39|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:48:39|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:39|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:40|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:40|<<0@Gd,0|$AIVDM,1,1,,B,139UEUSP1I0ubhJO143:Rgw>0@Gd,0 +2025-07-24T06:48:40|<<01=Q,0|$AIVDM,1,1,,A,33aCdr3012Pvn8@O0Mlcf9U>01=Q,0 +2025-07-24T06:48:40|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:40|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:40|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:48:40|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:41|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:41|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:41|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:48:41|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:41|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:42|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:42|<<h0020vM?JOh0020vM?JO>>Seatalk1|$STALK,84,F6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 335 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:42|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:42|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:48:42|<<>>Seatalk1|$STALK,9C,31,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:43|<<O4fMA3hiH212h,0|$AIVDM,1,1,,A,33@p94hP130w@0>O4fMA3hiH212h,0 +2025-07-24T06:48:43|<<>>Seatalk1|$STALK,84,B6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:43|<<>>Seatalk1|$STALK,85,16,00,E2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:48:43|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:48:43|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:43|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:43|<<>>Seatalk1|$STALK,9C,B1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 334 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:44|<<F@0?wD0<18,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?wD0<18,0 +2025-07-24T06:48:44|<<>>Seatalk1|$STALK,84,B6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:44|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:44|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:48:44|<<>>Seatalk1|$STALK,9C,F1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:45|<<>>Seatalk1|$STALK,84,F6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:45|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:45|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:48:45|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:46|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:46|<<H8O;7:Q4wwJ08K8,0|$AIVDM,1,1,,B,13:iFj3P01Pv>H8O;7:Q4wwJ08K8,0 +2025-07-24T06:48:46|<<>>Seatalk1|$STALK,9C,31,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 334 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:46|<<>>Seatalk1|$STALK,84,36,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:46|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:46|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:48:46|<<>>Seatalk1|$STALK,9C,F1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:47|<<8?W?P01=P,0|$AIVDM,1,1,,A,33@pc=hP0B0v;TDO;7>8?W?P01=P,0 +2025-07-24T06:48:47|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:47|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:47|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:48:47|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:48|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:48|<<>>Seatalk1|$STALK,9C,B1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:48|<<>>Seatalk1|$STALK,84,76,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:48|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:48|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:48:48|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:49|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:49|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:49|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:48:49|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:48:49|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:50|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:50|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:50|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:50|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:48:51|<<NvutM6?wV0<0P,0|$AIVDM,1,1,,A,139MLt3P000vPn>NvutM6?wV0<0P,0 +2025-07-24T06:48:51|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:51|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:51|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:51|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:48:51|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:51|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:52|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:52|<<fPP00Pvb>8O79sP0?wa2<0R,0|$AIVDM,1,1,,B,139T>fPP00Pvb>8O79sP0?wa2<0R,0 +2025-07-24T06:48:52|<<>>Seatalk1|$STALK,84,B6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:52|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:52|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:48:52|<<nfam`0hOA,0|$AIVDM,1,1,,B,13@orW@0030vq0LO2p>nfam`0hOA,0 +2025-07-24T06:48:53|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:53|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:53|<<>>Seatalk1|$STALK,85,16,00,C2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:48:53|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:48:53|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:53|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:48:54|<<DDO;78lRhIf0<1v,0|$AIVDM,1,1,,A,13:EIf00000v>DDO;78lRhIf0<1v,0 +2025-07-24T06:48:54|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:54|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:54|<<F@0?w`0D17,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?w`0D17,0 +2025-07-24T06:48:54|<<>>Seatalk1|$STALK,85,16,00,C2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:48:54|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:48:54|<<>>Seatalk1|$STALK,9C,31,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:55|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:55|<<>>Seatalk1|$STALK,85,16,00,C2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:48:55|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:48:55|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:56|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:56|<<>>Seatalk1|$STALK,9C,F1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:56|<<4?wh24k0,0|$AIVDM,1,1,,A,139Q2bPP00Ptn:FO260>4?wh24k0,0 +2025-07-24T06:48:56|<<>>Seatalk1|$STALK,84,F6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:56|<<>>Seatalk1|$STALK,85,16,00,C2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:48:56|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:48:56|<<hqj2@QO,0|$AIVDM,1,1,,A,13@p94hP0u0w@7LO4g@A>hqj2@QO,0 +2025-07-24T06:48:57|<<>>Seatalk1|$STALK,9C,B1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:57|<<>>Seatalk1|$STALK,84,36,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:57|<<>>Seatalk1|$STALK,85,16,00,C2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:48:57|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:48:57|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:48:58|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:48:58|<<>>Seatalk1|$STALK,9C,71,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:48:58|<<>>Seatalk1|$STALK,84,B6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:48:58|<<>>Seatalk1|$STALK,85,16,00,C2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:48:58|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:48:59|<<>>Seatalk1|$STALK,9C,F1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:48:59|<<jlO0VN6;Dul00tQ,0|$AIVDM,1,1,,B,339NTv0P0q0u>jlO0VN6;Dul00tQ,0 +2025-07-24T06:48:59|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:48:59|<<>>Seatalk1|$STALK,85,16,00,C2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:48:59|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:48:59|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:00|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:00|<<>>Seatalk1|$STALK,9C,31,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:00|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:00|<<>>Seatalk1|$STALK,85,16,00,C2,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:49:00|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:49:00|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:01|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:01|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:01|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:49:01|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:02|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:02|<<>>Seatalk1|$STALK,9C,F1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:02|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:02|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:02|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:49:02|<<>>Seatalk1|$STALK,9C,B1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:03|<<F@0?v00D17,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v00D17,0 +2025-07-24T06:49:03|<<,0|$AIVDM,1,1,,B,13pr=F00000t14,0 +2025-07-24T06:49:03|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:03|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:03|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:49:03|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:04|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:04|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:04|<<>>Seatalk1|$STALK,84,B6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:04|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:04|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:49:04|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:05|<<4?v:R<0K,0|$AIVDM,1,1,,A,139pin0P00PvbBRO79a>4?v:R<0K,0 +2025-07-24T06:49:05|<<>>Seatalk1|$STALK,84,F6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:05|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:05|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:49:05|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:05|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:06|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:06|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:06|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:06|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:49:07|<<>>Seatalk1|$STALK,9C,31,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:07|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:07|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:07|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:49:07|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:08|<<>>Seatalk1|$STALK,20,81,18,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 614.4 kn, Forwarded = True } +2025-07-24T06:49:08|<<4?v>24k4,0|$AIVDM,1,1,,B,139Q2bPP00Ptn:JO260>4?v>24k4,0 +2025-07-24T06:49:08|<<084q,0|$AIVDM,1,1,,B,138G;V002:Q0RwFO:tf=dbv>084q,0 +2025-07-24T06:49:08|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:08|<<2D0w,0|$AIVDM,1,1,,B,139vIM002qPwCdhO1Sdj7ih>2D0w,0 +2025-07-24T06:49:08|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:08|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:08|<<O=q3Eo4fB00Ro,0|$AIVDM,1,1,,A,13ku;qh01D0vq2>O=q3Eo4fB00Ro,0 +2025-07-24T06:49:08|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:49:09|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:09|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:09|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:09|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:49:09|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:09|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:10|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:10|<<>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:10|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:10|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:49:11|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:11|<<>>Seatalk1|$STALK,84,36,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:11|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:11|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:49:11|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:12|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:12|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:12|<<o2O0Ufn8TtF0000,0|$AIVDM,1,1,,B,339NTv000q0u>o2O0Ufn8TtF0000,0 +2025-07-24T06:49:12|<<>>Seatalk1|$STALK,84,B6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 346 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:12|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:12|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:49:12|<<>>Seatalk1|$STALK,9C,B1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:13|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:13|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:13|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:49:13|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:14|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:14|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:14|<<ClO;75s10FN088R,0|$AIVDM,1,1,,A,13:EIf0P010v>ClO;75s10FN088R,0 +2025-07-24T06:49:14|<<>>Seatalk1|$STALK,84,F6,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:14|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:14|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:49:14|<<F@0?vH00S=,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vH00S=,0 +2025-07-24T06:49:15|<<>>Seatalk1|$STALK,9C,F1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:15|<<>>Seatalk1|$STALK,84,76,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 349 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:15|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:15|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:49:15|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:49:15|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:16|<<>>Seatalk1|$STALK,9C,F1,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 349 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:16|<<>>Seatalk1|$STALK,84,36,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 350 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:16|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:16|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:49:17|<<>>Seatalk1|$STALK,9C,31,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:17|<<00=4>Cj0000;31w,0|$AIVDM,1,1,,B,H3MA00=4>Cj0000;31w,0 +2025-07-24T06:49:17|<<>>Seatalk1|$STALK,84,76,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:17|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:17|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:49:17|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:18|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:18|<<O;6GHLF>V00pP,0|$AIVDM,1,1,,B,33@pc=hP0f0v;G>O;6GHLF>V00pP,0 +2025-07-24T06:49:18|<<>>Seatalk1|$STALK,9C,B1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:18|<<,0|$AIVDM,1,1,,B,13ku;qh01D0vq8VO=p@UnTfV0<2>,0 +2025-07-24T06:49:18|<<>>Seatalk1|$STALK,84,36,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:18|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:18|<<ptO0UI69DtR0H;j,0|$AIVDM,1,1,,B,139NTv000q0u>ptO0UI69DtR0H;j,0 +2025-07-24T06:49:18|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:49:19|<<>>Seatalk1|$STALK,9C,B1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:19|<<>>Seatalk1|$STALK,84,F6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:19|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:19|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:49:19|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:20|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:20|<<>>Seatalk1|$STALK,9C,31,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 352 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:20|<<>>Seatalk1|$STALK,84,B6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:20|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:20|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:49:21|<<>>Seatalk1|$STALK,9C,B1,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 352 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:21|<<>>Seatalk1|$STALK,84,F6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 353 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:21|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:21|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:49:21|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:22|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:22|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:22|<<>>Seatalk1|$STALK,84,36,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 354 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:22|<<>>Seatalk1|$STALK,85,16,00,E2,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:49:22|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:49:23|<<CRO;75l>PBh0@=e,0|$AIVDM,1,1,,B,13:EIf0P040v>CRO;75l>PBh0@=e,0 +2025-07-24T06:49:23|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:23|<<5,0|$AIVDM,1,1,,B,139O=5PP350vbI0O:SDs@prf0@>5,0 +2025-07-24T06:49:23|<<>>Seatalk1|$STALK,84,B6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 354 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:23|<<>>Seatalk1|$STALK,85,16,00,4A,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:23|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:49:23|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:24|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:24|<<;,0|$AIVDM,1,1,,A,1815A9h02210HC:O4OAKsqVj0@>;,0 +2025-07-24T06:49:24|<<>>Seatalk1|$STALK,9C,B1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:24|<<>>Seatalk1|$STALK,84,B6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 354 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:24|<<>>Seatalk1|$STALK,85,16,00,4A,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:24|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:49:24|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:25|<<>>Seatalk1|$STALK,84,F6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:25|<<>>Seatalk1|$STALK,85,16,00,4A,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:25|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:49:25|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:26|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:26|<<>>Seatalk1|$STALK,9C,31,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:26|<<4?vl28?j,0|$AIVDM,1,1,,B,139Q2bPP00Ptn:FO260>4?vl28?j,0 +2025-07-24T06:49:26|<<>>Seatalk1|$STALK,84,36,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:26|<<>>Seatalk1|$STALK,85,16,00,4A,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:26|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:49:27|<<>>Seatalk1|$STALK,9C,B1,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:27|<<>>Seatalk1|$STALK,84,F6,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 357 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:27|<<>>Seatalk1|$STALK,85,16,00,4A,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:27|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:49:27|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:28|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:28|<<>>Seatalk1|$STALK,9C,F1,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 357 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:28|<<>>Seatalk1|$STALK,84,36,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 358 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:28|<<>>Seatalk1|$STALK,85,16,00,4A,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:28|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:49:28|<<>>Seatalk1|$STALK,9C,F1,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 357 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:29|<<>>Seatalk1|$STALK,84,76,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 359 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:29|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:29|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:49:29|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:30|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:30|<<>>Seatalk1|$STALK,9C,B1,2C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 358 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:30|<<HU000PvnKRNvUN03k2r0E9r,0|$AIVDM,1,1,,B,33:4>HU000PvnKRNvUN03k2r0E9r,0 +2025-07-24T06:49:30|<<>>Seatalk1|$STALK,84,B6,2C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 358 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:30|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:30|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:49:31|<<>>Seatalk1|$STALK,9C,F1,2C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 359 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:31|<<>>Seatalk1|$STALK,84,06,00,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 0 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:31|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:31|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:49:31|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:32|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:32|<<m0020vM?JOm0020vM?JO>>Seatalk1|$STALK,9C,41,00,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 1 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:32|<<>>Seatalk1|$STALK,84,46,00,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 1 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:32|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:32|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:49:33|<<>>Seatalk1|$STALK,9C,41,00,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 1 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:33|<<0O=TLntmU40D2S,0|$AIVDM,1,1,,A,13mDP2001W0vm>0O=TLntmU40D2S,0 +2025-07-24T06:49:33|<<>>Seatalk1|$STALK,84,C6,00,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 1 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:33|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:33|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:49:33|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:34|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:34|<<>>Seatalk1|$STALK,9C,C1,00,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 1 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:34|<<@002Pv9fHNwn;EPPI20<0K,0|$AIVDM,1,1,,A,13@pD>@002Pv9fHNwn;EPPI20<0K,0 +2025-07-24T06:49:34|<<>>Seatalk1|$STALK,84,06,01,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 2 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:34|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:34|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:49:34|<<CHO;754khC60<1w,0|$AIVDM,1,1,,A,13:EIf00010v>CHO;754khC60<1w,0 +2025-07-24T06:49:35|<<4?w6RD0K,0|$AIVDM,1,1,,B,139pin0P00PvbBLO79d>4?w6RD0K,0 +2025-07-24T06:49:35|<<>>Seatalk1|$STALK,9C,01,01,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 2 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:35|<<>>Seatalk1|$STALK,84,46,01,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 3 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:35|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:35|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:49:36|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:36|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:36|<<H8O;7:CAww804k4,0|$AIVDM,1,1,,A,13:iFj3P01Pv>H8O;7:CAww804k4,0 +2025-07-24T06:49:36|<<>>Seatalk1|$STALK,9C,81,01,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 2 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:36|<<>>Seatalk1|$STALK,84,86,01,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 2 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:36|<<94000>lmjCS,0|$AIVDM,2,1,1,A,538G;V829WdH?@iK:20L4hThEE=b22222222220t?pG>94000>lmjCS,0 +2025-07-24T06:49:36|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:36|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:49:37|<<>>Seatalk1|$STALK,9C,C1,01,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 3 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:37|<<,0|$AIVDM,1,1,,B,13ku;qh01D0vqDdO=nhUnTg<0<2>,0 +2025-07-24T06:49:37|<<>>Seatalk1|$STALK,84,C6,01,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 3 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:37|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:37|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:49:38|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:38|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:38|<<>>Seatalk1|$STALK,9C,01,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 4 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:38|<<>>Seatalk1|$STALK,84,46,02,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 5 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:38|<<>>Seatalk1|$STALK,85,26,00,C2,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:49:38|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:49:39|<<>>Seatalk1|$STALK,9C,41,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 5 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:39|<<00`@,0|$AIVDM,1,1,,B,339O=5PP320vactO:T9K3Hm>00`@,0 +2025-07-24T06:49:39|<<>>Seatalk1|$STALK,84,C6,02,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 5 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:39|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:39|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:49:40|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:40|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:40|<<>>Seatalk1|$STALK,9C,C1,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 5 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:40|<<>>Seatalk1|$STALK,84,C6,02,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 5 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:40|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:40|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:49:40|<<>>Seatalk1|$STALK,9C,C1,02,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 5 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:41|<<m0020vM?JO@,0|$AIVDM,1,1,,B,33@oP>m0020vM?JO@,0 +2025-07-24T06:49:41|<<>>Seatalk1|$STALK,84,06,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 6 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:41|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:41|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:49:41|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:49:42|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:42|<<c18mB00OQ,0|$AIVDM,1,1,,A,339O=5PP320vaVDO:T>c18mB00OQ,0 +2025-07-24T06:49:42|<<>>Seatalk1|$STALK,9C,81,03,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 6 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:42|<<>>Seatalk1|$STALK,84,C6,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 7 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:42|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:42|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:49:43|<<2222220s386330000911DhD,0|$AIVDM,2,1,3,A,53@oL@T1jeKPuDh;:2058pF1@U2222220s386330000911DhD,0 +2025-07-24T06:49:43|<<>>Seatalk1|$STALK,9C,C1,03,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 7 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:43|<<fPP00Pvb>:O79s00?wG2@IU,0|$AIVDM,1,1,,A,139T>fPP00Pvb>:O79s00?wG2@IU,0 +2025-07-24T06:49:43|<<>>Seatalk1|$STALK,84,C6,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 7 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:43|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:43|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:49:43|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:44|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:44|<<>>Seatalk1|$STALK,9C,41,04,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 9 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:44|<<>>Seatalk1|$STALK,84,86,04,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 8 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:44|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:44|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:49:44|<<,0|$AIVDM,1,1,,B,15ABS400020wWETO;:mkP5WL00S>,0 +2025-07-24T06:49:45|<<>>Seatalk1|$STALK,9C,81,04,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 8 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:45|<<>>Seatalk1|$STALK,84,86,04,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 8 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:45|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:45|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:49:46|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:46|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:46|<<H8O;7:BK?wL04k4,0|$AIVDM,1,1,,B,13:iFj3P00Pv>H8O;7:BK?wL04k4,0 +2025-07-24T06:49:46|<<>>Seatalk1|$STALK,9C,C1,04,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 9 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:46|<<P008Pwa?NOC7h3obeD0@KI,0|$AIVDM,1,1,,A,13@pD>P008Pwa?NOC7h3obeD0@KI,0 +2025-07-24T06:49:46|<<>>Seatalk1|$STALK,84,46,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 11 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:46|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:46|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:49:46|<<>>Seatalk1|$STALK,9C,01,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 10 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:47|<<>>Seatalk1|$STALK,84,06,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 10 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:47|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:47|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:49:47|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:48|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:48|<<>>Seatalk1|$STALK,9C,C1,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 11 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:48|<<>>Seatalk1|$STALK,84,86,05,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 10 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:48|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:48|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:49:48|<<>>Seatalk1|$STALK,9C,C1,05,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 11 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:49|<<>>Seatalk1|$STALK,84,06,06,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 12 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:49|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:49|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:49:49|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:50|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:50|<<TP@mR00S=,0|$AIVDM,1,1,,A,15?det@003PwEatO4u>TP@mR00S=,0 +2025-07-24T06:49:50|<<>>Seatalk1|$STALK,9C,01,06,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 12 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:50|<<>>Seatalk1|$STALK,84,06,06,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 12 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:50|<<>>Seatalk1|$STALK,85,26,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:50|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:49:51|<<>>Seatalk1|$STALK,9C,81,06,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 12 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:51|<<>>Seatalk1|$STALK,84,86,06,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 12 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:51|<<m0020vM?fOm0020vM?fO>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:51|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:49:52|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:52|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:52|<<>>Seatalk1|$STALK,9C,C1,06,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 13 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:49:52|<<fPP00Pvb>4O79sP0?wa28Nt,0|$AIVDM,1,1,,B,139T>fPP00Pvb>4O79sP0?wa28Nt,0 +2025-07-24T06:49:52|<<>>Seatalk1|$STALK,84,C6,06,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 13 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:52|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:52|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:49:53|<<>>Seatalk1|$STALK,9C,41,07,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 15 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:53|<<>>Seatalk1|$STALK,84,06,07,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 14 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:53|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:53|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:49:54|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:54|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:54|<<>>Seatalk1|$STALK,9C,41,08,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 17 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:54|<<F@0?wV0@P>,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?wV0@P>,0 +2025-07-24T06:49:54|<<>>Seatalk1|$STALK,84,C6,07,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 15 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:54|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:54|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:49:55|<<@003Pv9fhNwn8UUPId08PI,0|$AIVDM,1,1,,A,13@pD>@003Pv9fhNwn8UUPId08PI,0 +2025-07-24T06:49:55|<<>>Seatalk1|$STALK,9C,01,08,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 16 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:55|<<>>Seatalk1|$STALK,84,46,08,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 17 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:55|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:55|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:49:56|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:56|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:49:56|<<>>Seatalk1|$STALK,9C,41,08,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 17 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:56|<<>>Seatalk1|$STALK,84,46,08,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 17 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:56|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:56|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:49:57|<<>>Seatalk1|$STALK,9C,41,08,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 17 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:57|<<>>Seatalk1|$STALK,84,86,08,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 16 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:49:57|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:57|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:49:58|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:49:58|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:49:58|<<>>Seatalk1|$STALK,9C,01,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 18 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:58|<<>>Seatalk1|$STALK,84,06,09,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 18 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:58|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:58|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:49:59|<<>>Seatalk1|$STALK,9C,01,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 18 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:49:59|<<>>Seatalk1|$STALK,84,46,09,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 19 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:49:59|<<>>Seatalk1|$STALK,85,36,00,C2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:49:59|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:49:59|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:00|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:00|<<>>Seatalk1|$STALK,9C,C1,09,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 19 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:00|<<OO>>Seatalk1|$STALK,84,C6,09,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 19 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:00|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:00|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:50:01|<<O4u>CJ@n004k8,0|$AIVDM,1,1,,B,15?det@001PwEb>O4u>CJ@n004k8,0 +2025-07-24T06:50:01|<<H?TbRWiEwfPwwPUoP06,0|$AIVDM,1,1,,B,B39inLP0>H?TbRWiEwfPwwPUoP06,0 +2025-07-24T06:50:01|<<>>Seatalk1|$STALK,9C,01,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 20 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:01|<<=bJv20@1:,0|$AIVDM,1,1,,B,139V=f001OPvkUNO15>=bJv20@1:,0 +2025-07-24T06:50:01|<<>>Seatalk1|$STALK,84,46,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 21 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:01|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:01|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:50:01|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:02|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:02|<<>>Seatalk1|$STALK,9C,41,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 21 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:02|<<>>Seatalk1|$STALK,84,46,0A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 21 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:02|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:02|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:50:03|<<>>Seatalk1|$STALK,9C,81,0A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 20 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:03|<<CtO;77TkhH80D1w,0|$AIVDM,1,1,,B,13:EIf00010v>CtO;77TkhH80D1w,0 +2025-07-24T06:50:03|<<>>Seatalk1|$STALK,84,06,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 22 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:03|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:03|<<>>Seatalk1|$STALK,10,01,FF,E8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -12 ° } +2025-07-24T06:50:04|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:04|<<70D2R,0|$AIVDM,1,1,,A,13@pVE001C0wP34O:pbPA@>70D2R,0 +2025-07-24T06:50:04|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:04|<<>>Seatalk1|$STALK,9C,01,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 22 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:04|<<@003Pv9fvNwn7UUPH604k8,0|$AIVDM,1,1,,B,13@pD>@003Pv9fvNwn7UUPH604k8,0 +2025-07-24T06:50:04|<<>>Seatalk1|$STALK,84,06,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 22 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:04|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:04|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:50:05|<<Ht:00aA,0|$AIVDM,1,1,,A,339O=5P0350v`SBO:UTs>Ht:00aA,0 +2025-07-24T06:50:05|<<>>Seatalk1|$STALK,9C,01,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 22 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:05|<<>>Seatalk1|$STALK,84,46,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 23 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:05|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:05|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:50:05|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:06|<<>>Seatalk1|$STALK,20,81,19,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 640 kn, Forwarded = True } +2025-07-24T06:50:06|<<04g3,0|$AIVDM,1,1,,A,33:EQR000r0vIWnO:lUc3`h>04g3,0 +2025-07-24T06:50:06|<<>>Seatalk1|$STALK,9C,C1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 23 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:06|<<44400033EBlP,0|$AIVDM,2,1,6,A,53@orC42DjE8uM4s:20lPv36222222222222220`1`>44400033EBlP,0 +2025-07-24T06:50:06|<<P009PwaB:OC7fk`bf40@46,0|$AIVDM,1,1,,A,13@pD>P009PwaB:OC7fk`bf40@46,0 +2025-07-24T06:50:06|<<>>Seatalk1|$STALK,84,C6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 23 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:06|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:06|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:50:07|<<24k8,0|$AIVDM,1,1,,B,13@p94h00v0w@i:O4jVil1J>24k8,0 +2025-07-24T06:50:07|<<>>Seatalk1|$STALK,9C,C1,0B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 23 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:07|<<H@O;79R3wv>084Q,0|$AIVDM,1,1,,B,13:iFj3P00Pv>H@O;79R3wv>084Q,0 +2025-07-24T06:50:07|<<>>Seatalk1|$STALK,84,C6,0B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 23 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:07|<<>>Seatalk1|$STALK,85,36,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:07|<<04k8,0|$AIVDM,1,1,,B,13KKDMP000Pv;u4O;5mWpVv>04k8,0 +2025-07-24T06:50:08|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:50:08|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:08|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:08|<<>>Seatalk1|$STALK,9C,01,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 24 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:08|<<0@4w,0|$AIVDM,1,1,,B,139vIM002tPwEm:O1bhB7ih>0@4w,0 +2025-07-24T06:50:08|<<>>Seatalk1|$STALK,84,46,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 25 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:08|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:08|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:50:09|<<>>Seatalk1|$STALK,9C,81,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 24 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:09|<<>>Seatalk1|$STALK,84,C6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 25 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:09|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:09|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:50:10|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:10|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:10|<<>>Seatalk1|$STALK,9C,01,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 24 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:10|<<4000GASl`3,0|$AIVDM,2,1,7,A,53mKhp42?=dTh4AKN20pE1ADpF2222222222221A7kMN>4000GASl`3,0 +2025-07-24T06:50:10|<<>>Seatalk1|$STALK,84,86,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 24 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:10|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:10|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:50:11|<<>>Seatalk1|$STALK,9C,01,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 26 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:11|<<QgQ3wUUkP06,0|$AIVDM,1,1,,A,B39cMA0000?b;sWi>QgQ3wUUkP06,0 +2025-07-24T06:50:11|<<>>Seatalk1|$STALK,84,06,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 28 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:11|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:11|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:50:12|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:12|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:12|<<>>Seatalk1|$STALK,9C,C1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 27 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:12|<<`2G05PuTL;:20hEH4q@F222222222222162H>6640006Am@DQ,0|$AIVDM,2,1,9,A,53@pD>`2G05PuTL;:20hEH4q@F222222222222162H>6640006Am@DQ,0 +2025-07-24T06:50:12|<<>>Seatalk1|$STALK,84,C6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 27 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:12|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:12|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:50:12|<<>>Seatalk1|$STALK,9C,C1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 27 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:13|<<>>Seatalk1|$STALK,84,C6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 27 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:13|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:13|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:50:14|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:14|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:14|<<>>Seatalk1|$STALK,9C,01,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 28 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:14|<<>>Seatalk1|$STALK,84,06,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 28 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:14|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:14|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:50:15|<<@003Pv9g>Nwn65PPHJ04k8,0|$AIVDM,1,1,,A,13@pD>@003Pv9g>Nwn65PPHJ04k8,0 +2025-07-24T06:50:15|<<>>Seatalk1|$STALK,9C,41,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 29 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:15|<<>>Seatalk1|$STALK,84,C6,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 29 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:15|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:15|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:50:16|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:16|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:16|<<>>Seatalk1|$STALK,9C,C1,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 29 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:16|<<>>Seatalk1|$STALK,84,C6,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 29 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:16|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:16|<<>>Seatalk1|$STALK,10,01,FF,D2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -23 ° } +2025-07-24T06:50:17|<<>>Seatalk1|$STALK,9C,C1,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 29 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:17|<<>>Seatalk1|$STALK,84,46,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 31 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:17|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:17|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:50:18|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:18|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:18|<<>>Seatalk1|$STALK,9C,81,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 30 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:18|<<>>Seatalk1|$STALK,84,86,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 30 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:18|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:18|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:50:19|<<>>Seatalk1|$STALK,9C,81,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 30 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:19|<<>>Seatalk1|$STALK,84,46,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 33 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:19|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:20|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:50:20|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:20|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:20|<<`0D1T,0|$AIVDM,1,1,,A,13@orC003A0vdPBO`0D1T,0 +2025-07-24T06:50:20|<<>>Seatalk1|$STALK,9C,C1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 31 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:20|<<>>Seatalk1|$STALK,84,C6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 31 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:20|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:20|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:50:21|<<2E,0|$AIVDM,1,1,,B,91b772E,0 +2025-07-24T06:50:21|<<>>Seatalk1|$STALK,9C,41,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 33 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:21|<<>>Seatalk1|$STALK,84,46,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 33 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:21|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:21|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:50:22|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:22|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:22|<<>>Seatalk1|$STALK,9C,81,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 32 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:22|<<m0020vM?fOm0020vM?fO>>Seatalk1|$STALK,84,46,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 33 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:22|<<fPP00Pvb>FO79rh0?vg2<0N,0|$AIVDM,1,1,,A,139T>fPP00Pvb>FO79rh0?vg2<0N,0 +2025-07-24T06:50:22|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:22|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:50:23|<<CnO;77c4hJh0<1w,0|$AIVDM,1,1,,B,13:EIf00030v>CnO;77c4hJh0<1w,0 +2025-07-24T06:50:23|<<>>Seatalk1|$STALK,9C,81,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 32 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:23|<<>>Seatalk1|$STALK,84,06,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 34 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:23|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:24|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:50:24|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:24|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:24|<<>>Seatalk1|$STALK,9C,01,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 34 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:24|<<M,0|$AIVDM,1,1,,A,13:EQR000r0vIGfO:lls0Hhj08>M,0 +2025-07-24T06:50:24|<<>>Seatalk1|$STALK,84,06,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 34 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:24|<<>>Seatalk1|$STALK,85,46,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:25|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:50:25|<<@003Pv9gPNwn45`0Hf08>g,0|$AIVDM,1,1,,B,13@pD>@003Pv9gPNwn45`0Hf08>g,0 +2025-07-24T06:50:25|<<>>Seatalk1|$STALK,9C,01,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 34 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:25|<<>>Seatalk1|$STALK,84,46,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 35 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:25|<<>>Seatalk1|$STALK,85,56,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:26|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:50:26|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:26|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:26|<<>>Seatalk1|$STALK,9C,41,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 35 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:26|<<>>Seatalk1|$STALK,84,C6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 35 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:26|<<>>Seatalk1|$STALK,85,56,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:27|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:50:27|<<0?I2?Whj>EscweQh4k8,0|$AIVDM,1,1,,B,B39J46P0>0?I2?Whj>EscweQh4k8,0 +2025-07-24T06:50:27|<<>>Seatalk1|$STALK,9C,01,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 36 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:27|<<GnO;792qwvn0@@<,0|$AIVDM,1,1,,B,13:iFj3P01Pv>GnO;792qwvn0@@<,0 +2025-07-24T06:50:27|<<>>Seatalk1|$STALK,84,06,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 36 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:27|<<>>Seatalk1|$STALK,85,56,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:27|<<>>Seatalk1|$STALK,10,01,FF,DE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -17 ° } +2025-07-24T06:50:28|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:28|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:28|<<>>Seatalk1|$STALK,9C,01,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 36 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:28|<<>>Seatalk1|$STALK,84,46,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 37 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:28|<<>>Seatalk1|$STALK,85,56,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:29|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:50:29|<<>>Seatalk1|$STALK,9C,81,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 36 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:29|<<g7iPHkQ3wfQjDdJ,0|$AIVDM,1,1,,B,B39thuP000?M>g7iPHkQ3wfQjDdJ,0 +2025-07-24T06:50:29|<<>>Seatalk1|$STALK,84,C6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 37 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:29|<<>>Seatalk1|$STALK,85,56,00,A2,15,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:50:30|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:50:30|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:30|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:30|<<>>Seatalk1|$STALK,9C,C1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 37 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:30|<<j45001Pv>J0O;?92RBdp0lmr,0|$AIVDM,1,1,,A,33@>j45001Pv>J0O;?92RBdp0lmr,0 +2025-07-24T06:50:30|<<>>Seatalk1|$STALK,84,C6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 37 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:30|<<O;8jc960v0Dvr,0|$AIVDM,1,1,,A,33mKhp50000v?j>O;8jc960v0Dvr,0 +2025-07-24T06:50:30|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:31|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:50:31|<<2N,0|$AIVDM,1,1,,A,91b772N,0 +2025-07-24T06:50:31|<<>>Seatalk1|$STALK,9C,01,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 38 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:31|<<8?TTH7iEqNQ3wgUoP06,0|$AIVDM,1,1,,A,B39inLP0>8?TTH7iEqNQ3wgUoP06,0 +2025-07-24T06:50:31|<<OO>>Seatalk1|$STALK,84,06,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 38 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:31|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:32|<<>>Seatalk1|$STALK,10,01,FF,E8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -12 ° } +2025-07-24T06:50:32|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:32|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:32|<<>>Seatalk1|$STALK,9C,01,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 38 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:32|<<RO;DpsW4K00lur,0|$AIVDM,1,1,,A,35`73f50000v=>RO;DpsW4K00lur,0 +2025-07-24T06:50:32|<<>>Seatalk1|$STALK,84,46,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 39 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:32|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:33|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:50:33|<<VU?:900Dtr,0|$AIVDM,1,1,,A,33ku8NE0000v?aPO;>VU?:900Dtr,0 +2025-07-24T06:50:33|<<>>Seatalk1|$STALK,9C,81,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 38 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:33|<<fPP00Pvb>:O79sP0?w32@Cr,0|$AIVDM,1,1,,B,139T>fPP00Pvb>:O79sP0?w32@Cr,0 +2025-07-24T06:50:33|<<>>Seatalk1|$STALK,84,C6,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 39 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:33|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:34|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:50:34|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:34|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:34|<<>>Seatalk1|$STALK,9C,C1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 39 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:34|<<>>Seatalk1|$STALK,84,06,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:34|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:34|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:50:35|<<ClO;784Q0E608DW,0|$AIVDM,1,1,,A,13:EIf0P030v>ClO;784Q0E608DW,0 +2025-07-24T06:50:35|<<>>Seatalk1|$STALK,9C,01,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 40 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:35|<<>>Seatalk1|$STALK,84,06,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:35|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:36|<<>>Seatalk1|$STALK,10,01,FF,CC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -26 ° } +2025-07-24T06:50:36|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:36|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:36|<<H>O;78CfOw600T2,0|$AIVDM,1,1,,A,13:iFj3P02Pv>H>O;78CfOw600T2,0 +2025-07-24T06:50:36|<<>>Seatalk1|$STALK,9C,41,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 41 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:36|<<P009PwaF6OC7dCm:i004k8,0|$AIVDM,1,1,,B,13@pD>P009PwaF6OC7dCm:i004k8,0 +2025-07-24T06:50:36|<<>>Seatalk1|$STALK,84,86,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:36|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:37|<<>>Seatalk1|$STALK,10,01,FF,C8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -28 ° } +2025-07-24T06:50:37|<<>>Seatalk1|$STALK,9C,C1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 41 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:37|<<>>Seatalk1|$STALK,84,06,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 40 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:37|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:38|<<>>Seatalk1|$STALK,10,01,FF,CA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -27 ° } +2025-07-24T06:50:38|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:38|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:38|<<>>Seatalk1|$STALK,9C,C1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 41 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:38|<<>>Seatalk1|$STALK,84,06,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 42 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:38|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:39|<<>>Seatalk1|$STALK,10,01,FF,D6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -21 ° } +2025-07-24T06:50:39|<<Qm<0HFr,0|$AIVDM,1,1,,A,139vIM002sPwFtJO1fB2>Qm<0HFr,0 +2025-07-24T06:50:39|<<>>Seatalk1|$STALK,9C,01,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 42 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:39|<<>>Seatalk1|$STALK,84,46,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 43 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:39|<<0<0r,0|$AIVDM,1,1,,A,13KKDCP001Pv<;lO;5mbCIk>0<0r,0 +2025-07-24T06:50:39|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:40|<<>>Seatalk1|$STALK,10,01,FF,DE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -17 ° } +2025-07-24T06:50:40|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:50:40|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:40|<<>>Seatalk1|$STALK,9C,81,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 42 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:40|<<0@Gt,0|$AIVDM,1,1,,A,13aCdr3P13PvlV@O0SFdH:Q>0@Gt,0 +2025-07-24T06:50:40|<<>>Seatalk1|$STALK,84,86,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 42 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:40|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:40|<<>>Seatalk1|$STALK,10,01,FF,D8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -20 ° } +2025-07-24T06:50:41|<<>>Seatalk1|$STALK,9C,C1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 43 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:41|<<>>Seatalk1|$STALK,84,C6,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 43 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:41|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:42|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:50:42|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:42|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:42|<<>>Seatalk1|$STALK,9C,C1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 43 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:42|<<2R=W7B0Df:,0|$AIVDM,1,1,,A,33cPHl50000v<34O;>2R=W7B0Df:,0 +2025-07-24T06:50:42|<<>>Seatalk1|$STALK,84,06,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 44 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:42|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:43|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:50:43|<<0ve=DO0ve=DO>>Seatalk1|$STALK,9C,01,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 44 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:43|<<fPP00Pvb>2O79s00?wG2A?k,0|$AIVDM,1,1,,A,339T>fPP00Pvb>2O79s00?wG2A?k,0 +2025-07-24T06:50:43|<<>>Seatalk1|$STALK,84,46,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 45 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:43|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:43|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:50:44|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:44|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:44|<<>>Seatalk1|$STALK,9C,41,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 45 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:44|<<D0O;764t0CJ0L20,0|$AIVDM,1,1,,B,13:EIf00030v>D0O;764t0CJ0L20,0 +2025-07-24T06:50:44|<<>>Seatalk1|$STALK,84,86,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 44 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:44|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:45|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:50:45|<<>>Seatalk1|$STALK,9C,81,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 44 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:45|<<>>Seatalk1|$STALK,84,C6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 45 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:45|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:46|<<>>Seatalk1|$STALK,10,01,FF,DC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -18 ° } +2025-07-24T06:50:46|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:46|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:46|<<>>Seatalk1|$STALK,9C,01,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 46 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:46|<<P009PwaGLOC7cSebkD0<0c,0|$AIVDM,1,1,,A,13@pD>P009PwaGLOC7cSebkD0<0c,0 +2025-07-24T06:50:46|<<>>Seatalk1|$STALK,84,06,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 46 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:46|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:47|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:50:47|<<>>Seatalk1|$STALK,9C,01,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 46 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:47|<<>>Seatalk1|$STALK,84,46,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 47 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:47|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:48|<<>>Seatalk1|$STALK,10,01,FF,E8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -12 ° } +2025-07-24T06:50:48|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:48|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:48|<<>>Seatalk1|$STALK,9C,41,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 47 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:48|<<>>Seatalk1|$STALK,84,86,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 46 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:48|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:49|<<>>Seatalk1|$STALK,10,01,FF,D6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -21 ° } +2025-07-24T06:50:49|<<>>Seatalk1|$STALK,9C,C1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 47 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:49|<<>>Seatalk1|$STALK,84,C6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 47 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:49|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:50|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:50:50|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:50:50|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:50|<<>>Seatalk1|$STALK,9C,C1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 47 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:50|<<>>Seatalk1|$STALK,84,86,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 48 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:50|<<>>Seatalk1|$STALK,85,56,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:51|<<>>Seatalk1|$STALK,10,01,FF,DE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -17 ° } +2025-07-24T06:50:51|<<>>Seatalk1|$STALK,9C,41,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 51 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:51|<<8O4l`1D@u`21iP,0|$AIVDM,1,1,,A,33@p94hP0p0wA>8O4l`1D@u`21iP,0 +2025-07-24T06:50:51|<<>>Seatalk1|$STALK,84,86,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 50 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:51|<<>>Seatalk1|$STALK,85,66,00,82,25,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:50:51|<<>>Seatalk1|$STALK,10,01,FF,A6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -45 ° } +2025-07-24T06:50:52|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:52|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:50:52|<<>>Seatalk1|$STALK,9C,41,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 51 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:52|<<fPP00Pvb=nO79s00?wa24k8,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79s00?wa24k8,0 +2025-07-24T06:50:52|<<>>Seatalk1|$STALK,84,46,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 51 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:52|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:50:52|<<>>Seatalk1|$STALK,10,01,FF,C6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -29 ° } +2025-07-24T06:50:53|<<>>Seatalk1|$STALK,9C,81,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 48 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:53|<<>>Seatalk1|$STALK,84,86,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 48 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:53|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:50:54|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:50:54|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:54|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:54|<<vO4lfQH15f216P,0|$AIVDM,1,1,,B,33@p94h00p0wA>vO4lfQH15f216P,0 +2025-07-24T06:50:54|<<>>Seatalk1|$STALK,9C,C1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 49 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:54|<<F@0?w`0<15,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?w`0<15,0 +2025-07-24T06:50:54|<<>>Seatalk1|$STALK,84,46,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 51 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:54|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:50:55|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:50:55|<<@003Pv9h@NwmwES0Id04k8,0|$AIVDM,1,1,,A,13@pD>@003Pv9h@NwmwES0Id04k8,0 +2025-07-24T06:50:55|<<>>Seatalk1|$STALK,9C,41,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 51 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:55|<<>>Seatalk1|$STALK,84,86,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 50 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:55|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:50:55|<<>>Seatalk1|$STALK,10,01,FF,C2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -31 ° } +2025-07-24T06:50:56|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:50:56|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:56|<<:wpij0D0i,0|$AIVDM,1,1,,B,13:EQR000q0vHujO:m>:wpij0D0i,0 +2025-07-24T06:50:56|<<>>Seatalk1|$STALK,9C,C1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 51 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:50:56|<<>>Seatalk1|$STALK,84,C6,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 51 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:50:56|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:50:57|<<>>Seatalk1|$STALK,10,01,FF,E0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -16 ° } +2025-07-24T06:50:57|<<>>Seatalk1|$STALK,9C,01,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:57|<<>>Seatalk1|$STALK,84,06,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 52 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:57|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:50:58|<<>>Seatalk1|$STALK,10,01,FF,D4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -22 ° } +2025-07-24T06:50:58|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:50:58|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:50:58|<<0?I0VWhiiUqGwu1h8R:,0|$AIVDM,1,1,,A,B39J46P0>0?I0VWhiiUqGwu1h8R:,0 +2025-07-24T06:50:58|<<>>Seatalk1|$STALK,9C,41,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:58|<<>>Seatalk1|$STALK,84,46,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:58|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:50:59|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:50:59|<<>>Seatalk1|$STALK,9C,41,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:50:59|<<>>Seatalk1|$STALK,84,46,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 51 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:50:59|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:00|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:51:00|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:51:00|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:00|<<>>Seatalk1|$STALK,9C,01,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:00|<<Kd?v204k<,0|$AIVDM,1,1,,B,139LKd?v204k<,0 +2025-07-24T06:51:00|<<>>Seatalk1|$STALK,84,46,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:00|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:01|<<>>Seatalk1|$STALK,10,01,FF,C4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -30 ° } +2025-07-24T06:51:01|<<>>Seatalk1|$STALK,9C,81,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:01|<<8?TN@WiEkBQSwPUoP06,0|$AIVDM,1,1,,B,B39inLP0>8?TN@WiEkBQSwPUoP06,0 +2025-07-24T06:51:01|<<40D1T,0|$AIVDM,1,1,,B,13@orC003B0vbrhO40D1T,0 +2025-07-24T06:51:01|<<>>Seatalk1|$STALK,84,46,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:01|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:02|<<>>Seatalk1|$STALK,10,01,FF,EC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -10 ° } +2025-07-24T06:51:02|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:02|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:02|<<>>Seatalk1|$STALK,9C,41,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:02|<<>>Seatalk1|$STALK,84,86,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 52 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:02|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:03|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:51:03|<<0ve=jO0ve=jO>>Seatalk1|$STALK,9C,C1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:03|<<fPP00Pvb=hO79sP0?v720Rc,0|$AIVDM,1,1,,A,139T>fPP00Pvb=hO79sP0?v720Rc,0 +2025-07-24T06:51:03|<<CfO;754whF80@2B,0|$AIVDM,1,1,,B,13:EIf00010v>CfO;754whF80@2B,0 +2025-07-24T06:51:03|<<821:0,0|$AIVDM,1,1,,A,33@p94hP0r0wAE:O4m;1eA>821:0,0 +2025-07-24T06:51:03|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:03|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:04|<<>>Seatalk1|$STALK,10,01,FF,DA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -19 ° } +2025-07-24T06:51:04|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:51:04|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:04|<<>>Seatalk1|$STALK,9C,01,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 54 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:04|<<@003Pv9hRNwmumUPH600Su,0|$AIVDM,1,1,,B,13@pD>@003Pv9hRNwmumUPH600Su,0 +2025-07-24T06:51:04|<<>>Seatalk1|$STALK,84,86,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 54 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:04|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:05|<<>>Seatalk1|$STALK,10,01,FF,C6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -29 ° } +2025-07-24T06:51:05|<<>>Seatalk1|$STALK,9C,01,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 54 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:05|<<>>Seatalk1|$STALK,84,06,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 54 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:05|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:06|<<>>Seatalk1|$STALK,10,01,FF,C6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -29 ° } +2025-07-24T06:51:06|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:06|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:06|<<>>Seatalk1|$STALK,9C,C1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:06|<<P009PwaJrOC7ckm:j40<0c,0|$AIVDM,1,1,,A,13@pD>P009PwaJrOC7ckm:j40<0c,0 +2025-07-24T06:51:06|<<>>Seatalk1|$STALK,84,86,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 52 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:06|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:07|<<>>Seatalk1|$STALK,10,01,FF,E0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -16 ° } +2025-07-24T06:51:07|<<20Sh,0|$AIVDM,1,1,,B,13@p94hP0r0wAFbO4mDiQQ6>20Sh,0 +2025-07-24T06:51:07|<<284E,0|$AIVDM,1,1,,A,139Q2t0P09PtnB2O26Bq9Ov>284E,0 +2025-07-24T06:51:07|<<0000,0|$AIVDM,1,1,,B,339O=5PP3<0vUgFO:`n;Aa2>0000,0 +2025-07-24T06:51:07|<<>>Seatalk1|$STALK,9C,81,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:07|<<kjBt@01:0,0|$AIVDM,1,1,,A,33@pc=h00m0vkjBt@01:0,0 +2025-07-24T06:51:07|<<>>Seatalk1|$STALK,84,86,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 52 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:07|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:08|<<>>Seatalk1|$STALK,10,01,FF,E2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -15 ° } +2025-07-24T06:51:08|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:08|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:08|<<>>Seatalk1|$STALK,9C,C1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:08|<<00th,0|$AIVDM,1,1,,A,33aCdr3013PvlI4O0U:=9:`>00th,0 +2025-07-24T06:51:08|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:08|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:09|<<>>Seatalk1|$STALK,10,01,FF,D8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -20 ° } +2025-07-24T06:51:09|<<>>Seatalk1|$STALK,9C,01,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 54 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:09|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:09|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:10|<<>>Seatalk1|$STALK,10,01,FF,CA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -27 ° } +2025-07-24T06:51:10|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:10|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:10|<<>>Seatalk1|$STALK,9C,01,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 54 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:10|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:10|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:11|<<>>Seatalk1|$STALK,10,01,FF,D0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -24 ° } +2025-07-24T06:51:11|<<>>Seatalk1|$STALK,9C,41,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:11|<<>>Seatalk1|$STALK,84,06,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 52 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:11|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:12|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:51:12|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:12|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:12|<<>>Seatalk1|$STALK,9C,01,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 52 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:12|<<>>Seatalk1|$STALK,84,C6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 53 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:12|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:13|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:51:13|<<>>Seatalk1|$STALK,9C,C1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 53 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:13|<<K00S8,0|$AIVDM,1,1,,B,13@pVE001C0wP=BO:vv0@h>K00S8,0 +2025-07-24T06:51:13|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:13|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:14|<<>>Seatalk1|$STALK,10,01,FF,E4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -14 ° } +2025-07-24T06:51:14|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:14|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:14|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:14|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:14|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:15|<<@003Pv9hnNwmsUUPJL00St,0|$AIVDM,1,1,,A,13@pD>@003Pv9hnNwmsUUPJL00St,0 +2025-07-24T06:51:15|<<>>Seatalk1|$STALK,10,01,FF,D8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -20 ° } +2025-07-24T06:51:15|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:15|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:15|<<4?vPR<0P,0|$AIVDM,1,1,,B,139pin0P00PvbBbO79c>4?vPR<0P,0 +2025-07-24T06:51:16|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:16|<<>>Seatalk1|$STALK,10,01,FF,D6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -21 ° } +2025-07-24T06:51:16|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:16|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:16|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:16|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:16|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:17|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:51:17|<<P009PwaLBOC7bkm:jH04k<,0|$AIVDM,1,1,,B,13@pD>P009PwaLBOC7bkm:jH04k<,0 +2025-07-24T06:51:17|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:17|<<H:O;79iR?vR08:G,0|$AIVDM,1,1,,A,13:iFj3P01Pv>H:O;79iR?vR08:G,0 +2025-07-24T06:51:17|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:17|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:18|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:51:18|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:18|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:18|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:18|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:18|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:19|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:51:19|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:19|<<O:ahcCHvV0000,0|$AIVDM,1,1,,B,339O=5P03;0vU=>O:ahcCHvV0000,0 +2025-07-24T06:51:19|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:19|<<>>Seatalk1|$STALK,85,66,00,82,35,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:51:20|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:51:20|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:20|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:20|<<rOrO>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:20|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:20|<<>>Seatalk1|$STALK,85,66,00,82,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:51:21|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:51:21|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:21|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:21|<<>>Seatalk1|$STALK,85,66,00,82,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:51:22|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:51:22|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:22|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:22|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:22|<<4O4O>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:22|<<fPP00Pvb=bO79t@0?vg28=O,0|$AIVDM,1,1,,A,139T>fPP00Pvb=bO79t@0?vg28=O,0 +2025-07-24T06:51:22|<<>>Seatalk1|$STALK,85,66,00,82,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:51:23|<<>>Seatalk1|$STALK,10,01,FF,E6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -13 ° } +2025-07-24T06:51:23|<<`O:wi0A@>e08=b,0|$AIVDM,1,1,,A,13@pVE001C0wP>`O:wi0A@>e08=b,0 +2025-07-24T06:51:23|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:23|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:23|<<>>Seatalk1|$STALK,85,66,00,82,45,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1 NM } +2025-07-24T06:51:24|<<>>Seatalk1|$STALK,10,01,FF,EA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -11 ° } +2025-07-24T06:51:24|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:24|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:24|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:24|<<F@0?vb08>`,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?vb08>`,0 +2025-07-24T06:51:24|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:24|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:25|<<>>Seatalk1|$STALK,10,01,FF,EE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -9 ° } +2025-07-24T06:51:25|<<@003Pv9i2Nwmr5`0Jf04k<,0|$AIVDM,1,1,,B,13@pD>@003Pv9i2Nwmr5`0Jf04k<,0 +2025-07-24T06:51:25|<<t,0|$AIVDM,1,1,,B,13mDP2001V0vmDDO=H0VtUTl0@>t,0 +2025-07-24T06:51:25|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:25|<<P009PwaMPOC7b3r:ld08?8,0|$AIVDM,1,1,,A,13@pD>P009PwaMPOC7b3r:ld08?8,0 +2025-07-24T06:51:25|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:25|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:26|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:51:26|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:26|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:26|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:26|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:26|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:27|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:51:27|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:27|<<GVO;7:cBgvn0<0q,0|$AIVDM,1,1,,B,13:iFj3P02Pv>GVO;7:cBgvn0<0q,0 +2025-07-24T06:51:27|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:27|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:28|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:51:28|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:28|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:28|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:28|<<H2G04huTHw:21@E984j22222222222220`10I7540006AmcLH,0|$AIVDM,2,1,1,B,53@pD>H2G04huTHw:21@E984j22222222222220`10I7540006AmcLH,0 +2025-07-24T06:51:28|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:28|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:29|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:51:29|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:29|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:29|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:30|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:51:30|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:30|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:30|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:30|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:30|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:31|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:51:31|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:31|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:31|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:32|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:51:32|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:32|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:32|<<>>Seatalk1|$STALK,9C,E1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 255 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:32|<<>>Seatalk1|$STALK,84,E6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 255 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:32|<<>>Seatalk1|$STALK,85,66,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.06 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:33|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:51:33|<<>>Seatalk1|$STALK,9C,31,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 332 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:33|<<DODO>>Seatalk1|$STALK,84,76,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 325 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:33|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:34|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:51:34|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:34|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:34|<<>>Seatalk1|$STALK,9C,F1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 323 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:34|<<>>Seatalk1|$STALK,84,F6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 315 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:34|<<O:mfK1Hi608DT,0|$AIVDM,1,1,,B,13:EQR000q0vHM>O:mfK1Hi608DT,0 +2025-07-24T06:51:35|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:35|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:51:35|<<4?w6R<0P,0|$AIVDM,1,1,,B,139pin0P00PvbBlO79c>4?w6R<0P,0 +2025-07-24T06:51:35|<<>>Seatalk1|$STALK,9C,31,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 314 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:35|<<>>Seatalk1|$STALK,84,36,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 314 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:35|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:36|<<>>Seatalk1|$STALK,10,01,FF,F6|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -5 ° } +2025-07-24T06:51:36|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:36|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:36|<<>>Seatalk1|$STALK,9C,71,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 315 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:36|<<>>Seatalk1|$STALK,84,B6,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 312 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:36|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:37|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:51:37|<<>>Seatalk1|$STALK,9C,B1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:37|<<GNO;7;;kww:0HF6,0|$AIVDM,1,1,,A,13:iFj3P01Pv>GNO;7;;kww:0HF6,0 +2025-07-24T06:51:37|<<4?w:28F?,0|$AIVDM,1,1,,B,139SHt?P00PvOjrO6L:>4?w:28F?,0 +2025-07-24T06:51:37|<<>>Seatalk1|$STALK,84,B6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 306 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:37|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:38|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:51:38|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:38|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:38|<<>>Seatalk1|$STALK,9C,71,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 307 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:38|<<>>Seatalk1|$STALK,84,B6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 304 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:38|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:39|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:51:39|<<>>Seatalk1|$STALK,9C,71,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:39|<<Io@08GM,0|$AIVDM,1,1,,A,13KKDCP001Pv<<0O;5iE>Io@08GM,0 +2025-07-24T06:51:39|<<>>Seatalk1|$STALK,84,F6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 303 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:39|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:40|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:51:40|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:40|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:40|<<04k<,0|$AIVDM,1,1,,B,139UEUSP1I0uW4:O13urP?w>04k<,0 +2025-07-24T06:51:40|<<>>Seatalk1|$STALK,9C,F1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 303 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:40|<<0<2?,0|$AIVDM,1,1,,A,13aCdr3016Pvl=DO0WIeBJg>0<2?,0 +2025-07-24T06:51:40|<<>>Seatalk1|$STALK,84,F6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:40|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:41|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:51:41|<<>>Seatalk1|$STALK,9C,F1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:41|<<>>Seatalk1|$STALK,84,F6,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 299 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:41|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:42|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:51:42|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:42|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:42|<<>>Seatalk1|$STALK,9C,31,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 300 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:42|<<>>Seatalk1|$STALK,84,76,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:42|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:43|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:51:43|<<4O4O>>Seatalk1|$STALK,9C,71,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 299 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:43|<<fPP00Pvb=VO79vP0?wG28IU,0|$AIVDM,1,1,,A,139T>fPP00Pvb=VO79vP0?wG28IU,0 +2025-07-24T06:51:43|<<>>Seatalk1|$STALK,84,F6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:43|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:44|<<>>Seatalk1|$STALK,10,01,FF,F2|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -7 ° } +2025-07-24T06:51:44|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:44|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:44|<<>>Seatalk1|$STALK,9C,71,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:44|<<D0O;76T:hGJ0HJF,0|$AIVDM,1,1,,B,13:EIf00030v>D0O;76T:hGJ0HJF,0 +2025-07-24T06:51:44|<<>>Seatalk1|$STALK,84,36,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:44|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:45|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:51:45|<<>>Seatalk1|$STALK,9C,71,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 299 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:45|<<H8O;7:CTOwJ0L0q,0|$AIVDM,1,1,,B,13:iFj3P02Pv>H8O;7:CTOwJ0L0q,0 +2025-07-24T06:51:45|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:45|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:46|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:51:46|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:46|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:46|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:46|<<>>Seatalk1|$STALK,84,F6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:46|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:47|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:51:47|<<>>Seatalk1|$STALK,9C,71,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:47|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:47|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:48|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:51:48|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:48|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:48|<<>>Seatalk1|$STALK,9C,31,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:48|<<>>Seatalk1|$STALK,84,36,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:48|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:49|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:51:49|<<>>Seatalk1|$STALK,9C,B1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:49|<<>>Seatalk1|$STALK,84,76,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:49|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:50|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:51:50|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:50|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:50|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:50|<<>>Seatalk1|$STALK,84,B6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:50|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:51|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:51:51|<<>>Seatalk1|$STALK,9C,71,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:51|<<>>Seatalk1|$STALK,84,F6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:51|<<>>Seatalk1|$STALK,85,56,00,82,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 224 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:51:52|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:51:52|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:52|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:52|<<>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:52|<<fPP00Pvb=bO79vP0?wa20S0,0|$AIVDM,1,1,,B,139T>fPP00Pvb=bO79vP0?wa20S0,0 +2025-07-24T06:51:52|<<>>Seatalk1|$STALK,84,B6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:52|<<>>Seatalk1|$STALK,85,56,00,2A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 229 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:51:53|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:51:53|<<>>Seatalk1|$STALK,9C,B1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 294 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:53|<<>>Seatalk1|$STALK,84,B6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:53|<<>>Seatalk1|$STALK,85,56,00,2A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 229 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:51:54|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:51:54|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:54|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:51:54|<<DHO;76TfhEf00SR,0|$AIVDM,1,1,,A,13:EIf00030v>DHO;76TfhEf00SR,0 +2025-07-24T06:51:54|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:54|<<>>Seatalk1|$STALK,84,36,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:54|<<>>Seatalk1|$STALK,85,56,00,2A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.05 NM, BearingToDestination = 229 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:51:55|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:51:55|<<@003Pv9itNwmlm`0Mb00Rl,0|$AIVDM,1,1,,A,13@pD>@003Pv9itNwmlm`0Mb00Rl,0 +2025-07-24T06:51:55|<<4?wfR@PJ,0|$AIVDM,1,1,,B,139pin0P00PvbBtO79c>4?wfR@PJ,0 +2025-07-24T06:51:55|<<>>Seatalk1|$STALK,9C,31,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:55|<<>>Seatalk1|$STALK,84,B6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:55|<<>>Seatalk1|$STALK,85,46,00,2A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 229 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:51:56|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:51:56|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:56|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:56|<<>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:56|<<>>Seatalk1|$STALK,84,76,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:56|<<>>Seatalk1|$STALK,85,46,00,2A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 229 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:51:57|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:51:57|<<H8O;79StOwj08QW,0|$AIVDM,1,1,,A,13:iFj3P01Pv>H8O;79StOwj08QW,0 +2025-07-24T06:51:57|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:57|<<>>Seatalk1|$STALK,84,76,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:51:57|<<>>Seatalk1|$STALK,85,46,00,2A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 229 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:51:58|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:51:58|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:51:58|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:51:58|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:51:58|<<>>Seatalk1|$STALK,84,B6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 294 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:58|<<>>Seatalk1|$STALK,85,46,00,2A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 229 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:51:59|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:51:59|<<>>Seatalk1|$STALK,9C,71,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:51:59|<<>>Seatalk1|$STALK,84,F6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:51:59|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:00|<<O:d5K5Hqn00S9,0|$AIVDM,1,1,,B,139O=5P03:0vSH>O:d5K5Hqn00S9,0 +2025-07-24T06:52:00|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:52:00|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:00|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:00|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:00|<<>>Seatalk1|$STALK,84,F6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:00|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:01|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:52:01|<<>>Seatalk1|$STALK,9C,31,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:01|<<40@0u,0|$AIVDM,1,1,,B,13@orC003C0v`UdO40@0u,0 +2025-07-24T06:52:01|<<>>Seatalk1|$STALK,84,F6,0C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 295 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:01|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:02|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:52:02|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:02|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:02|<<>>Seatalk1|$STALK,9C,71,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:02|<<fPP00Pvb=bO79uh0?v52L0N,0|$AIVDM,1,1,,A,139T>fPP00Pvb=bO79uh0?v52L0N,0 +2025-07-24T06:52:02|<<>>Seatalk1|$STALK,84,36,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:02|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:03|<<>>Seatalk1|$STALK,10,01,00,46|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 35 ° } +2025-07-24T06:52:03|<<>>Seatalk1|$STALK,9C,31,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:03|<<>>Seatalk1|$STALK,84,76,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:03|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:04|<<>>Seatalk1|$STALK,10,01,00,46|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 35 ° } +2025-07-24T06:52:04|<<70<2Q,0|$AIVDM,1,1,,A,13@pVE001C0wPDRO;3L0@h>70<2Q,0 +2025-07-24T06:52:04|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:04|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:04|<<>>Seatalk1|$STALK,9C,71,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:04|<<>>Seatalk1|$STALK,84,76,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 297 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:05|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:05|<<>>Seatalk1|$STALK,10,01,00,52|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 41 ° } +2025-07-24T06:52:05|<<>>Seatalk1|$STALK,9C,71,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 297 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:05|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:05|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:06|<<>>Seatalk1|$STALK,10,01,00,44|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 34 ° } +2025-07-24T06:52:06|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:06|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:06|<<>>Seatalk1|$STALK,9C,F1,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 295 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:06|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:06|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:07|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:52:07|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:07|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:07|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:08|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:52:08|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:08|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:08|<<>>Seatalk1|$STALK,9C,B1,0D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 296 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:08|<<>>Seatalk1|$STALK,84,B6,0D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 296 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:08|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:09|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:52:09|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:09|<<0Dib,0|$AIVDM,1,1,,A,339IKQ50000vOS@Nw4a0Dib,0 +2025-07-24T06:52:09|<<>>Seatalk1|$STALK,84,36,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 298 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:09|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:10|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:52:10|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:10|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:10|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:10|<<>>Seatalk1|$STALK,84,36,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 298 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:10|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:11|<<>>Seatalk1|$STALK,10,01,00,3E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 31 ° } +2025-07-24T06:52:11|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:11|<<>>Seatalk1|$STALK,84,36,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 298 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:11|<<>>Seatalk1|$STALK,85,46,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.04 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:12|<<>>Seatalk1|$STALK,10,01,00,4A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 37 ° } +2025-07-24T06:52:12|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:12|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:12|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:12|<<>>Seatalk1|$STALK,84,36,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 298 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:12|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:13|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:52:13|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:13|<<>>Seatalk1|$STALK,84,76,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 299 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:13|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:14|<<>>Seatalk1|$STALK,10,01,00,3E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 31 ° } +2025-07-24T06:52:14|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:14|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:14|<<DTO;74DphHN05hC,0|$AIVDM,1,1,,A,33:EIf00010v>DTO;74DphHN05hC,0 +2025-07-24T06:52:14|<<>>Seatalk1|$STALK,9C,31,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:14|<<>>Seatalk1|$STALK,84,F6,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 299 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:14|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:15|<<>>Seatalk1|$STALK,10,01,00,4A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 37 ° } +2025-07-24T06:52:15|<<F@0?vH088r,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vH088r,0 +2025-07-24T06:52:15|<<>>Seatalk1|$STALK,9C,F1,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 299 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:15|<<>>Seatalk1|$STALK,84,76,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 299 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:15|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:16|<<>>Seatalk1|$STALK,10,01,00,52|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 41 ° } +2025-07-24T06:52:16|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:16|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:16|<<>>Seatalk1|$STALK,9C,71,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 299 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:16|<<>>Seatalk1|$STALK,84,F6,0E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 299 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:16|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:17|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:52:17|<<>>Seatalk1|$STALK,9C,B1,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 298 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:17|<<H2O;79RFOvR0BU=,0|$AIVDM,1,1,,A,33:iFj3P01Pv>H2O;79RFOvR0BU=,0 +2025-07-24T06:52:17|<<>>Seatalk1|$STALK,84,36,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:18|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:18|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:52:18|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:18|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:18|<<>>Seatalk1|$STALK,9C,31,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 300 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:18|<<>>Seatalk1|$STALK,84,36,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:18|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:19|<<>>Seatalk1|$STALK,10,01,00,48|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 36 ° } +2025-07-24T06:52:19|<<>>Seatalk1|$STALK,9C,F1,0E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 299 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:19|<<>>Seatalk1|$STALK,84,36,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:19|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:20|<<>>Seatalk1|$STALK,10,01,00,5C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 46 ° } +2025-07-24T06:52:20|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:20|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:20|<<>>Seatalk1|$STALK,9C,31,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 300 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:20|<<OOQ1uL2O?>oScRpV0D2S,0|$AIVDM,1,1,,A,19NSghPuR>Q1uL2O?>oScRpV0D2S,0 +2025-07-24T06:52:20|<<>>Seatalk1|$STALK,84,B6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:21|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:21|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:52:21|<<>>Seatalk1|$STALK,9C,71,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:21|<<>>Seatalk1|$STALK,84,B6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:21|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:22|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:52:22|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:22|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:22|<<>>Seatalk1|$STALK,9C,B1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 300 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:22|<<>>Seatalk1|$STALK,84,36,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:23|<<>>Seatalk1|$STALK,85,36,00,A2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 225 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:23|<<>>Seatalk1|$STALK,10,01,00,56|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 43 ° } +2025-07-24T06:52:23|<<e04k@,0|$AIVDM,1,1,,A,13@pVE001C0wPG@O;59@@h>e04k@,0 +2025-07-24T06:52:23|<<>>Seatalk1|$STALK,9C,71,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:23|<<>>Seatalk1|$STALK,84,B6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 300 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:24|<<7,0|$AIVDM,1,1,,B,15ABS400020wWK0O;:lCN5Rh0@>7,0 +2025-07-24T06:52:24|<<>>Seatalk1|$STALK,85,36,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:24|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:52:24|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:24|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:24|<<Nvw==Orjh0<0?,0|$AIVDM,1,1,,A,13`lQb00150vsq>Nvw==Orjh0<0?,0 +2025-07-24T06:52:24|<<>>Seatalk1|$STALK,9C,B1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 300 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:24|<<>>Seatalk1|$STALK,84,F6,0F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 301 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:25|<<>>Seatalk1|$STALK,85,36,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:25|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:52:25|<<@003Pv9jvNwmg5S0Nh00Rj,0|$AIVDM,1,1,,B,13@pD>@003Pv9jvNwmg5S0Nh00Rj,0 +2025-07-24T06:52:25|<<>>Seatalk1|$STALK,9C,F1,0F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 301 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:25|<<>>Seatalk1|$STALK,84,36,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 302 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:26|<<>>Seatalk1|$STALK,85,36,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:26|<<>>Seatalk1|$STALK,10,01,00,50|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 40 ° } +2025-07-24T06:52:26|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:26|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:26|<<>>Seatalk1|$STALK,9C,71,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 303 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:26|<<>>Seatalk1|$STALK,84,F6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 303 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:27|<<>>Seatalk1|$STALK,85,36,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.03 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:27|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:52:27|<<m0020vM?JOm0020vM?JO>>Seatalk1|$STALK,9C,71,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 303 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:27|<<>>Seatalk1|$STALK,84,B6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 302 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:28|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:28|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:52:28|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:28|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:28|<<>>Seatalk1|$STALK,9C,B1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 302 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:28|<<j482@ueP@8P@0008u8eDl00000000000000o589::4000;Q1CEB,0|$AIVDM,2,1,6,B,53@>j482@ueP@8P@0008u8eDl00000000000000o589::4000;Q1CEB,0 +2025-07-24T06:52:28|<<>>Seatalk1|$STALK,84,36,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 302 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:29|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:29|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:52:29|<<4tp0<0j,0|$AIVDM,1,1,,A,139NTv000p0u?kjO0JUV>4tp0<0j,0 +2025-07-24T06:52:29|<<>>Seatalk1|$STALK,9C,71,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 303 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:29|<<>>Seatalk1|$STALK,84,F6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 303 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:29|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:30|<<>>Seatalk1|$STALK,10,01,00,48|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 36 ° } +2025-07-24T06:52:30|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:30|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:30|<<>>Seatalk1|$STALK,9C,31,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 304 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:30|<<>>Seatalk1|$STALK,84,F6,10,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 303 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:31|<<7j6wtB7wg1l4k@,0|$AIVDM,1,1,,A,B3@oGQ@0@`?pM>7j6wtB7wg1l4k@,0 +2025-07-24T06:52:31|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:31|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:52:31|<<>>Seatalk1|$STALK,9C,F1,10,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 303 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:31|<<>>Seatalk1|$STALK,84,B6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 304 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:32|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:32|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:52:32|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:32|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:32|<<>>Seatalk1|$STALK,9C,71,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:32|<<Q1umNO?>hkaRnv00SM,0|$AIVDM,1,1,,A,19NSghPuj>Q1umNO?>hkaRnv00SM,0 +2025-07-24T06:52:32|<<>>Seatalk1|$STALK,84,76,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:33|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:33|<<>>Seatalk1|$STALK,10,01,00,58|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 44 ° } +2025-07-24T06:52:33|<<>>Seatalk1|$STALK,9C,F1,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:33|<<F@0?vt0HCc,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vt0HCc,0 +2025-07-24T06:52:33|<<fPP00Pvb=vO79uh0?w328Cr,0|$AIVDM,1,1,,B,139T>fPP00Pvb=vO79uh0?w328Cr,0 +2025-07-24T06:52:33|<<>>Seatalk1|$STALK,84,F6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:34|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:34|<<>>Seatalk1|$STALK,10,01,00,4E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 39 ° } +2025-07-24T06:52:34|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:34|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:34|<<@A0?508D:,0|$AIVDM,1,1,,B,13@pVE001C0wPI0O;6>@A0?508D:,0 +2025-07-24T06:52:34|<<>>Seatalk1|$STALK,9C,31,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 304 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:34|<<>>Seatalk1|$STALK,84,76,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:35|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:35|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:52:35|<<4?w6R8Dh,0|$AIVDM,1,1,,B,139pin0P00PvbBhO79c>4?w6R8Dh,0 +2025-07-24T06:52:35|<<>>Seatalk1|$STALK,9C,F1,11,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 305 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:35|<<>>Seatalk1|$STALK,84,F6,11,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 305 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:36|<<>>Seatalk1|$STALK,85,26,00,4A,66,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:36|<<>>Seatalk1|$STALK,10,01,00,3C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 30 ° } +2025-07-24T06:52:36|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:36|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:36|<<P00:PwaW@OC7Q41brv0D0b,0|$AIVDM,1,1,,B,13@pD>P00:PwaW@OC7Q41brv0D0b,0 +2025-07-24T06:52:36|<<1=@41=@4>>Seatalk1|$STALK,9C,31,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 306 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:36|<<>>Seatalk1|$STALK,84,B6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 306 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:37|<<>>Seatalk1|$STALK,85,26,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:37|<<>>Seatalk1|$STALK,10,01,00,42|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 33 ° } +2025-07-24T06:52:37|<<>>Seatalk1|$STALK,9C,B1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 306 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:37|<<GjO;79d4Ow:0D0t,0|$AIVDM,1,1,,A,13:iFj3P00Pv>GjO;79d4Ow:0D0t,0 +2025-07-24T06:52:37|<<4?w:24k@,0|$AIVDM,1,1,,A,139Q2bPP00Ptn:dO260>4?w:24k@,0 +2025-07-24T06:52:37|<<4?w:24k@,0|$AIVDM,1,1,,B,139SHt?P00PvOjtO6L7>4?w:24k@,0 +2025-07-24T06:52:37|<<>>Seatalk1|$STALK,84,B6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 306 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:38|<<>>Seatalk1|$STALK,85,26,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:38|<<>>Seatalk1|$STALK,10,01,00,48|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 36 ° } +2025-07-24T06:52:38|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:38|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:38|<<2000,0|$AIVDM,1,1,,A,33@p94hP0t0wB8@O4qu1Ahq>2000,0 +2025-07-24T06:52:38|<<>>Seatalk1|$STALK,9C,B1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 306 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:38|<<@Wk4LhT3wk1jNGK,0|$AIVDM,1,1,,B,B3@nfLh0=P?`>@Wk4LhT3wk1jNGK,0 +2025-07-24T06:52:38|<<>>Seatalk1|$STALK,84,F6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 307 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:39|<<>>Seatalk1|$STALK,85,26,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:39|<<>>Seatalk1|$STALK,10,01,00,36|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 27 ° } +2025-07-24T06:52:39|<<>>Seatalk1|$STALK,9C,B1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 306 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:39|<<0BQu,0|$AIVDM,1,1,,A,33KKDCP001Pv<;FO;5jcqIw>0BQu,0 +2025-07-24T06:52:40|<<>>Seatalk1|$STALK,84,F6,12,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 307 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:40|<<>>Seatalk1|$STALK,85,26,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:40|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:52:40|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:40|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:40|<<00SW,0|$AIVDM,1,1,,B,139UEUSP1H0uUmVO13rrP?w>00SW,0 +2025-07-24T06:52:40|<<>>Seatalk1|$STALK,9C,F1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 307 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:40|<<O0couIJg>08Gt,0|$AIVDM,1,1,,A,13aCdr3018Pvkr>O0couIJg>08Gt,0 +2025-07-24T06:52:40|<<>>Seatalk1|$STALK,84,36,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 308 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:41|<<>>Seatalk1|$STALK,85,26,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:41|<<>>Seatalk1|$STALK,10,01,00,40|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 32 ° } +2025-07-24T06:52:41|<<fT000020@OSWK1fT000020@OSWK1>>Seatalk1|$STALK,9C,31,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:41|<<>>Seatalk1|$STALK,84,36,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 308 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:42|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:42|<<>>Seatalk1|$STALK,10,01,00,42|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 33 ° } +2025-07-24T06:52:42|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:42|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:42|<<>>Seatalk1|$STALK,9C,31,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:42|<<O;6thA0?E08I8,0|$AIVDM,1,1,,A,13@pVE001C0wPJ>O;6thA0?E08I8,0 +2025-07-24T06:52:42|<<>>Seatalk1|$STALK,84,36,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 308 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:43|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:43|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:52:43|<<>>Seatalk1|$STALK,9C,31,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:43|<<>>Seatalk1|$STALK,84,76,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 309 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:44|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:44|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:52:44|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:44|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:44|<<imF00S3,0|$AIVDM,1,1,,B,139vIM002sPwKRPO1sjj>imF00S3,0 +2025-07-24T06:52:44|<<>>Seatalk1|$STALK,9C,71,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 309 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:44|<<>>Seatalk1|$STALK,84,36,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 308 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:45|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:45|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:52:45|<<>>Seatalk1|$STALK,9C,31,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:45|<<GnO;79d4OwL0HJm,0|$AIVDM,1,1,,B,13:iFj3P00Pv>GnO;79d4OwL0HJm,0 +2025-07-24T06:52:45|<<>>Seatalk1|$STALK,84,76,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 309 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:46|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:46|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:52:46|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:46|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:46|<<>>Seatalk1|$STALK,9C,B1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 308 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:46|<<4?wL20TA,0|$AIVDM,1,1,,B,139Q2bPP00Ptn:fO260>4?wL20TA,0 +2025-07-24T06:52:46|<<>>Seatalk1|$STALK,84,F6,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 309 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:47|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:47|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:52:47|<<>>Seatalk1|$STALK,9C,B1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 310 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:47|<<fO:gDsIq3N00VQ,0|$AIVDM,1,1,,B,339O=5P03<0vQ>fO:gDsIq3N00VQ,0 +2025-07-24T06:52:47|<<>>Seatalk1|$STALK,84,F6,13,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 309 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:48|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:48|<<>>Seatalk1|$STALK,10,01,00,56|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 43 ° } +2025-07-24T06:52:48|<<>>Seatalk1|$STALK,11,00,00|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 0 } +2025-07-24T06:52:48|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:48|<<>>Seatalk1|$STALK,9C,31,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 310 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:48|<<>>Seatalk1|$STALK,84,36,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 310 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:49|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:49|<<>>Seatalk1|$STALK,10,01,00,46|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 35 ° } +2025-07-24T06:52:49|<<>>Seatalk1|$STALK,9C,F1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 309 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:49|<<>>Seatalk1|$STALK,84,76,14,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 311 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:50|<<aI87CT00SH,0|$AIVDM,1,1,,B,13@orC003D0vVdVO<>aI87CT00SH,0 +2025-07-24T06:52:50|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:50|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:52:50|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:50|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:50|<<>>Seatalk1|$STALK,9C,B1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 310 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:50|<<>>Seatalk1|$STALK,84,36,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 312 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:51|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:51|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:52:51|<<QmT05;C,0|$AIVDM,1,1,,A,339vIM002rPwKjrO1tS2>QmT05;C,0 +2025-07-24T06:52:51|<<>>Seatalk1|$STALK,9C,31,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 312 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:51|<<>>Seatalk1|$STALK,84,76,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:52|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:52|<<>>Seatalk1|$STALK,10,01,00,40|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 32 ° } +2025-07-24T06:52:52|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:52|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:52|<<>>Seatalk1|$STALK,9C,31,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 312 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:52|<<>>Seatalk1|$STALK,84,76,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:53|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:53|<<>>Seatalk1|$STALK,10,01,00,60|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 48 ° } +2025-07-24T06:52:53|<<>>Seatalk1|$STALK,9C,31,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 312 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:53|<<21DpTtr0tqUR2222222220l2h;56400021DpTtr0tqUR2222222220l2h;564000>>Seatalk1|$STALK,84,36,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 312 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:54|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:54|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:52:54|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:54|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:54|<<>>Seatalk1|$STALK,9C,31,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 312 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:54|<<>>Seatalk1|$STALK,84,76,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:55|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:55|<<>>Seatalk1|$STALK,10,01,00,48|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 36 ° } +2025-07-24T06:52:55|<<>>Seatalk1|$STALK,9C,71,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 313 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:55|<<>>Seatalk1|$STALK,84,F6,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:52:56|<<P009PwaavOC7MD9:uV0<0b,0|$AIVDM,1,1,,B,13@pD>P009PwaavOC7MD9:uV0<0b,0 +2025-07-24T06:52:56|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:56|<<>>Seatalk1|$STALK,10,01,00,52|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 41 ° } +2025-07-24T06:52:56|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:56|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:56|<<>>Seatalk1|$STALK,9C,F1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 313 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:56|<<>>Seatalk1|$STALK,84,76,15,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 313 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:57|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:57|<<>>Seatalk1|$STALK,10,01,00,40|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 32 ° } +2025-07-24T06:52:57|<<GvO;78lH?wj04k@,0|$AIVDM,1,1,,A,13:iFj3P01Pv>GvO;78lH?wj04k@,0 +2025-07-24T06:52:57|<<>>Seatalk1|$STALK,9C,F1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 313 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:52:57|<<>>Seatalk1|$STALK,84,36,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 314 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:58|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:58|<<>>Seatalk1|$STALK,10,01,00,48|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 36 ° } +2025-07-24T06:52:58|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:52:58|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:52:58|<<>>Seatalk1|$STALK,9C,31,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 314 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:58|<<>>Seatalk1|$STALK,84,36,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 314 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:52:59|<<>>Seatalk1|$STALK,85,16,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:52:59|<<>>Seatalk1|$STALK,10,01,00,42|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 33 ° } +2025-07-24T06:52:59|<<>>Seatalk1|$STALK,9C,71,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 315 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:52:59|<<>>Seatalk1|$STALK,84,76,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 315 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:00|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:00|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:53:00|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:53:00|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:00|<<>>Seatalk1|$STALK,9C,71,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 315 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:00|<<>>Seatalk1|$STALK,84,F6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 315 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:01|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:01|<<>>Seatalk1|$STALK,10,01,00,46|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 35 ° } +2025-07-24T06:53:01|<<8n20000,0|$AIVDM,1,1,,A,339O=5PP390vPVnO:hAs>8n20000,0 +2025-07-24T06:53:01|<<>>Seatalk1|$STALK,9C,71,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 315 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:01|<<8O<=1q9G@40<1T,0|$AIVDM,1,1,,B,13@orC0P3C0vV>8O<=1q9G@40<1T,0 +2025-07-24T06:53:01|<<O4s>iKA>421lh,0|$AIVDM,1,1,,B,33@p94hP0t0wBC>O4s>iKA>421lh,0 +2025-07-24T06:53:01|<<9GKwPUkP06,0|$AIVDM,1,1,,B,B39kPK00=P?V34Whv>9GKwPUkP06,0 +2025-07-24T06:53:01|<<>>Seatalk1|$STALK,84,B6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 314 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:02|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:02|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:53:02|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:02|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:02|<<>>Seatalk1|$STALK,9C,31,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 316 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:02|<<fPP00Pvb=tO79tP0?v52H1e,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79tP0?v52H1e,0 +2025-07-24T06:53:02|<<>>Seatalk1|$STALK,84,F6,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 315 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:03|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:03|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:53:03|<<>>Seatalk1|$STALK,9C,71,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 317 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:03|<<F@0?v004kD,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v004kD,0 +2025-07-24T06:53:03|<<DPO;75pQPF8082B,0|$AIVDM,1,1,,B,13:EIf00020v>DPO;75pQPF8082B,0 +2025-07-24T06:53:03|<<>>Seatalk1|$STALK,84,B6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 316 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:04|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:04|<<>>Seatalk1|$STALK,10,01,00,42|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 33 ° } +2025-07-24T06:53:04|<<8?T5@WiEINPcwQUoP06,0|$AIVDM,1,1,,B,B39inLP0>8?T5@WiEINPcwQUoP06,0 +2025-07-24T06:53:04|<<7082K,0|$AIVDM,1,1,,A,13@pVE001C0wPMDO;8n@@P>7082K,0 +2025-07-24T06:53:04|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:04|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:04|<<>>Seatalk1|$STALK,9C,71,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 317 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:04|<<>>Seatalk1|$STALK,84,76,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 317 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:05|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:05|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:53:05|<<>>Seatalk1|$STALK,9C,F1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 317 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:05|<<>>Seatalk1|$STALK,84,F6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 317 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:06|<<@003Pv9l0Nwm`mbPP80H3T,0|$AIVDM,1,1,,B,13@pD>@003Pv9l0Nwm`mbPP80H3T,0 +2025-07-24T06:53:06|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:06|<<>>Seatalk1|$STALK,10,01,00,40|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 32 ° } +2025-07-24T06:53:06|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:06|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:06|<<>>Seatalk1|$STALK,9C,F1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 317 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:06|<<P00:PwacTOC7Kl6bv604kD,0|$AIVDM,1,1,,A,13@pD>P00:PwacTOC7Kl6bv604kD,0 +2025-07-24T06:53:07|<<>>Seatalk1|$STALK,84,36,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 318 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:07|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:07|<<>>Seatalk1|$STALK,10,01,00,42|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 33 ° } +2025-07-24T06:53:07|<<22222221D2i>3>4000?1h`51,0|$AIVDM,2,1,2,A,5815A9l2D;nqKLP?B20D22222221D2i>3>4000?1h`51,0 +2025-07-24T06:53:07|<<>>Seatalk1|$STALK,9C,F1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 317 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:07|<<0000,0|$AIVDM,1,1,,B,339O=5PP3:0vPELO:hVc9pr>0000,0 +2025-07-24T06:53:07|<<>>Seatalk1|$STALK,84,F6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 317 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:08|<<>>Seatalk1|$STALK,85,06,00,C2,65,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 1.02 NM } +2025-07-24T06:53:08|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:53:08|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:08|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:53:08|<<4?v@2@4m,0|$AIVDM,1,1,,A,139SHt?P00PvOjnO6L7>4?v@2@4m,0 +2025-07-24T06:53:08|<<il>04kD,0|$AIVDM,1,1,,B,139vIM002sPwLJhO1vHR>il>04kD,0 +2025-07-24T06:53:08|<<>>Seatalk1|$STALK,9C,31,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 316 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:08|<<>>Seatalk1|$STALK,84,F6,17,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 317 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:09|<<>>Seatalk1|$STALK,85,06,00,6A,56,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:09|<<>>Seatalk1|$STALK,10,01,00,38|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 28 ° } +2025-07-24T06:53:09|<<>>Seatalk1|$STALK,9C,F1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 319 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:09|<<>>Seatalk1|$STALK,84,F6,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 319 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:10|<<>>Seatalk1|$STALK,85,06,00,6A,56,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:10|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:53:10|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:10|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:53:10|<<PkQ3wU5kP06,0|$AIVDM,1,1,,B,B39cMA0000?b;vWi>PkQ3wU5kP06,0 +2025-07-24T06:53:10|<<>>Seatalk1|$STALK,9C,F1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 319 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:10|<<>>Seatalk1|$STALK,84,B6,18,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 318 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:11|<<>>Seatalk1|$STALK,85,06,00,6A,56,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:11|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:53:11|<<>>Seatalk1|$STALK,9C,F1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 319 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:11|<<>>Seatalk1|$STALK,84,36,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 320 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:12|<<>>Seatalk1|$STALK,85,06,00,6A,56,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:12|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:53:12|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:12|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:53:12|<<>>Seatalk1|$STALK,9C,31,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 320 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:12|<<MVc0J087J,0|$AIVDM,1,1,,B,139ncKP0000vN:0OMVc0J087J,0 +2025-07-24T06:53:12|<<>>Seatalk1|$STALK,84,36,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 320 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:13|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:13|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:53:13|<<>>Seatalk1|$STALK,9C,71,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:13|<<K06e3,0|$AIVDM,1,1,,B,33@pVE001C0wPNlO;9hhA@>K06e3,0 +2025-07-24T06:53:13|<<>>Seatalk1|$STALK,84,B6,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 320 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:14|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:14|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:53:14|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:14|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:14|<<DJO;75oa@HN0@8N,0|$AIVDM,1,1,,A,13:EIf00050v>DJO;75oa@HN0@8N,0 +2025-07-24T06:53:14|<<>>Seatalk1|$STALK,9C,F1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:14|<<>>Seatalk1|$STALK,84,F6,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 321 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:15|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:15|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:53:15|<<F@0?vH04kD,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vH04kD,0 +2025-07-24T06:53:15|<<>>Seatalk1|$STALK,9C,F1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:15|<<4?vPR4kD,0|$AIVDM,1,1,,B,139pin0P00PvbBTO79c>4?vPR4kD,0 +2025-07-24T06:53:15|<<>>Seatalk1|$STALK,84,F6,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 321 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:16|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:16|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:53:16|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:16|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:16|<<>>Seatalk1|$STALK,9C,F1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 321 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:16|<<>>Seatalk1|$STALK,84,F6,19,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 321 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:17|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:17|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:53:17|<<>>Seatalk1|$STALK,9C,31,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 322 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:17|<<>>Seatalk1|$STALK,84,36,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 322 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:18|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:18|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:53:18|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:18|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:18|<<>>Seatalk1|$STALK,9C,31,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 322 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:18|<<>>Seatalk1|$STALK,84,76,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 323 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:19|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:19|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:53:19|<<>>Seatalk1|$STALK,9C,B1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 322 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:19|<<>>Seatalk1|$STALK,84,B6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 322 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:20|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:20|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:53:20|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:20|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:20|<<>>Seatalk1|$STALK,9C,F1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 323 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:20|<<>>Seatalk1|$STALK,84,F6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 323 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:21|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:21|<<>>Seatalk1|$STALK,10,01,00,30|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 24 ° } +2025-07-24T06:53:21|<<>>Seatalk1|$STALK,9C,F1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 323 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:21|<<>>Seatalk1|$STALK,84,36,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 324 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:22|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:22|<<QGPtd21e@,0|$AIVDM,1,1,,B,33@p94hP0r0wBNjO4t>QGPtd21e@,0 +2025-07-24T06:53:22|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:53:22|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:22|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:22|<<>>Seatalk1|$STALK,9C,71,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 325 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:22|<<>>Seatalk1|$STALK,84,76,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 325 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:23|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:23|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:53:23|<<e00SH,0|$AIVDM,1,1,,A,13@pVE001C0wPP:O;:TPA@>e00SH,0 +2025-07-24T06:53:23|<<DDO;75G;PFh00Sg,0|$AIVDM,1,1,,B,13:EIf00060v>DDO;75G;PFh00Sg,0 +2025-07-24T06:53:23|<<>>Seatalk1|$STALK,9C,71,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 325 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:23|<<>>Seatalk1|$STALK,84,F6,1A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 323 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:24|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:24|<<>>Seatalk1|$STALK,10,01,00,32|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 25 ° } +2025-07-24T06:53:24|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:24|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:24|<<>,0|$AIVDM,1,1,,A,13`lQb00150vsWPNw3T=@:Vh08>>,0 +2025-07-24T06:53:24|<<>>Seatalk1|$STALK,9C,71,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 325 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:24|<<F@0?vb00RN,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?vb00RN,0 +2025-07-24T06:53:24|<<0vFfVO:oFrtHfj0L0h,0|$AIVDM,1,1,,A,13:EQR001>0vFfVO:oFrtHfj0L0h,0 +2025-07-24T06:53:24|<<>>Seatalk1|$STALK,84,76,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 325 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:25|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:25|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:53:25|<<>>Seatalk1|$STALK,9C,B1,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 324 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:25|<<P00:Pwaf0OC7HD4;0b00S;,0|$AIVDM,1,1,,A,13@pD>P00:Pwaf0OC7HD4;0b00S;,0 +2025-07-24T06:53:25|<<>>Seatalk1|$STALK,84,F6,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 325 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:26|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:26|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:53:26|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:26|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:26|<<>>Seatalk1|$STALK,9C,31,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 326 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:26|<<eWiPI7Q3we1jDl:,0|$AIVDM,1,1,,A,B39thuP000?M>eWiPI7Q3we1jDl:,0 +2025-07-24T06:53:27|<<>>Seatalk1|$STALK,84,36,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 326 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:27|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:27|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:53:27|<<>>Seatalk1|$STALK,9C,71,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 327 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:27|<<GHO;6uoJ?vn04kD,0|$AIVDM,1,1,,B,13:iFj3P05Pv>GHO;6uoJ?vn04kD,0 +2025-07-24T06:53:27|<<4?vn2D0@,0|$AIVDM,1,1,,B,139Q2bPP00Ptn:pO260>4?vn2D0@,0 +2025-07-24T06:53:27|<<>>Seatalk1|$STALK,84,76,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 327 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:28|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:28|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:53:28|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:28|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:28|<<>>Seatalk1|$STALK,9C,71,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 327 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:28|<<>>Seatalk1|$STALK,84,B6,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 326 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:29|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:29|<<>>Seatalk1|$STALK,10,01,00,34|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 26 ° } +2025-07-24T06:53:29|<<>>Seatalk1|$STALK,9C,31,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 326 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:29|<<>>Seatalk1|$STALK,84,76,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 327 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:30|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:30|<<>>Seatalk1|$STALK,10,01,00,2E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 23 ° } +2025-07-24T06:53:30|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:30|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:30|<<>>Seatalk1|$STALK,9C,B1,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 326 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:30|<<>>Seatalk1|$STALK,84,F6,1C,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 327 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:31|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:31|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:53:31|<<O`qR=tWgwt89?,0|$AIVDM,1,1,,A,91b77O`qR=tWgwt89?,0 +2025-07-24T06:53:31|<<>>Seatalk1|$STALK,9C,31,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:31|<<MVc100D0m,0|$AIVDM,1,1,,B,139ncKP0000vN9lOMVc100D0m,0 +2025-07-24T06:53:32|<<>>Seatalk1|$STALK,84,36,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:32|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:32|<<>>Seatalk1|$STALK,10,01,00,2C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 22 ° } +2025-07-24T06:53:32|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:32|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:32|<<>>Seatalk1|$STALK,9C,71,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:32|<<>>Seatalk1|$STALK,84,76,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 329 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:33|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:33|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:53:33|<<>>Seatalk1|$STALK,9C,71,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:33|<<D>O;71G3@E40@Cd,0|$AIVDM,1,1,,A,13:EIf00040v>D>O;71G3@E40@Cd,0 +2025-07-24T06:53:33|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:34|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:34|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:53:34|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:34|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:34|<<>>Seatalk1|$STALK,9C,F1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 329 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:34|<<>>Seatalk1|$STALK,84,B6,1D,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 328 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:35|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:35|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:53:35|<<>>Seatalk1|$STALK,9C,B1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 328 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:35|<<>>Seatalk1|$STALK,84,36,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 330 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:36|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:36|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:53:36|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:36|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:36|<<P009PwagFOC7FT>;300@E@,0|$AIVDM,1,1,,B,13@pD>P009PwagFOC7FT>;300@E@,0 +2025-07-24T06:53:36|<<>>Seatalk1|$STALK,9C,31,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:36|<<hHPt7CGKIhHPt7CGKI>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:37|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:37|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:53:37|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:37|<<GTO;6uVbgw:0@F6,0|$AIVDM,1,1,,A,13:iFj3P02Pv>GTO;6uVbgw:0@F6,0 +2025-07-24T06:53:37|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:38|<<>>Seatalk1|$STALK,85,06,00,E2,55,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 1.01 NM } +2025-07-24T06:53:38|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:53:38|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:38|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:38|<<>>Seatalk1|$STALK,9C,71,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:38|<<>>Seatalk1|$STALK,84,76,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:39|<<>>Seatalk1|$STALK,85,06,00,8A,46,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 1 NM } +2025-07-24T06:53:39|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:53:39|<<V5?:;<0Dwb,0|$AIVDM,1,1,,B,33ku8NE0000v?`nO;>V5?:;<0Dwb,0 +2025-07-24T06:53:39|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:39|<<00SJ,0|$AIVDM,1,1,,B,15?det@002PwEgFO4u5Cdhu>00SJ,0 +2025-07-24T06:53:39|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:40|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:40|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:53:40|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:40|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:53:40|<<>>Seatalk1|$STALK,9C,F1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 331 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:40|<<Nvuku6?w@00;S,0|$AIVDM,1,1,,B,339MLt3P000vPn>Nvuku6?w@00;S,0 +2025-07-24T06:53:40|<<04kD,0|$AIVDM,1,1,,A,13aCdr3017PvkWtO0hG=IJg>04kD,0 +2025-07-24T06:53:40|<<>>Seatalk1|$STALK,84,F6,1E,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 331 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:41|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:41|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:53:41|<<7j=W5@0DP:,0|$AIVDM,1,1,,B,33cPHl50000v<3lO;>7j=W5@0DP:,0 +2025-07-24T06:53:41|<<>>Seatalk1|$STALK,9C,B1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 330 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:41|<<>>Seatalk1|$STALK,84,36,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:42|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:42|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:53:42|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:42|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:42|<<>>Seatalk1|$STALK,9C,71,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:42|<<>>Seatalk1|$STALK,84,F6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:43|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:43|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:53:43|<<>>Seatalk1|$STALK,9C,F1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:43|<<>>Seatalk1|$STALK,84,F6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 333 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:44|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:44|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:53:44|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:53:44|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:44|<<@003Pv9lnNwmRmgPQF08J6,0|$AIVDM,1,1,,B,13@pD>@003Pv9lnNwmRmgPQF08J6,0 +2025-07-24T06:53:44|<<>>Seatalk1|$STALK,9C,F1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 333 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:44|<<D8O;6vFiPEJ0@JF,0|$AIVDM,1,1,,B,13:EIf00010v>D8O;6vFiPEJ0@JF,0 +2025-07-24T06:53:44|<<>>Seatalk1|$STALK,84,36,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:45|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:45|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:53:45|<<>>Seatalk1|$STALK,9C,31,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 334 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:45|<<>>Seatalk1|$STALK,84,36,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:46|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:46|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:53:46|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:46|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:46|<<>>Seatalk1|$STALK,9C,31,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 334 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:46|<<>>Seatalk1|$STALK,84,76,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 335 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:47|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:47|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:53:47|<<>>Seatalk1|$STALK,9C,71,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:47|<<>>Seatalk1|$STALK,84,76,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 335 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:48|<<>>Seatalk1|$STALK,85,06,00,8A,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:48|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:53:48|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:48|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:48|<<>>Seatalk1|$STALK,9C,71,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 335 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:48|<<4?wR24kD,0|$AIVDM,1,1,,A,139SHt?P00PvOjRO6L:>4?wR24kD,0 +2025-07-24T06:53:49|<<>>Seatalk1|$STALK,84,B6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 334 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:49|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:49|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:53:49|<<>>Seatalk1|$STALK,9C,31,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:49|<<>>Seatalk1|$STALK,84,36,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:50|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:50|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:53:50|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:50|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:50|<<O4ub1giEV22:@,0|$AIVDM,1,1,,A,33@p94hP0s0wBf>O4ub1giEV22:@,0 +2025-07-24T06:53:50|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:50|<<>>Seatalk1|$STALK,84,76,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:51|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:51|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:53:51|<<>>Seatalk1|$STALK,9C,71,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:51|<<>>Seatalk1|$STALK,84,B6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 336 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:52|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:52|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:53:52|<<>>Seatalk1|$STALK,11,00,01|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 1 } +2025-07-24T06:53:52|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:52|<<>>Seatalk1|$STALK,9C,B1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 336 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:52|<<>>Seatalk1|$STALK,84,F6,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 337 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:53|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:53|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:53:53|<<>>Seatalk1|$STALK,9C,31,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:53|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:54|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:54|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:53:54|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:54|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:53:54|<<>>Seatalk1|$STALK,9C,31,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 338 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:54|<<@003Pv9m4NwmPUe0Qb0D0M,0|$AIVDM,1,1,,A,13@pD>@003Pv9m4NwmPUe0Qb0D0M,0 +2025-07-24T06:53:54|<<>>Seatalk1|$STALK,84,36,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:55|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:55|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:53:55|<<>>Seatalk1|$STALK,9C,71,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:55|<<>>Seatalk1|$STALK,84,76,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:56|<<P00:Pwaj2OC7Bl4;3V08Pp,0|$AIVDM,1,1,,B,13@pD>P00:Pwaj2OC7Bl4;3V08Pp,0 +2025-07-24T06:53:56|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:56|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:53:56|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:56|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:56|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:56|<<>>Seatalk1|$STALK,84,B6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 338 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:57|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:57|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:53:57|<<GJO;6vEFOwh00RI,0|$AIVDM,1,1,,A,13:iFj3P00Pv>GJO;6vEFOwh00RI,0 +2025-07-24T06:53:57|<<>>Seatalk1|$STALK,9C,F1,22,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 339 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:53:57|<<>>Seatalk1|$STALK,84,F6,22,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 339 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:53:58|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:58|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:53:58|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:53:58|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:53:58|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:58|<<>>Seatalk1|$STALK,84,36,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 340 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:53:59|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:53:59|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:53:59|<<>>Seatalk1|$STALK,9C,31,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:53:59|<<<,0|$AIVDM,2,1,6,B,53@pVE82;AIPu`QS:20PDTl@4j1:22222222220Q7PH9:4000=Rl8><,0 +2025-07-24T06:53:59|<<>>Seatalk1|$STALK,84,76,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:00|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:00|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:54:00|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:00|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:00|<<>>Seatalk1|$STALK,9C,B1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 340 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:00|<<>>Seatalk1|$STALK,84,F6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:01|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:01|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:54:01|<<>>Seatalk1|$STALK,9C,F1,23,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 341 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:01|<<>>Seatalk1|$STALK,84,F6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 341 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:02|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:02|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:54:02|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:02|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:02|<<BFO;0Wlpkn60@1E,0|$AIVDM,1,1,,A,13@pc=h00n0v>BFO;0Wlpkn60@1E,0 +2025-07-24T06:54:02|<<>>Seatalk1|$STALK,9C,31,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:02|<<fPP00Pvb=dO79uh0?v52D0P,0|$AIVDM,1,1,,A,139T>fPP00Pvb=dO79uh0?v52D0P,0 +2025-07-24T06:54:02|<<>>Seatalk1|$STALK,84,36,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:03|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:03|<<H?SqL7iE96LOwQ5oP06,0|$AIVDM,1,1,,B,B39inLP0>H?SqL7iE96LOwQ5oP06,0 +2025-07-24T06:54:03|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:54:03|<<F@0?v000S@,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v000S@,0 +2025-07-24T06:54:03|<<>>Seatalk1|$STALK,9C,71,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:03|<<CrO;6tFiPD804kH,0|$AIVDM,1,1,,B,13:EIf00010v>CrO;6tFiPD804kH,0 +2025-07-24T06:54:03|<<>>Seatalk1|$STALK,84,76,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:04|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:04|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:54:04|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:04|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:04|<<@0AP>704kH,0|$AIVDM,1,1,,A,13@pVE001C0wPVVO;>@0AP>704kH,0 +2025-07-24T06:54:04|<<>>Seatalk1|$STALK,9C,B1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 342 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:04|<<>>Seatalk1|$STALK,84,B6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 342 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:05|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:05|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:54:05|<<>>Seatalk1|$STALK,9C,F1,24,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 343 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:05|<<@003Pv9mFNwmNEj0R:0D0M,0|$AIVDM,1,1,,B,13@pD>@003Pv9mFNwmNEj0R:0D0M,0 +2025-07-24T06:54:05|<<>>Seatalk1|$STALK,84,F6,24,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 343 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:06|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:06|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:54:06|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:06|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:06|<<>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:06|<<>>Seatalk1|$STALK,84,36,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:07|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:07|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:54:07|<<>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:07|<<>>Seatalk1|$STALK,84,76,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:08|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:08|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:54:08|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:08|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:08|<<>>Seatalk1|$STALK,9C,31,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 344 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:08|<<>>Seatalk1|$STALK,84,B6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 344 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:09|<<>>Seatalk1|$STALK,85,06,00,02,36,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.99 NM } +2025-07-24T06:54:09|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:54:09|<<>>Seatalk1|$STALK,9C,F1,25,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 345 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:09|<<@?`N@?`N>>Seatalk1|$STALK,84,F6,25,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 345 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:10|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:10|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:54:10|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:10|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:10|<<>>Seatalk1|$STALK,9C,31,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:10|<<>>Seatalk1|$STALK,84,76,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:11|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:11|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:54:11|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:11|<<>>Seatalk1|$STALK,84,76,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:12|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:12|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:54:12|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:12|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:12|<<>>Seatalk1|$STALK,9C,71,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 347 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:12|<<>>Seatalk1|$STALK,84,76,26,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 347 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:13|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:13|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:54:13|<<>>Seatalk1|$STALK,9C,B1,26,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 346 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:13|<<oD5nL0883,0|$AIVDM,1,1,,A,13mDP2001M0vm1lO=6>oD5nL0883,0 +2025-07-24T06:54:13|<<K0<2a,0|$AIVDM,1,1,,B,13@pVE001C0wP`8O;?9hAh>K0<2a,0 +2025-07-24T06:54:13|<<>>Seatalk1|$STALK,84,76,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 349 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:14|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:14|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:54:14|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:14|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:14|<<CrO;6tniPDN0<24,0|$AIVDM,1,1,,A,13:EIf00010v>CrO;6tniPDN0<24,0 +2025-07-24T06:54:14|<<>>Seatalk1|$STALK,9C,31,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 348 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:14|<<>>Seatalk1|$STALK,84,36,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:15|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:15|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:54:15|<<>>Seatalk1|$STALK,9C,31,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 348 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:15|<<>>Seatalk1|$STALK,84,36,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:16|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:16|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:54:16|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:16|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:16|<<>>Seatalk1|$STALK,9C,71,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 349 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:16|<<nNw77dmJBP01qh,0|$AIVDM,1,1,,A,33`lQb00150vs>nNw77dmJBP01qh,0 +2025-07-24T06:54:16|<<>>Seatalk1|$STALK,84,36,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:17|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:17|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:54:17|<<4?vR20RS,0|$AIVDM,1,1,,B,139Q2t0P00Ptn?JO26<>4?vR20RS,0 +2025-07-24T06:54:17|<<>>Seatalk1|$STALK,9C,71,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 349 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:17|<<4?vR20Rk,0|$AIVDM,1,1,,A,139Q2bPP00Ptn;@O261>4?vR20Rk,0 +2025-07-24T06:54:17|<<>>Seatalk1|$STALK,84,B6,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:18|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:18|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:54:18|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:18|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:18|<<>>Seatalk1|$STALK,9C,B1,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 348 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:18|<<>>Seatalk1|$STALK,84,F6,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 349 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:19|<<>>Seatalk1|$STALK,85,06,00,02,26,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.98 NM } +2025-07-24T06:54:19|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:54:19|<<>>Seatalk1|$STALK,9C,31,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:19|<<>>Seatalk1|$STALK,84,B6,27,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 348 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:20|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:20|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:54:20|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:54:20|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:20|<<O4w4idQJb229P,0|$AIVDM,1,1,,B,33@p94hP0s0wBw>O4w4idQJb229P,0 +2025-07-24T06:54:20|<<>>Seatalk1|$STALK,9C,F1,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 349 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:20|<<>>Seatalk1|$STALK,84,36,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 350 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:21|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:21|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:54:21|<<>>Seatalk1|$STALK,9C,71,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:21|<<>>Seatalk1|$STALK,84,76,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:22|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:22|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:54:22|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:54:22|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:22|<<>>Seatalk1|$STALK,9C,71,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:22|<<>>Seatalk1|$STALK,84,B6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 350 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:23|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:23|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:54:23|<<O4RubGFBd08=l,0|$AIVDM,1,1,,B,13pr=F00000t13>O4RubGFBd08=l,0 +2025-07-24T06:54:23|<<>>Seatalk1|$STALK,9C,F1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:23|<<F@0?v`0L11,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v`0L11,0 +2025-07-24T06:54:23|<<>>Seatalk1|$STALK,84,36,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:24|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:24|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:54:24|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:54:24|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:24|<<CfO;6tFiPFj0<24,0|$AIVDM,1,1,,B,13:EIf00010v>CfO;6tFiPFj0<24,0 +2025-07-24T06:54:24|<<@003Pv9mfNwmKUgPRf0@>G,0|$AIVDM,1,1,,B,13@pD>@003Pv9mfNwmKUgPRf0@>G,0 +2025-07-24T06:54:24|<<>>Seatalk1|$STALK,9C,F1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:24|<<JnHVj0H>b,0|$AIVDM,1,1,,A,13:EQR001B0vEVvO:p>JnHVj0H>b,0 +2025-07-24T06:54:24|<<>>Seatalk1|$STALK,84,F6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:25|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:25|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:54:25|<<>>Seatalk1|$STALK,9C,F1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:25|<<>>Seatalk1|$STALK,84,F6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:26|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:26|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:54:26|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:54:26|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:26|<<>>Seatalk1|$STALK,9C,F1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:26|<<>>Seatalk1|$STALK,84,36,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:27|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:27|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:54:27|<<>>Seatalk1|$STALK,9C,71,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 353 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:27|<<GJO;6vEGJO;6vE>>Seatalk1|$STALK,84,76,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 353 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:28|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:28|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:54:28|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:28|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:28|<<>>Seatalk1|$STALK,9C,71,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 353 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:28|<<>>Seatalk1|$STALK,84,B6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:29|<<>>Seatalk1|$STALK,85,06,00,02,16,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.97 NM } +2025-07-24T06:54:29|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:54:29|<<>>Seatalk1|$STALK,9C,B1,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 352 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:29|<<>>Seatalk1|$STALK,84,B6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:30|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:30|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:54:30|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:30|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:30|<<>>Seatalk1|$STALK,9C,B1,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 352 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:30|<<>>Seatalk1|$STALK,84,F6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 353 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:31|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:31|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:54:31|<<=Jrft04kH,0|$AIVDM,1,1,,B,13aCdr3017PvkHtO0l>=Jrft04kH,0 +2025-07-24T06:54:31|<<v0000,0|$AIVDM,1,1,,B,339O=5PP3:0vLQTO:m6sJa>v0000,0 +2025-07-24T06:54:31|<<>>Seatalk1|$STALK,9C,F1,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 353 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:31|<<aWhu=iFGwgUkP06,0|$AIVDM,1,1,,A,B39kPK00=P?V>aWhu=iFGwgUkP06,0 +2025-07-24T06:54:31|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:32|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:32|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:54:32|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:32|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:32|<<>>Seatalk1|$STALK,9C,71,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:32|<<5UC@7mnnq00;40w,0|$AIVDM,1,1,,B,H3prNNDTCBD:>5UC@7mnnq00;40w,0 +2025-07-24T06:54:32|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:33|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:33|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:54:33|<<F@0?vt0@Cc,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vt0@Cc,0 +2025-07-24T06:54:33|<<CfO;6tFiPG40<24,0|$AIVDM,1,1,,A,13:EIf00000v>CfO;6tFiPG40<24,0 +2025-07-24T06:54:33|<<>>Seatalk1|$STALK,9C,F1,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 353 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:33|<<>>Seatalk1|$STALK,84,36,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 354 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:34|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:34|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:54:34|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:34|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:34|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:34|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:35|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:35|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:54:35|<<>>Seatalk1|$STALK,9C,71,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:35|<<>>Seatalk1|$STALK,84,B6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 354 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:36|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:36|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:54:36|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:36|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:36|<<>>Seatalk1|$STALK,9C,71,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:36|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:37|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:37|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:54:37|<<>>Seatalk1|$STALK,9C,71,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:37|<<GJO;6vEGJO;6vE>>Seatalk1|$STALK,84,F6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 353 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:38|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:38|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:54:38|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:38|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:38|<<08FQ,0|$AIVDM,1,1,,B,13ku;qh01D0vtB`O=NgUoDg>08FQ,0 +2025-07-24T06:54:38|<<>>Seatalk1|$STALK,9C,71,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:38|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:39|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:39|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:54:39|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:39|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:40|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:40|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:54:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:54:40|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:40|<<0D0k,0|$AIVDM,1,1,,B,15?det@002PwEhhO4u4THPm>0D0k,0 +2025-07-24T06:54:40|<<>>Seatalk1|$STALK,9C,B1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:40|<<00Sj,0|$AIVDM,1,1,,A,13aCdr3017PvkF00Sj,0 +2025-07-24T06:54:40|<<>>Seatalk1|$STALK,84,F6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:41|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:41|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:54:41|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:41|<<gDO:wFlSSUD08HM,0|$AIVDM,1,1,,A,13@pc=h00w0v>gDO:wFlSSUD08HM,0 +2025-07-24T06:54:41|<<O5061V1CD21o0,0|$AIVDM,1,1,,B,33@p94hP0t0wC<>O5061V1CD21o0,0 +2025-07-24T06:54:41|<<>>Seatalk1|$STALK,84,36,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:42|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:42|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:54:42|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:42|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:42|<<fPP00Pvb=hO79u@0?wE2<0Q,0|$AIVDM,1,1,,A,139T>fPP00Pvb=hO79u@0?wE2<0Q,0 +2025-07-24T06:54:42|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:42|<<>>Seatalk1|$STALK,84,F6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:43|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:43|<<>>Seatalk1|$STALK,10,01,FF,F4|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -6 ° } +2025-07-24T06:54:43|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:43|<<>>Seatalk1|$STALK,84,F6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:44|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:44|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:54:44|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:44|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:44|<<F@0?wB04kH,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?wB04kH,0 +2025-07-24T06:54:44|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:44|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:45|<<PO:pKbm8aJ0@JN,0|$AIVDM,1,1,,A,13:EQR001C0vE>PO:pKbm8aJ0@JN,0 +2025-07-24T06:54:45|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:45|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:54:45|<<>>Seatalk1|$STALK,9C,F1,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:45|<<>>Seatalk1|$STALK,84,76,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 357 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:46|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:46|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:54:46|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:46|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:46|<<>>Seatalk1|$STALK,9C,31,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:46|<<>>Seatalk1|$STALK,84,36,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:47|<<tO50E1T19N28KW,0|$AIVDM,1,1,,B,13@p94hP0t0wC>tO50E1T19N28KW,0 +2025-07-24T06:54:47|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:47|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:54:47|<<>>Seatalk1|$STALK,9C,31,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:47|<<>>Seatalk1|$STALK,84,36,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:48|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:48|<<>>Seatalk1|$STALK,10,01,FF,F0|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -8 ° } +2025-07-24T06:54:48|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:48|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:54:48|<<4?wP2HLL,0|$AIVDM,1,1,,B,139Q2bPP00Ptn;FO260>4?wP2HLL,0 +2025-07-24T06:54:48|<<>>Seatalk1|$STALK,9C,31,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:48|<<>>Seatalk1|$STALK,84,36,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:49|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:49|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:54:49|<<>>Seatalk1|$STALK,9C,31,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:49|<<>>Seatalk1|$STALK,84,36,2B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 356 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:50|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:50|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:54:50|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:50|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:50|<<>>Seatalk1|$STALK,9C,31,2B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 356 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:50|<<>>Seatalk1|$STALK,84,F6,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:51|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:51|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:54:51|<<>>Seatalk1|$STALK,9C,71,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 355 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:51|<<>>Seatalk1|$STALK,84,76,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 355 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:52|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:52|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:54:52|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:52|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:52|<<fPP00Pvb=nO79uh0?wa24kH,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79uh0?wa24kH,0 +2025-07-24T06:54:52|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:52|<<>>Seatalk1|$STALK,84,36,2A,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 354 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:53|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:53|<<>>Seatalk1|$STALK,10,01,FF,FA|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -3 ° } +2025-07-24T06:54:53|<<>>Seatalk1|$STALK,9C,31,2A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 354 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:53|<<F@0?wT0D11,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?wT0D11,0 +2025-07-24T06:54:53|<<>>Seatalk1|$STALK,84,B6,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:54|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:54|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:54:54|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:54|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:54|<<>>Seatalk1|$STALK,9C,71,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 353 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:54|<<@003Pv9nRNwmFmlPSb0@P3,0|$AIVDM,1,1,,A,13@pD>@003Pv9nRNwmFmlPSb0@P3,0 +2025-07-24T06:54:54|<<ClO;6t6iPEf0@P=,0|$AIVDM,1,1,,A,13:EIf00000v>ClO;6t6iPEf0@P=,0 +2025-07-24T06:54:54|<<>>Seatalk1|$STALK,84,36,29,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 352 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:55|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:55|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:54:55|<<4?wfR4kH,0|$AIVDM,1,1,,B,139pin0P00PvbB4?wfR4kH,0 +2025-07-24T06:54:55|<<Ko9Sh08PU,0|$AIVDM,1,1,,B,1815A9h02210@;jO4s>Ko9Sh08PU,0 +2025-07-24T06:54:55|<<>>Seatalk1|$STALK,9C,31,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 352 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:55|<<>>Seatalk1|$STALK,84,F6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 351 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:56|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:56|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:54:56|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:56|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:56|<<>>Seatalk1|$STALK,9C,B1,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 350 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:56|<<>>Seatalk1|$STALK,84,B6,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 350 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:57|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:57|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:54:57|<<O50mAd1Cl28Qj,0|$AIVDM,1,1,,A,13@p94hP0r0wCE>O50mAd1Cl28Qj,0 +2025-07-24T06:54:57|<<>>Seatalk1|$STALK,9C,71,28,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 351 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:57|<<>>Seatalk1|$STALK,84,36,28,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 350 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:54:58|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:58|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:54:58|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:54:58|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:54:58|<<>>Seatalk1|$STALK,9C,71,27,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 349 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:54:58|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:54:59|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:54:59|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:54:59|<<>>Seatalk1|$STALK,9C,F1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 337 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:54:59|<<>>Seatalk1|$STALK,84,B6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 332 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:00|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:55:00|<<>>Seatalk1|$STALK,10,01,FF,FE|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -1 ° } +2025-07-24T06:55:00|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:00|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:00|<<>>Seatalk1|$STALK,9C,31,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 326 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:00|<<>>Seatalk1|$STALK,84,B6,1B,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 324 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:01|<<>>Seatalk1|$STALK,85,06,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:55:01|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:55:01|<<H?SfB7iDhFDKwPUoP06,0|$AIVDM,1,1,,B,B39inLP0>H?SfB7iDhFDKwPUoP06,0 +2025-07-24T06:55:01|<<>>Seatalk1|$STALK,9C,31,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 324 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:01|<<>>Seatalk1|$STALK,84,36,16,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 314 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:02|<<OO>>Seatalk1|$STALK,85,16,00,E2,05,06,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.96 NM } +2025-07-24T06:55:02|<<>>Seatalk1|$STALK,10,01,FF,F8|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -4 ° } +2025-07-24T06:55:02|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:02|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:02|<<>>Seatalk1|$STALK,9C,31,0C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 294 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:02|<<>>Seatalk1|$STALK,84,F6,03,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 277 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:03|<<>>Seatalk1|$STALK,85,16,00,E2,F5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.95 NM } +2025-07-24T06:55:03|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:55:03|<<>>Seatalk1|$STALK,9C,61,29,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 263 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:03|<<F@0?v00H2=,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v00H2=,0 +2025-07-24T06:55:03|<<>>Seatalk1|$STALK,84,A6,23,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 250 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:04|<<>>Seatalk1|$STALK,85,16,00,E2,F5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.95 NM } +2025-07-24T06:55:04|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:55:04|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:04|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:04|<<>>Seatalk1|$STALK,9C,A1,21,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 246 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:04|<<>>Seatalk1|$STALK,86,01,06,F9|Keystroke { CommandByte = 134, ExpectedLength = 4, Source = 0, KeyCode = 0x06, Buttons = MinusTen } +2025-07-24T06:55:05|<<>>Seatalk1|$STALK,84,E6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 245 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:05|<<>>Seatalk1|$STALK,85,16,00,E2,F5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.95 NM } +2025-07-24T06:55:05|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:55:05|<<>>Seatalk1|$STALK,86,01,06,F9|Keystroke { CommandByte = 134, ExpectedLength = 4, Source = 0, KeyCode = 0x06, Buttons = MinusTen } +2025-07-24T06:55:05|<<>>Seatalk1|$STALK,9C,A1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:05|<<@003Pv9nhNwmEElPR80@3T,0|$AIVDM,1,1,,B,13@pD>@003Pv9nhNwmEElPR80@3T,0 +2025-07-24T06:55:06|<<>>Seatalk1|$STALK,84,26,21,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 246 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:06|<<>>Seatalk1|$STALK,85,16,00,E2,F5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.95 NM } +2025-07-24T06:55:06|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:55:06|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:06|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:06|<<>>Seatalk1|$STALK,9C,A1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:06|<<G>O;6vEG>O;6vE>>Seatalk1|$STALK,84,A6,20,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 244 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:07|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:07|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:55:07|<<20Sd,0|$AIVDM,1,1,,B,139Q2bPP00Ptn;:O25wf4?v>20Sd,0 +2025-07-24T06:55:07|<<>>Seatalk1|$STALK,9C,A1,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:07|<<@0@4Q,0|$AIVDM,1,1,,A,13@orC0P3F0vQCdO;sAq3W>@0@4Q,0 +2025-07-24T06:55:07|<<0D0u,0|$AIVDM,1,1,,B,139vIM002uPwPrbO2:oBN1v>0D0u,0 +2025-07-24T06:55:08|<<>>Seatalk1|$STALK,84,E6,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:08|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:08|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:55:08|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:08|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:08|<<O=LFUnlfB04kL,0|$AIVDM,1,1,,A,13ku;qh01D0vtU>O=LFUnlfB04kL,0 +2025-07-24T06:55:08|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:08|<<>>Seatalk1|$STALK,84,26,1F,00,00,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 0 °, RudderPosition = 0 °, AutopilotStatus = Standby, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:09|<<O;j5ecbv@0001,0|$AIVDM,1,1,,B,338G;V002:Q0Q0>O;j5ecbv@0001,0 +2025-07-24T06:55:09|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:09|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:55:09|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:09|<<>>Seatalk1|$STALK,86,01,01,FE|Keystroke { CommandByte = 134, ExpectedLength = 4, Source = 0, KeyCode = 0x01, Buttons = Auto } +2025-07-24T06:55:09|<<>>Seatalk1|$STALK,84,66,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:09|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:10|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:55:10|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:10|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:10|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:10|<<>>Seatalk1|$STALK,84,66,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:10|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:11|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:55:11|<<>>Seatalk1|$STALK,9C,A1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:11|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:11|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:12|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:55:12|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:12|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:12|<<>>Seatalk1|$STALK,9C,61,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 241 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:12|<<>>Seatalk1|$STALK,84,26,9E,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 240 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:12|<<fPP00Pvb=nO79u@0?vK2<0Q,0|$AIVDM,1,1,,B,139T>fPP00Pvb=nO79u@0?vK2<0Q,0 +2025-07-24T06:55:13|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:13|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:55:13|<<>>Seatalk1|$STALK,9C,21,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 240 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:13|<<>>Seatalk1|$STALK,84,A6,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:13|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:14|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:55:14|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:14|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:14|<<>>Seatalk1|$STALK,9C,21,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 240 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:14|<<>>Seatalk1|$STALK,84,66,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 239 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:14|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:15|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:15|<<>>Seatalk1|$STALK,9C,61,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 239 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:15|<<,0|$AIVDM,1,1,,B,13:EQR001C0vD`FO:pjJm`TP089>,0 +2025-07-24T06:55:15|<<>>Seatalk1|$STALK,84,66,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 239 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:15|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:16|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:55:16|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:16|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:16|<<>>Seatalk1|$STALK,9C,21,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:16|<<@003Pv9o2NwmC5gPTN00R?,0|$AIVDM,1,1,,A,13@pD>@003Pv9o2NwmC5gPTN00R?,0 +2025-07-24T06:55:16|<<>>Seatalk1|$STALK,84,E6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 237 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:16|<<P00:PwauBOC74l1c4H089v,0|$AIVDM,1,1,,B,13@pD>P00:PwauBOC74l1c4H089v,0 +2025-07-24T06:55:17|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:17|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:55:17|<<>>Seatalk1|$STALK,9C,61,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 239 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:17|<<>>Seatalk1|$STALK,84,A6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 236 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:17|<<,0|$AIVDM,1,1,,B,13ku;qh01E0vtc6O=KWEo4fT0<2>,0 +2025-07-24T06:55:18|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:18|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:55:18|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:18|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:55:18|<<>>Seatalk1|$STALK,9C,21,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:18|<<>>Seatalk1|$STALK,84,E6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 237 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:18|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:19|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:19|<<>>Seatalk1|$STALK,9C,E1,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:19|<<>>Seatalk1|$STALK,84,66,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 237 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:19|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:20|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:55:20|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:20|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:55:20|<<>>Seatalk1|$STALK,9C,21,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 236 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:20|<<>>Seatalk1|$STALK,84,A6,9B,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 234 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:20|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:21|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:55:21|<<>>Seatalk1|$STALK,9C,E1,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 235 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:21|<<>>Seatalk1|$STALK,84,66,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 237 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:21|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:22|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:22|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:22|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:55:22|<<>>Seatalk1|$STALK,9C,21,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 236 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:22|<<>>Seatalk1|$STALK,84,26,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 236 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:22|<<>>Seatalk1|$STALK,85,16,00,E2,E5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.94 NM } +2025-07-24T06:55:23|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:23|<<>>Seatalk1|$STALK,9C,61,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:23|<<>>Seatalk1|$STALK,84,A6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 236 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:23|<<F@0?vb0H=t,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?vb0H=t,0 +2025-07-24T06:55:23|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:24|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:55:24|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:24|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:55:24|<<>>Seatalk1|$STALK,9C,E1,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:24|<<>>Seatalk1|$STALK,84,E6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 237 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:24|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:25|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:55:25|<<>>Seatalk1|$STALK,9C,E1,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:25|<<O4uVKo9Rl0<2b,0|$AIVDM,1,1,,A,1815A9h02210?K>O4uVKo9Rl0<2b,0 +2025-07-24T06:55:25|<<>>Seatalk1|$STALK,84,A6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 236 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:25|<<4?vlR<0S,0|$AIVDM,1,1,,A,139pin0P00PvbBFO79c>4?vlR<0S,0 +2025-07-24T06:55:26|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:26|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:55:26|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:26|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:26|<<>>Seatalk1|$STALK,9C,61,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:26|<<l1uSus1LHk:20lPv3>222222222222220V2@81540004ThDlk,0|$AIVDM,2,1,2,A,53@oP>l1uSus1LHk:20lPv3>222222222222220V2@81540004ThDlk,0 +2025-07-24T06:55:26|<<n06BC,0|$AIVDM,1,1,,B,33@orC0P3F0vPW@O;pcq3o>n06BC,0 +2025-07-24T06:55:26|<<>>Seatalk1|$STALK,84,A6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 236 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:26|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:27|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:55:27|<<>>Seatalk1|$STALK,9C,21,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:27|<<G8O;6vLugvn0@@:,0|$AIVDM,1,1,,B,13:iFj3P01Pv>G8O;6vLugvn0@@:,0 +2025-07-24T06:55:27|<<>>Seatalk1|$STALK,84,A6,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:27|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:28|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:55:28|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:28|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:28|<<>>Seatalk1|$STALK,9C,61,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 239 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:28|<<>>Seatalk1|$STALK,84,A6,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:28|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:29|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:55:29|<<>>Seatalk1|$STALK,9C,21,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:29|<<>>Seatalk1|$STALK,84,26,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:29|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:30|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:30|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:30|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:55:30|<<>>Seatalk1|$STALK,9C,E1,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:30|<<>>Seatalk1|$STALK,84,26,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:30|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:31|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:55:31|<<>>Seatalk1|$STALK,9C,21,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:31|<<>>Seatalk1|$STALK,84,26,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:31|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:32|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:55:32|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:32|<<>>Seatalk1|$STALK,20,81,1A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 665.6 kn, Forwarded = True } +2025-07-24T06:55:32|<<>>Seatalk1|$STALK,9C,61,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 239 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:32|<<>>Seatalk1|$STALK,84,A6,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:32|<<fPP00Pvb=jO79u00?w32HCH,0|$AIVDM,1,1,,B,139T>fPP00Pvb=jO79u00?w32HCH,0 +2025-07-24T06:55:33|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:33|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:55:33|<<>>Seatalk1|$STALK,9C,A1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:33|<<HU000PvnKfNvUQh3k300DWb,0|$AIVDM,1,1,,B,33:4>HU000PvnKfNvUQh3k300DWb,0 +2025-07-24T06:55:33|<<>>Seatalk1|$STALK,84,E6,9C,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 237 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:33|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:34|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:55:34|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:34|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:34|<<>>Seatalk1|$STALK,9C,21,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:34|<<@003Pv9oPNwm?EgPW008D@,0|$AIVDM,1,1,,A,13@pD>@003Pv9oPNwm?EgPW008D@,0 +2025-07-24T06:55:34|<<>>Seatalk1|$STALK,84,66,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 239 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:34|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:35|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:55:35|<<>>Seatalk1|$STALK,9C,61,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 239 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:35|<<94000>lmjCS,0|$AIVDM,2,1,5,B,538G;V829WdH?@iK:20L4hThEE=b22222222220t?pG>94000>lmjCS,0 +2025-07-24T06:55:35|<<>>Seatalk1|$STALK,84,66,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 239 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:35|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:36|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:55:36|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:36|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:36|<<>>Seatalk1|$STALK,9C,E1,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:36|<<>>Seatalk1|$STALK,84,A6,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:36|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:37|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:55:37|<<>>Seatalk1|$STALK,9C,E1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 239 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:37|<<>>Seatalk1|$STALK,84,E6,9D,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 239 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:37|<<>>Seatalk1|$STALK,85,16,00,6A,D6,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 231 °, BearingIsTrue = True, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:38|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:38|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:38|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:38|<<>>Seatalk1|$STALK,9C,A1,1D,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 238 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:38|<<04kL,0|$AIVDM,1,1,,B,13ku;qh01E0vtpfO=Irmolg>04kL,0 +2025-07-24T06:55:38|<<>>Seatalk1|$STALK,84,26,9E,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 240 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:38|<<>>Seatalk1|$STALK,85,16,00,E2,D5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:39|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:55:39|<<>>Seatalk1|$STALK,9C,A1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 240 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:39|<<>>Seatalk1|$STALK,84,E6,9E,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 241 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:39|<<0<0o,0|$AIVDM,1,1,,A,13KKDCP001Pv<0<0o,0 +2025-07-24T06:55:39|<<>>Seatalk1|$STALK,85,16,00,E2,D5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:40|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:55:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:40|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:40|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:40|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:40|<<>>Seatalk1|$STALK,85,16,00,E2,D5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:41|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:55:41|<<04kL,0|$AIVDM,1,1,,B,139UEUSP1J0uV8:O1353R?w>04kL,0 +2025-07-24T06:55:41|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:41|<<pOcfrevJOwt:3T,0|$AIVDM,1,1,,B,91b77pOcfrevJOwt:3T,0 +2025-07-24T06:55:41|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:41|<<>>Seatalk1|$STALK,85,16,00,E2,D5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.93 NM } +2025-07-24T06:55:42|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:42|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:42|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:42|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:42|<<fPP00Pvb=hO79u@0?wE28Hk,0|$AIVDM,1,1,,A,139T>fPP00Pvb=hO79u@0?wE28Hk,0 +2025-07-24T06:55:42|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:42|<<>>Seatalk1|$STALK,85,16,00,E2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:43|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:43|<<>>Seatalk1|$STALK,9C,A1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:43|<<>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:43|<<>>Seatalk1|$STALK,85,16,00,E2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:44|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:55:44|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:44|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:44|<<F@0?wB00Rf,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?wB00Rf,0 +2025-07-24T06:55:44|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:44|<<tHO4w5so9SJ0<2b,0|$AIVDM,1,1,,A,1815A9h02210>tHO4w5so9SJ0<2b,0 +2025-07-24T06:55:44|<<>>Seatalk1|$STALK,84,26,A0,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 244 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:44|<<>>Seatalk1|$STALK,85,16,00,E2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:45|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:55:45|<<>>Seatalk1|$STALK,9C,E1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:45|<<UCL00Rm,0|$AIVDM,1,1,,B,15ABS400010wWS@O;:pk>UCL00Rm,0 +2025-07-24T06:55:45|<<>>Seatalk1|$STALK,84,E6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:45|<<>>Seatalk1|$STALK,85,16,00,E2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:46|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:55:46|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:46|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:46|<<>>Seatalk1|$STALK,9C,E1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:46|<<>>Seatalk1|$STALK,84,E6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:46|<<>>Seatalk1|$STALK,85,16,00,E2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:47|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:55:47|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:47|<<>>Seatalk1|$STALK,84,66,A0,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 245 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:47|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:48|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:55:48|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:48|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:48|<<>>Seatalk1|$STALK,9C,61,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 245 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:48|<<,0|$AIVDM,1,1,,A,13ku;qh01E0vtw6O=I7Up4gR0<2>,0 +2025-07-24T06:55:48|<<>>Seatalk1|$STALK,84,66,A0,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 245 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:48|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:49|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:55:49|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:49|<<>>Seatalk1|$STALK,84,26,A0,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 244 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:49|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:50|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:55:50|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:50|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:50|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:50|<<>>Seatalk1|$STALK,84,E6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:50|<<kBJiwT2<0t,0|$AIVDM,1,1,,A,139vIM002tPwRV6O2>kBJiwT2<0t,0 +2025-07-24T06:55:50|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:51|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:55:51|<<>>Seatalk1|$STALK,9C,E1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:51|<<>>Seatalk1|$STALK,84,E6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:51|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:52|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:52|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:52|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:52|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:52|<<fPP00Pvb=bO79v00?wa20S;,0|$AIVDM,1,1,,B,139T>fPP00Pvb=bO79v00?wa20S;,0 +2025-07-24T06:55:52|<<>>Seatalk1|$STALK,84,66,A0,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 245 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:52|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:53|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:55:53|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:53|<<>>Seatalk1|$STALK,84,26,A0,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 244 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:53|<<F@0?wV0@OW,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?wV0@OW,0 +2025-07-24T06:55:53|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:54|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:54|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:54|<<>>Seatalk1|$STALK,20,81,1B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 691.2 kn, Forwarded = True } +2025-07-24T06:55:54|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:54|<<>>Seatalk1|$STALK,84,26,A0,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 244 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:54|<<CBO;6t6iPGf0<24,0|$AIVDM,1,1,,A,13:EIf00000v>CBO;6t6iPGf0<24,0 +2025-07-24T06:55:54|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:55|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:55:55|<<>>Seatalk1|$STALK,9C,E1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:55:55|<<4?wfR0SO,0|$AIVDM,1,1,,B,139pin0P00PvbBfO79g>4?wfR0SO,0 +2025-07-24T06:55:55|<<O;lDq4WAh08PT,0|$AIVDM,1,1,,A,13@orC003G0vOL>O;lDq4WAh08PT,0 +2025-07-24T06:55:55|<<bVO4wu;nqSh04kL,0|$AIVDM,1,1,,B,1815A9h02210>bVO4wu;nqSh04kL,0 +2025-07-24T06:55:55|<<>>Seatalk1|$STALK,84,E6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:55|<<P00:Pwb2fOC6uD4;3V00S@,0|$AIVDM,1,1,,B,13@pD>P00:Pwb2fOC6uD4;3V00S@,0 +2025-07-24T06:55:56|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:56|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:55:56|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:55:56|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:55:56|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:56|<<>>Seatalk1|$STALK,84,66,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:56|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:57|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:55:57|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:57|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:55:57|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:58|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:55:58|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:55:58|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:55:58|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:58|<<11>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:58|<<>>Seatalk1|$STALK,85,16,00,C2,C5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.92 NM } +2025-07-24T06:55:59|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:55:59|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:55:59|<<>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:55:59|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:00|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:56:00|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:00|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:00|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:00|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:00|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:01|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:56:01|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:01|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:01|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:02|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:56:02|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:02|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:02|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:02|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:02|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:03|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:56:03|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:03|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:03|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:04|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:56:04|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:04|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:04|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:04|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:04|<<JLO50h;o9R:0830,0|$AIVDM,1,1,,A,1815A9h02210>JLO50h;o9R:0830,0 +2025-07-24T06:56:05|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:05|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:56:05|<<>>Seatalk1|$STALK,9C,E1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 241 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:05|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:05|<<Nn3Tn800t@,0|$AIVDM,1,1,,B,339NTv0P0o0u@iHO0>Nn3Tn800t@,0 +2025-07-24T06:56:06|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:06|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:56:06|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:06|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:06|<<>>Seatalk1|$STALK,9C,E1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 241 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:06|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:06|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:07|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:56:07|<<GDO;6uRBgv>04kP,0|$AIVDM,1,1,,B,13:iFj3P00Pv>GDO;6uRBgv>04kP,0 +2025-07-24T06:56:07|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:07|<<0000,0|$AIVDM,1,1,,B,339O=5PP380vHAdO:t7s:Hj>0000,0 +2025-07-24T06:56:07|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:07|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:08|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:56:08|<<4?v@24kP,0|$AIVDM,1,1,,A,139SHt?P00PvOj`O6L:>4?v@24kP,0 +2025-07-24T06:56:08|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:08|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:08|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:08|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:08|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:09|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:56:09|<<>>Seatalk1|$STALK,9C,E1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 241 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:09|<<44400033EBlP,0|$AIVDM,2,1,8,B,53@orC42DjE8uM4s:20lPv36222222222222220`1`>44400033EBlP,0 +2025-07-24T06:56:09|<<LMks4B011P,0|$AIVDM,1,1,,A,33`lQb0P110vrIpNw>LMks4B011P,0 +2025-07-24T06:56:09|<<>>Seatalk1|$STALK,84,66,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:09|<<4?vB2CwJ,0|$AIVDM,1,1,,A,339LK05P00PvR0bNvp2>4?vB2CwJ,0 +2025-07-24T06:56:10|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:10|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:56:10|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:10|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:10|<<AF64v@00qQ,0|$AIVDM,1,1,,A,339NTv0P0o0u@jdO0>AF64v@00qQ,0 +2025-07-24T06:56:10|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:10|<<PWQ3wU5kP06,0|$AIVDM,1,1,,A,B39cMA0000?b;jWi>PWQ3wU5kP06,0 +2025-07-24T06:56:10|<<>>Seatalk1|$STALK,84,66,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:10|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:11|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:56:11|<<>>Seatalk1|$STALK,9C,E1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 241 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:11|<<>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:11|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:12|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:56:12|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:12|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:12|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:12|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:12|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:13|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:56:13|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:13|<<hP2a10APbOHNKev04F01k1,0|$AIVDM,1,1,,B,33@pP>hP2a10APbOHNKev04F01k1,0 +2025-07-24T06:56:13|<<L0@7s,0|$AIVDM,1,1,,A,15ABS400020wWT0O;:s3:E>L0@7s,0 +2025-07-24T06:56:13|<<L0L1T,0|$AIVDM,1,1,,B,13@orC0P3G0vNefO;im987>L0L1T,0 +2025-07-24T06:56:13|<<>>Seatalk1|$STALK,84,E6,9E,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 241 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:13|<<K04kP,0|$AIVDM,1,1,,B,13@pVE001B0wPqlO;IshA@>K04kP,0 +2025-07-24T06:56:13|<<>>Seatalk1|$STALK,85,16,00,C2,B5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.91 NM } +2025-07-24T06:56:14|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:56:14|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:14|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:14|<<>>Seatalk1|$STALK,9C,E1,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 241 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:14|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:14|<<F@0?vH0@8k,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vH0@8k,0 +2025-07-24T06:56:14|<<:>O51RKnqRN00RP,0|$AIVDM,1,1,,B,1815A9h02210>:>O51RKnqRN00RP,0 +2025-07-24T06:56:15|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:15|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:56:15|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:15|<<>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:15|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:16|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:56:16|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:16|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:16|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:16|<<u=ss6P01vP,0|$AIVDM,1,1,,A,33`lQb0P110vrIJNw>u=ss6P01vP,0 +2025-07-24T06:56:16|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:16|<<P009Pwb5fOC6pl6c2H04kP,0|$AIVDM,1,1,,B,13@pD>P009Pwb5fOC6pl6c2H04kP,0 +2025-07-24T06:56:17|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:17|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:56:17|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:17|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:17|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:18|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:56:18|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:18|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:18|<<>>Seatalk1|$STALK,9C,21,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:18|<<>>Seatalk1|$STALK,84,26,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:18|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:19|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:56:19|<<>>Seatalk1|$STALK,9C,E1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:19|<<>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:19|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:20|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:56:20|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:20|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:20|<<>>Seatalk1|$STALK,9C,E1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:20|<<>>Seatalk1|$STALK,84,E6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:20|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:21|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:56:21|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:21|<<>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:21|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,86,01,03,FC|Keystroke { CommandByte = 134, ExpectedLength = 4, Source = 0, KeyCode = 0x03, Buttons = MinusTen, PlusTen } +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,84,66,9F,7D,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:22|<<fPP00Pvb=DO79vP0?ve28=9,0|$AIVDM,1,1,,A,139T>fPP00Pvb=DO79vP0?ve28=9,0 +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,9C,A1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:22|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:23|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:56:23|<<>>Seatalk1|$STALK,84,A6,9F,7D,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:23|<<g0<2d,0|$AIVDM,1,1,,A,13@pVE001B0wPsJO;JlhAh>g0<2d,0 +2025-07-24T06:56:23|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:23|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:24|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:56:24|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:24|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:24|<<>>Seatalk1|$STALK,84,66,9F,7D,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:24|<<@002Pv9p`Nwm85`0Vf08>G,0|$AIVDM,1,1,,B,13@pD>@002Pv9p`Nwm85`0Vf08>G,0 +2025-07-24T06:56:24|<<>>Seatalk1|$STALK,9C,21,20,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 244 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:24|<<rW`Lj0@>b,0|$AIVDM,1,1,,A,13:EQR001C0vCCDO:q>rW`Lj0@>b,0 +2025-07-24T06:56:24|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:25|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:56:25|<<>>Seatalk1|$STALK,84,66,A0,7D,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 245 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:25|<<>>Seatalk1|$STALK,9C,A1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:25|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,84,A6,9F,7D,02,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 242.5 °, RudderPosition = 0 °, AutopilotStatus = Auto, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,83,07,06,00,00,00,00,00,00,00|CourseComputerStatus { CommandByte = 131, ExpectedLength = 10, Warnings = DriveFailure, CourseChangeToPort } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,9C,A1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,86,01,03,FC|Keystroke { CommandByte = 134, ExpectedLength = 4, Source = 0, KeyCode = 0x03, Buttons = MinusTen, PlusTen } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,84,A6,9F,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:26|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:27|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:56:27|<<>>Seatalk1|$STALK,9C,A1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 242 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:27|<<GJO;6uRBgvn0<0w,0|$AIVDM,1,1,,B,13:iFj3P00Pv>GJO;6uRBgvn0<0w,0 +2025-07-24T06:56:27|<<>>Seatalk1|$STALK,84,A6,9F,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 242 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:27|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:28|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:56:28|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:28|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:28|<<>>Seatalk1|$STALK,9C,E1,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:28|<<>>Seatalk1|$STALK,84,66,9F,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 243 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:28|<<O=EsmpDfr08A1,0|$AIVDM,1,1,,A,13ku;qh01E0vuH>O=EsmpDfr08A1,0 +2025-07-24T06:56:28|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:29|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:56:29|<<>>Seatalk1|$STALK,9C,61,1F,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 243 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:29|<<>>Seatalk1|$STALK,84,E6,9E,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 241 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:29|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:30|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:56:30|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:30|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:30|<<>>Seatalk1|$STALK,9C,21,1E,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 240 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:30|<<>>Seatalk1|$STALK,84,26,9D,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 238 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:30|<<>>Seatalk1|$STALK,85,16,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:31|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:56:31|<<>>Seatalk1|$STALK,9C,E1,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 235 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:31|<<>>Seatalk1|$STALK,84,26,9B,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 234 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:31|<<H?SNGWiCwJC?wgUoP06,0|$AIVDM,1,1,,A,B39inLP0>H?SNGWiCwJC?wgUoP06,0 +2025-07-24T06:56:32|<<>>Seatalk1|$STALK,85,26,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:32|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:56:32|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:32|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:32|<<>>Seatalk1|$STALK,9C,61,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 233 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:32|<<>>Seatalk1|$STALK,84,A6,99,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:32|<<>>Seatalk1|$STALK,85,26,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:33|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:56:33|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:33|<<F@0?vt08Cc,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vt08Cc,0 +2025-07-24T06:56:33|<<CfO;6wFiPG404kP,0|$AIVDM,1,1,,A,13:EIf00000v>CfO;6wFiPG404kP,0 +2025-07-24T06:56:33|<<>>Seatalk1|$STALK,84,26,99,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:33|<<>>Seatalk1|$STALK,85,26,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:34|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:56:34|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:34|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:56:34|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:34|<<@002Pv9ppNwm6U`0W204kP,0|$AIVDM,1,1,,A,13@pD>@002Pv9ppNwm6U`0W204kP,0 +2025-07-24T06:56:34|<<>>Seatalk1|$STALK,84,A6,97,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:34|<<q1400d1,0|$AIVDM,1,1,,B,339O=5PP3;0vG38O:u`c>q1400d1,0 +2025-07-24T06:56:35|<<>>Seatalk1|$STALK,85,26,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:35|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:56:35|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:35|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:35|<<>>Seatalk1|$STALK,85,26,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:36|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:56:36|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:36|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:56:36|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:36|<<>>Seatalk1|$STALK,84,E6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:36|<<>>Seatalk1|$STALK,85,26,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:37|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:56:37|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:37|<<>>Seatalk1|$STALK,84,A6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:37|<<>>Seatalk1|$STALK,85,26,00,C2,A5,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.9 NM } +2025-07-24T06:56:38|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:56:38|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:38|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:56:38|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:38|<<21DpTtr1@u05b222222220l2p:664000=11CEB,0|$AIVDM,2,1,0,B,53:EQR42?QugD921DpTtr1@u05b222222220l2p:664000=11CEB,0 +2025-07-24T06:56:38|<<>>Seatalk1|$STALK,84,66,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:38|<<>>Seatalk1|$STALK,85,26,00,4A,96,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.89 NM } +2025-07-24T06:56:39|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:56:39|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:39|<<4?w>2<0g,0|$AIVDM,1,1,,B,139SHt?P00PvOjhO6L:>4?w>2<0g,0 +2025-07-24T06:56:39|<<>>Seatalk1|$STALK,84,66,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:39|<<>>Seatalk1|$STALK,85,26,00,4A,96,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.89 NM } +2025-07-24T06:56:40|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:56:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:40|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:56:40|<<>>Seatalk1|$STALK,9C,21,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:40|<<>>Seatalk1|$STALK,84,A6,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:40|<<>>Seatalk1|$STALK,85,26,00,4A,96,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.02 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.89 NM } +2025-07-24T06:56:41|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:56:41|<<00RK,0|$AIVDM,1,1,,B,139UEUSP1J0uWH2O139COOw>00RK,0 +2025-07-24T06:56:41|<<>>Seatalk1|$STALK,9C,E1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:41|<<>>Seatalk1|$STALK,84,26,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:41|<<>>Seatalk1|$STALK,85,16,00,4A,86,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:42|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:56:42|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:42|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:42|<<fPP00Pvb=BO79vP0?wE24kP,0|$AIVDM,1,1,,A,139T>fPP00Pvb=BO79vP0?wE24kP,0 +2025-07-24T06:56:42|<<>>Seatalk1|$STALK,9C,A1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:42|<<0R=W9B0DsJ,0|$AIVDM,1,1,,A,33cPHl50000v<3:O;>0R=W9B0DsJ,0 +2025-07-24T06:56:42|<<>>Seatalk1|$STALK,84,A6,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:42|<<>>Seatalk1|$STALK,85,16,00,4A,86,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 230 °, BearingIsTrue = True, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:43|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:56:43|<<>>Seatalk1|$STALK,9C,21,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:43|<<F@0?w@0HIP,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?w@0HIP,0 +2025-07-24T06:56:43|<<>>Seatalk1|$STALK,84,E6,92,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 217 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:43|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:44|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:56:44|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:44|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:44|<<>>Seatalk1|$STALK,9C,E1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 217 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:44|<<@002Pv9q4Nwm5UbPWF0L0M,0|$AIVDM,1,1,,B,13@pD>@002Pv9q4Nwm5UbPWF0L0M,0 +2025-07-24T06:56:44|<<>>Seatalk1|$STALK,84,E6,92,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 217 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:44|<<hP2k10Am4OHTC@c0KF01=0,0|$AIVDM,1,1,,B,33@pP>hP2k10Am4OHTC@c0KF01=0,0 +2025-07-24T06:56:45|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:45|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:56:45|<<>>Seatalk1|$STALK,9C,21,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:45|<<>>Seatalk1|$STALK,84,26,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:45|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:46|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:56:46|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:46|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:46|<<>>Seatalk1|$STALK,9C,A1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:46|<<>>Seatalk1|$STALK,84,66,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 219 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:46|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:47|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:56:47|<<>>Seatalk1|$STALK,9C,E1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 217 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:47|<<O:va;Hq;N00UA,0|$AIVDM,1,1,,B,339O=5PP3<0vFN>O:va;Hq;N00UA,0 +2025-07-24T06:56:47|<<>>Seatalk1|$STALK,84,E6,92,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 217 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:47|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:48|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:56:48|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:48|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:48|<<>>Seatalk1|$STALK,9C,61,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:48|<<>>Seatalk1|$STALK,84,66,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 219 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:48|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:49|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:56:49|<<,0|$AIVDM,1,1,,B,13KKDCP001Pv<,0 +2025-07-24T06:56:49|<<>>Seatalk1|$STALK,9C,61,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:49|<<>>Seatalk1|$STALK,84,26,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:49|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:50|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:56:50|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:50|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:50|<<>>Seatalk1|$STALK,9C,A1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:50|<<>>Seatalk1|$STALK,84,66,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 219 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:50|<<O2DC2O21T28Mt,0|$AIVDM,1,1,,A,139vIM002uPwTt>O2DC2O21T28Mt,0 +2025-07-24T06:56:51|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:51|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:56:51|<<>>Seatalk1|$STALK,9C,21,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:51|<<kMvkMv>>Seatalk1|$STALK,84,26,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:51|<<00004;llqo00`421w,0|$AIVDM,1,1,,B,H39EMR4TH9>00004;llqo00`421w,0 +2025-07-24T06:56:52|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:52|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:56:52|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:56:52|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:52|<<>>Seatalk1|$STALK,9C,21,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:52|<<fPP00Pvb=BO79vP0?wa2D0S,0|$AIVDM,1,1,,B,139T>fPP00Pvb=BO79vP0?wa2D0S,0 +2025-07-24T06:56:52|<<>>Seatalk1|$STALK,84,26,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:52|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:53|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:56:53|<<>>Seatalk1|$STALK,9C,21,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:53|<<>>Seatalk1|$STALK,84,66,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 219 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:53|<<F@0?wT0<15,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?wT0<15,0 +2025-07-24T06:56:53|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:54|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:56:54|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:54|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:54|<<>>Seatalk1|$STALK,9C,61,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:54|<<>>Seatalk1|$STALK,84,A6,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:54|<<>>Seatalk1|$STALK,85,16,00,C2,85,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.88 NM } +2025-07-24T06:56:55|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:56:55|<<>>Seatalk1|$STALK,9C,61,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:55|<<>>Seatalk1|$STALK,84,26,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:55|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:56:56|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:56:56|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:56:56|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:56|<<>>Seatalk1|$STALK,9C,E1,12,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 217 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:56|<<>>Seatalk1|$STALK,84,26,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:56|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:56:57|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:56:57|<<>>Seatalk1|$STALK,9C,A1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 218 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:56:57|<<>>Seatalk1|$STALK,84,A6,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:57|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:56:58|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:56:58|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:56:58|<<>>Seatalk1|$STALK,20,81,1C,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 716.8 kn, Forwarded = True } +2025-07-24T06:56:58|<<>>Seatalk1|$STALK,9C,21,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:58|<<4?wl28RC,0|$AIVDM,1,1,,B,139SHt?P00PvOj4?wl28RC,0 +2025-07-24T06:56:58|<<>>Seatalk1|$STALK,84,A6,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 218 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:56:58|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:56:59|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:56:59|<<>>Seatalk1|$STALK,9C,61,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:56:59|<<>>Seatalk1|$STALK,84,66,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 219 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:56:59|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:00|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:00|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:00|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:57:00|<<>>Seatalk1|$STALK,9C,E1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:00|<<>>Seatalk1|$STALK,84,E6,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 219 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:00|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:01|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:57:01|<<>>Seatalk1|$STALK,9C,E1,13,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 219 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:01|<<>>Seatalk1|$STALK,84,E6,93,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 219 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:01|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:02|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:02|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:02|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:57:02|<<>>Seatalk1|$STALK,9C,21,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:02|<<fPP00Pvb=HO79vh0?v5281e,0|$AIVDM,1,1,,A,139T>fPP00Pvb=HO79vh0?v5281e,0 +2025-07-24T06:57:02|<<>>Seatalk1|$STALK,84,26,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:02|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:03|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:57:03|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:03|<<F@0?v20@2=,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v20@2=,0 +2025-07-24T06:57:03|<<>>Seatalk1|$STALK,84,26,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:03|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:04|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:57:04|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:04|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:57:04|<<22222222222221S1P<3340003lm4PC,0|$AIVDM,2,1,4,A,539UEUP00000@822222222222221S1P<3340003lm4PC,0 +2025-07-24T06:57:04|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:04|<<>>Seatalk1|$STALK,84,A6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:04|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:05|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:57:05|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:05|<<>>Seatalk1|$STALK,84,66,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:05|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:06|<<>>Seatalk1|$STALK,10,01,00,28|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 20 ° } +2025-07-24T06:57:06|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:06|<<>>Seatalk1|$STALK,20,81,1D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 742.4 kn, Forwarded = True } +2025-07-24T06:57:06|<<>>Seatalk1|$STALK,9C,E1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:06|<<>>Seatalk1|$STALK,84,66,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:06|<<GJO;6u3QOv<00Rm,0|$AIVDM,1,1,,B,13:iFj3P01Pv>GJO;6u3QOv<00Rm,0 +2025-07-24T06:57:07|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:07|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:57:07|<<>>Seatalk1|$STALK,9C,21,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:07|<<R7Ah@01hi,0|$AIVDM,1,1,,B,33@pc=hP2w0vAPbO;2>R7Ah@01hi,0 +2025-07-24T06:57:07|<<>>Seatalk1|$STALK,84,26,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:07|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:08|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:57:08|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:08|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:08|<<>>Seatalk1|$STALK,9C,A1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:08|<<>>Seatalk1|$STALK,84,A6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:08|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:09|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:57:09|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:09|<<0?`uN7k6S0TkwTQh85`,0|$AIVDM,1,1,,A,B3@nfLh0>0?`uN7k6S0TkwTQh85`,0 +2025-07-24T06:57:09|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:09|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:10|<<>>Seatalk1|$STALK,10,01,00,24|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 18 ° } +2025-07-24T06:57:10|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:10|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:10|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:10|<<OO>>Seatalk1|$STALK,84,E6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:10|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:11|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:57:11|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:11|<<>>Seatalk1|$STALK,84,26,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:11|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:12|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:57:12|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:12|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:12|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:12|<<>>Seatalk1|$STALK,84,A6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:12|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:13|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:57:13|<<>>Seatalk1|$STALK,9C,61,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:13|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:13|<<>>Seatalk1|$STALK,85,16,00,C2,75,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.87 NM } +2025-07-24T06:57:14|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:57:14|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:14|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:14|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:14|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:14|<<F@0?vH0<18,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vH0<18,0 +2025-07-24T06:57:14|<<>>Seatalk1|$STALK,85,16,00,C2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:15|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:57:15|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:15|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:15|<<>>Seatalk1|$STALK,85,16,00,C2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:16|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:57:16|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:16|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:16|<<>>Seatalk1|$STALK,9C,E1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:16|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:16|<<,0|$AIVDM,1,1,,A,139Q2bPP00Ptn:RO25wf4?vP2<0>,0 +2025-07-24T06:57:17|<<>>Seatalk1|$STALK,85,16,00,C2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 226 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:17|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:57:17|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:17|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:17|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:18|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:57:18|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:18|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:18|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:18|<<i7jm9mJLwa1l<2@,0|$AIVDM,1,1,,B,B3:4afP07h?a>i7jm9mJLwa1l<2@,0 +2025-07-24T06:57:18|<<>>Seatalk1|$STALK,84,E6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:18|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:19|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:57:19|<<>>Seatalk1|$STALK,9C,E1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 221 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:19|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:19|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:20|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:57:20|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:20|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:20|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:20|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:20|<<ifb0000,0|$AIVDM,1,1,,A,13@pc=h0320vB2RO;3nB>ifb0000,0 +2025-07-24T06:57:20|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:21|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:57:21|<<>>Seatalk1|$STALK,9C,E1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:21|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:21|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:22|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:22|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:22|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:22|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:22|<<Mjs6b00Rs,0|$AIVDM,1,1,,B,139V=f001OPvjDNO1j>Mjs6b00Rs,0 +2025-07-24T06:57:22|<<fPP00Pvb=TO79u00?ve24kT,0|$AIVDM,1,1,,A,139T>fPP00Pvb=TO79u00?ve24kT,0 +2025-07-24T06:57:22|<<>>Seatalk1|$STALK,84,66,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:22|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:23|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:57:23|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:23|<<g08=p,0|$AIVDM,1,1,,A,13@pVE001B0wQ44O;P=hA@>g08=p,0 +2025-07-24T06:57:23|<<F@0?vb0@=t,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?vb0@=t,0 +2025-07-24T06:57:23|<<>>Seatalk1|$STALK,84,66,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:23|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:24|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:57:24|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:24|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:24|<<>>Seatalk1|$STALK,9C,A1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:24|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:24|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:25|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:57:25|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:25|<<O115MLK8h01iP,0|$AIVDM,1,1,,B,33aCdr3P16PvjS>O115MLK8h01iP,0 +2025-07-24T06:57:25|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:25|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:26|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:26|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:26|<<>>Seatalk1|$STALK,20,81,1E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 768 kn, Forwarded = True } +2025-07-24T06:57:26|<<>>Seatalk1|$STALK,9C,A1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:26|<<>>Seatalk1|$STALK,84,66,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:26|<<>>Seatalk1|$STALK,85,16,00,E2,65,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.86 NM } +2025-07-24T06:57:27|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:57:27|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:27|<<GJO;6uS9?vn08@:,0|$AIVDM,1,1,,B,13:iFj3P01Pv>GJO;6uS9?vn08@:,0 +2025-07-24T06:57:27|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:27|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:28|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:57:28|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:28|<<>>Seatalk1|$STALK,20,81,1F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 793.6 kn, Forwarded = True } +2025-07-24T06:57:28|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:28|<<H2G04huTHw:21@E984j22222222222220`10I7540006AmcLH,0|$AIVDM,2,1,8,A,53@pD>H2G04huTHw:21@E984j22222222222220`10I7540006AmcLH,0 +2025-07-24T06:57:28|<<>>Seatalk1|$STALK,84,A6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:28|<<O=A5mqTfr04kT,0|$AIVDM,1,1,,A,13ku;qh01E0vuu>O=A5mqTfr04kT,0 +2025-07-24T06:57:29|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:29|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:57:29|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:29|<<>>Seatalk1|$STALK,84,A6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:29|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:30|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:57:30|<<>>Seatalk1|$STALK,11,00,02|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 2 } +2025-07-24T06:57:30|<<>>Seatalk1|$STALK,20,81,20,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 819.2 kn, Forwarded = True } +2025-07-24T06:57:30|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:30|<<>>Seatalk1|$STALK,84,66,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:30|<<,0|$AIVDM,1,1,,B,13aCdr3P15PvjR4O11LuPK,0 +2025-07-24T06:57:31|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:31|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:57:31|<<H?SD57iCLj@kwgUoP06,0|$AIVDM,1,1,,A,B39inLP0>H?SD57iCLj@kwgUoP06,0 +2025-07-24T06:57:31|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:31|<<>>Seatalk1|$STALK,84,E6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:31|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:32|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:57:32|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:32|<<>>Seatalk1|$STALK,20,81,22,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 870.4 kn, Forwarded = True } +2025-07-24T06:57:32|<<>>Seatalk1|$STALK,9C,A1,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:32|<<>>Seatalk1|$STALK,84,A6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:32|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:33|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:57:33|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:33|<<F@0?vt04kT,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vt04kT,0 +2025-07-24T06:57:33|<<>>Seatalk1|$STALK,84,E6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 221 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:33|<<3EBlP,0|$AIVDM,2,1,0,A,53ku8NH2FPg@=5=J221H:0I8UA`V22222222220l2@;764000>3EBlP,0 +2025-07-24T06:57:34|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:34|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:57:34|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:34|<<>>Seatalk1|$STALK,20,81,23,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 896 kn, Forwarded = True } +2025-07-24T06:57:34|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:34|<<@002Pv9q`NwlwUe0a200T5,0|$AIVDM,1,1,,A,13@pD>@002Pv9q`NwlwUe0a200T5,0 +2025-07-24T06:57:34|<<>>Seatalk1|$STALK,84,66,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:34|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:35|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:35|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:35|<<>>Seatalk1|$STALK,84,66,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:35|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:36|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:57:36|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:36|<<>>Seatalk1|$STALK,20,81,26,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 972.8 kn, Forwarded = True } +2025-07-24T06:57:36|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:36|<<>>Seatalk1|$STALK,84,26,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:36|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:37|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:57:37|<<dO<9LWcFA:0D0i,0|$AIVDM,1,1,,B,139WInUP0W0vK>dO<9LWcFA:0D0i,0 +2025-07-24T06:57:37|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:37|<<0?a2G7k6hpTowjQh<1E,0|$AIVDM,1,1,,B,B3@nfLh0>0?a2G7k6hpTowjQh<1E,0 +2025-07-24T06:57:37|<<GHO;6uS9?w:00R;,0|$AIVDM,1,1,,A,13:iFj3P00Pv>GHO;6uS9?w:00R;,0 +2025-07-24T06:57:37|<<>>Seatalk1|$STALK,84,A6,94,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 220 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:37|<<>>Seatalk1|$STALK,85,16,00,E2,55,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.85 NM } +2025-07-24T06:57:38|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T06:57:38|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:38|<<>>Seatalk1|$STALK,20,81,28,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’024 kn, Forwarded = True } +2025-07-24T06:57:38|<<4?w<28FN,0|$AIVDM,1,1,,A,139Q2bPP00Ptn:DO260>4?w<28FN,0 +2025-07-24T06:57:38|<<>>Seatalk1|$STALK,9C,21,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 222 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:38|<<>>Seatalk1|$STALK,84,A6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 222 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:38|<<O2Hf2OAw<2<0w,0|$AIVDM,1,1,,A,139vIM002uPwVl>O2Hf2OAw<2<0w,0 +2025-07-24T06:57:38|<<>>Seatalk1|$STALK,85,16,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:39|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:39|<<>>Seatalk1|$STALK,9C,E1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:39|<<4?w>28GE,0|$AIVDM,1,1,,B,139SHt?P00PvOjRO6L7>4?w>28GE,0 +2025-07-24T06:57:39|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:39|<<>>Seatalk1|$STALK,85,16,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:40|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:57:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:40|<<>>Seatalk1|$STALK,20,81,29,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’049.6 kn, Forwarded = True } +2025-07-24T06:57:40|<<08GU,0|$AIVDM,1,1,,B,15?det@000PwEljO4u34O0O>08GU,0 +2025-07-24T06:57:40|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:40|<<>>Seatalk1|$STALK,84,E6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:40|<<>>Seatalk1|$STALK,85,16,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0.01 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:41|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:41|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:41|<<>>Seatalk1|$STALK,84,66,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:41|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:42|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:57:42|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:42|<<>>Seatalk1|$STALK,20,81,2A,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’075.2 kn, Forwarded = True } +2025-07-24T06:57:42|<<>>Seatalk1|$STALK,9C,E1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:42|<<>>Seatalk1|$STALK,84,E6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:42|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:43|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:57:43|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:43|<<F@0?w@0D18,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?w@0D18,0 +2025-07-24T06:57:43|<<3s?F0@IU,0|$AIVDM,1,1,,A,13`lQb00140vrG6NwEE>3s?F0@IU,0 +2025-07-24T06:57:43|<<>>Seatalk1|$STALK,84,E6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:43|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:44|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:57:44|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:44|<<>>Seatalk1|$STALK,20,81,2B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’100.8 kn, Forwarded = True } +2025-07-24T06:57:44|<<>>Seatalk1|$STALK,9C,E1,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:44|<<@003Pv9qlNwlvEe0WF0BGe,0|$AIVDM,1,1,,B,33@pD>@003Pv9qlNwlvEe0WF0BGe,0 +2025-07-24T06:57:44|<<BvO;6tniPGJ00Rm,0|$AIVDM,1,1,,B,13:EIf00000v>BvO;6tniPGJ00Rm,0 +2025-07-24T06:57:44|<<>>Seatalk1|$STALK,84,26,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:44|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:45|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:45|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:45|<<4?wJR@Jd,0|$AIVDM,1,1,,A,139pin0P00PvbBhO79a>4?wJR@Jd,0 +2025-07-24T06:57:45|<<GHO;6uS9?wJ04kT,0|$AIVDM,1,1,,B,13:iFj3P00Pv>GHO;6uS9?wJ04kT,0 +2025-07-24T06:57:45|<<>>Seatalk1|$STALK,84,26,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:45|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:46|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:57:46|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:46|<<>>Seatalk1|$STALK,20,81,2B,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’100.8 kn, Forwarded = True } +2025-07-24T06:57:46|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:46|<<>>Seatalk1|$STALK,84,26,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:46|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:47|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:57:47|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:47|<<0vDLrO;1dKCHqN00S1,0|$AIVDM,1,1,,B,339O=5P01>0vDLrO;1dKCHqN00S1,0 +2025-07-24T06:57:47|<<>>Seatalk1|$STALK,84,A6,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:47|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:48|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:57:48|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:48|<<>>Seatalk1|$STALK,20,81,2D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’152 kn, Forwarded = True } +2025-07-24T06:57:48|<<>>Seatalk1|$STALK,9C,E1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:48|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:48|<<>>Seatalk1|$STALK,85,06,00,E2,45,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.84 NM } +2025-07-24T06:57:49|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T06:57:49|<<>>Seatalk1|$STALK,9C,61,15,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 223 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:49|<<>>Seatalk1|$STALK,84,E6,95,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 223 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:49|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:50|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:57:50|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:50|<<>>Seatalk1|$STALK,20,81,2D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’152 kn, Forwarded = True } +2025-07-24T06:57:50|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:50|<<O13:CQwwR00RJ,0|$AIVDM,1,1,,A,139UEUSP1J0u`m>O13:CQwwR00RJ,0 +2025-07-24T06:57:50|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:50|<<O2IlBTB3T24kT,0|$AIVDM,1,1,,A,139vIM002qPwWB>O2IlBTB3T24kT,0 +2025-07-24T06:57:51|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:51|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:57:51|<<>>Seatalk1|$STALK,9C,A1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:51|<<>>Seatalk1|$STALK,84,26,97,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:51|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:52|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:57:52|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:52|<<>>Seatalk1|$STALK,20,81,2D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’152 kn, Forwarded = True } +2025-07-24T06:57:52|<<>>Seatalk1|$STALK,9C,E1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:52|<<fPP00Pvb=TO79u@0?wa2@Nk,0|$AIVDM,1,1,,B,139T>fPP00Pvb=TO79u@0?wa2@Nk,0 +2025-07-24T06:57:52|<<>>Seatalk1|$STALK,84,E6,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:52|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:53|<<>>Seatalk1|$STALK,10,01,FF,FC|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = -2 ° } +2025-07-24T06:57:53|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:53|<<>>Seatalk1|$STALK,84,26,97,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:53|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:54|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:57:54|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:54|<<>>Seatalk1|$STALK,20,81,2D,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’152 kn, Forwarded = True } +2025-07-24T06:57:54|<<>>Seatalk1|$STALK,9C,E1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:54|<<>>Seatalk1|$STALK,84,66,97,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:54|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:55|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:57:55|<<>>Seatalk1|$STALK,9C,A1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:55|<<>>Seatalk1|$STALK,84,A6,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:55|<<GHO;6uS9?wh08Pn,0|$AIVDM,1,1,,A,13:iFj3P00Pv>GHO;6uS9?wh08Pn,0 +2025-07-24T06:57:56|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:56|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:57:56|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:56|<<>>Seatalk1|$STALK,20,81,2E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’177.6 kn, Forwarded = True } +2025-07-24T06:57:56|<<>>Seatalk1|$STALK,9C,21,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:56|<<>>Seatalk1|$STALK,84,E6,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:57:56|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:57|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:57:57|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:57|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:57|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:58|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:57:58|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:57:58|<<>>Seatalk1|$STALK,20,81,2E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’177.6 kn, Forwarded = True } +2025-07-24T06:57:58|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:57:58|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:58|<<9Gwu1h8Ra,0|$AIVDM,1,1,,A,B3prNN@0=h?epdWhqD>9Gwu1h8Ra,0 +2025-07-24T06:57:59|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:57:59|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:57:59|<<Tmq4f00@Rh,0|$AIVDM,1,1,,B,13ku;qh01E0vv@fO=>Tmq4f00@Rh,0 +2025-07-24T06:57:59|<<>>Seatalk1|$STALK,9C,A1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:57:59|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:57:59|<<O13:3S?wl00Sf,0|$AIVDM,1,1,,B,139UEUSP1J0ua1>O13:3S?wl00Sf,0 +2025-07-24T06:57:59|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:58:00|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:58:00|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:00|<<>>Seatalk1|$STALK,20,81,2E,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’177.6 kn, Forwarded = True } +2025-07-24T06:58:00|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:00|<<VO1n>=h;600@0P,0|$AIVDM,1,1,,B,139V=f001OPvj>VO1n>=h;600@0P,0 +2025-07-24T06:58:00|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:00|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:58:01|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:58:01|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:01|<<>>Seatalk1|$STALK,84,26,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:01|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:58:02|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:58:02|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:02|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:02|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:02|<<fPP00Pvb=PO79v00?v524k`,0|$AIVDM,1,1,,A,139T>fPP00Pvb=PO79v00?v524k`,0 +2025-07-24T06:58:02|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:02|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:58:03|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:58:03|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:03|<<>>Seatalk1|$STALK,84,A6,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:03|<<>>Seatalk1|$STALK,85,06,00,E2,35,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.83 NM } +2025-07-24T06:58:04|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:58:04|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:58:04|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:04|<<>>Seatalk1|$STALK,9C,21,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:04|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:04|<<CFO;6vFiPF:07KS,0|$AIVDM,1,1,,B,33:EIf00010v>CFO;6vFiPF:07KS,0 +2025-07-24T06:58:05|<<>>Seatalk1|$STALK,85,06,00,E2,25,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.82 NM } +2025-07-24T06:58:05|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:58:05|<<>>Seatalk1|$STALK,9C,61,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 225 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:05|<<>>Seatalk1|$STALK,84,66,96,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:05|<<>>Seatalk1|$STALK,85,06,00,E2,25,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.82 NM } +2025-07-24T06:58:06|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:58:06|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:06|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:06|<<>>Seatalk1|$STALK,9C,21,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:06|<<G0O;6uc4gv<0D=M,0|$AIVDM,1,1,,B,33:iFj3P01Pv>G0O;6uc4gv<0D=M,0 +2025-07-24T06:58:06|<<>>Seatalk1|$STALK,84,26,97,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:06|<<>>Seatalk1|$STALK,85,06,00,E2,25,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.82 NM } +2025-07-24T06:58:07|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:07|<<O;29KF``>0000,0|$AIVDM,1,1,,B,339O=5PP0j0vD<>O;29KF``>0000,0 +2025-07-24T06:58:07|<<>>Seatalk1|$STALK,9C,21,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:07|<<>>Seatalk1|$STALK,84,26,97,5C,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 226 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:07|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:08|<<@22ii,0|$AIVDM,1,1,,B,33@p94hP0u0wDn4O5:d1Vi>@22ii,0 +2025-07-24T06:58:08|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:08|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:58:08|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:08|<<>>Seatalk1|$STALK,9C,61,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:08|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:08|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:09|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:58:09|<<>>Seatalk1|$STALK,9C,61,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:09|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:09|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:10|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:58:10|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:58:10|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:10|<<>>Seatalk1|$STALK,9C,61,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:10|<<>>Seatalk1|$STALK,84,66,96,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:10|<<4?vD2EVb,0|$AIVDM,1,1,,B,339LK05P00PvR0jNvp2>4?vD2EVb,0 +2025-07-24T06:58:11|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:11|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:11|<<>>Seatalk1|$STALK,9C,A1,16,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 224 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:11|<<>>Seatalk1|$STALK,84,26,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:11|<<1r4@ha>220EHDq@Tr2222222222221@83BBN4000OU0PH8,0|$AIVDM,2,1,3,A,539GH702>1r4@ha>220EHDq@Tr2222222222221@83BBN4000OU0PH8,0 +2025-07-24T06:58:11|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:12|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:58:12|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:58:12|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:12|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:12|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:12|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:13|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:58:13|<<>>Seatalk1|$STALK,9C,61,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:13|<<CBO;6w:thFL0H86,0|$AIVDM,1,1,,A,13:EIf00010v>CBO;6w:thFL0H86,0 +2025-07-24T06:58:13|<<>>Seatalk1|$STALK,84,66,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:13|<<O;9jR>ifL0@8@,0|$AIVDM,1,1,,A,13@pc=h0310vD3>O;9jR>ifL0@8@,0 +2025-07-24T06:58:14|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:14|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:58:14|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:14|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:14|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:14|<<@002Pv9rJNwlqUj0`J04k`,0|$AIVDM,1,1,,A,13@pD>@002Pv9rJNwlqUj0`J04k`,0 +2025-07-24T06:58:14|<<>>Seatalk1|$STALK,84,26,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:14|<<F@0?vF088k,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vF088k,0 +2025-07-24T06:58:15|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:15|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:58:15|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:15|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:15|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:16|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:16|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:16|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T06:58:16|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:16|<<G0O;6uG0O;6u>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:16|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:17|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:58:17|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:17|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:17|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:18|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:18|<<PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0|$AIVDM,2,1,5,A,539EIqP2>PN<@8QT000LtE8lUA`000000000000o3h63640004RhDS4,0 +2025-07-24T06:58:18|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:18|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:18|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:18|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:18|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:19|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:19|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:19|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:19|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:20|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:20|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:20|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:20|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:20|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:20|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:21|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:21|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:21|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:21|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:22|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:58:22|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:22|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:22|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:22|<<fPP00Pvb=dO79uh0?ve20SG,0|$AIVDM,1,1,,A,139T>fPP00Pvb=dO79uh0?ve20SG,0 +2025-07-24T06:58:22|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:22|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:23|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:58:23|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:23|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:23|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:24|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:58:24|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:24|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:24|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:24|<<@002Pv9rdNwloEj0`f00SE,0|$AIVDM,1,1,,B,13@pD>@002Pv9rdNwloEj0`f00SE,0 +2025-07-24T06:58:24|<<CFO;6vD6PBj0D25,0|$AIVDM,1,1,,B,13:EIf00030v>CFO;6vD6PBj0D25,0 +2025-07-24T06:58:24|<<V,0|$AIVDM,1,1,,B,15ABS400020wW`JO;:v2sDtj0H>V,0 +2025-07-24T06:58:24|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:24|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:25|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:58:25|<<>>Seatalk1|$STALK,9C,61,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:25|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:25|<<m0020vM?fOm0020vM?fO4?vlR0S9,0|$AIVDM,1,1,,A,139pin0P00PvbBHO79c>4?vlR0S9,0 +2025-07-24T06:58:26|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:26|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:58:26|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:26|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:26|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:26|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:26|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:27|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:27|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:27|<<GjO;6t46gvn04k`,0|$AIVDM,1,1,,B,13:iFj3P03Pv>GjO;6t46gvn04k`,0 +2025-07-24T06:58:27|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:27|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:28|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:28|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:28|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:28|<<>>Seatalk1|$STALK,9C,61,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:28|<<>>Seatalk1|$STALK,84,26,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:28|<<j482@ueP@8P@0008u8eDl00000000000000o589::4000;Q1CEB,0|$AIVDM,2,1,6,A,53@>j482@ueP@8P@0008u8eDl00000000000000o589::4000;Q1CEB,0 +2025-07-24T06:58:28|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:29|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:58:29|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:29|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:29|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:30|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:30|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:30|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:30|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:30|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:30|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:31|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:31|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:31|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:31|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:32|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:58:32|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:32|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:32|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:32|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:32|<<fPP00Pvb=dO79uh0?w32<0P,0|$AIVDM,1,1,,B,139T>fPP00Pvb=dO79uh0?w32<0P,0 +2025-07-24T06:58:33|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:33|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:33|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:33|<<F@0?vt00Sr,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vt00Sr,0 +2025-07-24T06:58:33|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:33|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:34|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:34|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:34|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:34|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:34|<<H?S9T7iBnN@swi5oP06,0|$AIVDM,1,1,,A,B39inLP0>H?S9T7iBnN@swi5oP06,0 +2025-07-24T06:58:34|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:34|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:35|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:58:35|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:35|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:35|<<>>Seatalk1|$STALK,85,06,00,E2,15,05,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.81 NM } +2025-07-24T06:58:36|<<>>Seatalk1|$STALK,10,01,00,02|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 1 ° } +2025-07-24T06:58:36|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:36|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:36|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:36|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:36|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:37|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:58:37|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:37|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:37|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:38|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:58:38|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:38|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:38|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:38|<<>>Seatalk1|$STALK,84,66,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:38|<<qmWQAk1V8q@,0|$AIVDM,1,1,,B,B39HbkP0A0?hKEWj>qmWQAk1V8q@,0 +2025-07-24T06:58:39|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:39|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:39|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:39|<<00Th,0|$AIVDM,1,1,,B,339O=5P00Q0vCt0O;2IK<`e>00Th,0 +2025-07-24T06:58:39|<<>>Seatalk1|$STALK,84,26,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:39|<<04k`,0|$AIVDM,1,1,,B,15?det@001PwEn8O4u34c0E>04k`,0 +2025-07-24T06:58:40|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:40|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:58:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:40|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:40|<<>>Seatalk1|$STALK,9C,61,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:40|<<0lU:,0|$AIVDM,1,1,,B,33ku7H50000v?fNO;=tPh:;>0lU:,0 +2025-07-24T06:58:40|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:40|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:41|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:58:41|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:41|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:41|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:42|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:58:42|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:42|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:42|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:42|<<fT000020@OSWK1fT000020@OSWK1>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:42|<<lO;W?h?0=E08IA,0|$AIVDM,1,1,,A,13@pVE001B0wQ>lO;W?h?0=E08IA,0 +2025-07-24T06:58:43|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:43|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:58:43|<<fPP00Pvb=dO79vP0?wG2<0R,0|$AIVDM,1,1,,A,139T>fPP00Pvb=dO79vP0?wG2<0R,0 +2025-07-24T06:58:43|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:43|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:43|<<>>Seatalk1|$STALK,85,06,00,E2,E5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.78 NM } +2025-07-24T06:58:44|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:44|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:44|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:44|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:44|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:44|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:45|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:58:45|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:45|<<GdO;6t3dgwJ00Sg,0|$AIVDM,1,1,,B,13:iFj3P01Pv>GdO;6t3dgwJ00Sg,0 +2025-07-24T06:58:45|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:45|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:46|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:58:46|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:46|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:46|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:46|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:46|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:47|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T06:58:47|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:47|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:47|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:48|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:58:48|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:48|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:48|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:48|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:48|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:49|<<>>Seatalk1|$STALK,10,01,00,06|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 3 ° } +2025-07-24T06:58:49|<<GMP0@MO,0|$AIVDM,1,1,,A,139NTv000r0u?J2O0939>GMP0@MO,0 +2025-07-24T06:58:49|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:49|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:49|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:50|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:58:50|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:50|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:50|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:50|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:50|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:51|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:58:51|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:51|<<OO>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:51|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:52|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:58:52|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:52|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:52|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:52|<<fPP00Pvb=jO79w@0?wa2<0R,0|$AIVDM,1,1,,B,139T>fPP00Pvb=jO79w@0?wa2<0R,0 +2025-07-24T06:58:52|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:52|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:53|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:58:53|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:53|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:53|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:54|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:58:54|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:58:54|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:54|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:54|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:58:54|<<>>Seatalk1|$STALK,85,06,00,E2,D5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.77 NM } +2025-07-24T06:58:55|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:58:55|<<>7i:cQL7wsQl8PI,0|$AIVDM,1,1,,B,B39wP?004`?p>>7i:cQL7wsQl8PI,0 +2025-07-24T06:58:55|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:58:55|<<CjLiuh0D12,0|$AIVDM,1,1,,B,13@pc=h0320vE`nO;>CjLiuh0D12,0 +2025-07-24T06:58:55|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:55|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:58:56|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:58:56|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:58:56|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:56|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:56|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:56|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:58:57|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:58:57|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:57|<<8?HPOWhc3mrwwtQn5KQ,0|$AIVDM,1,1,,A,B39J46P0>8?HPOWhc3mrwwtQn5KQ,0 +2025-07-24T06:58:57|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:57|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:58:58|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:58:58|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:58:58|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:58:58|<<>>Seatalk1|$STALK,9C,A1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 226 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:58|<<>>Seatalk1|$STALK,84,A6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 226 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:58|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = 0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:58:59|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:58:59|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:58:59|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:58:59|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:00|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:59:00|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:00|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:00|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:00|<<O13O13>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:00|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:01|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:01|<<o2PAt20<13,0|$AIVDM,1,1,,A,13@pc=h0320vEpJO;>o2PAt20<13,0 +2025-07-24T06:59:01|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:01|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:01|<<pL00D2G,0|$AIVDM,1,1,,A,13aCdr3P0pPvjAHO17gL>pL00D2G,0 +2025-07-24T06:59:02|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:02|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:02|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:02|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:02|<<Nvuqu6?v400Rh,0|$AIVDM,1,1,,B,139MLt3P000vPn>Nvuqu6?v400Rh,0 +2025-07-24T06:59:02|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:02|<<fPP00Pvb=nO79vh0?v520SR,0|$AIVDM,1,1,,A,139T>fPP00Pvb=nO79vh0?v520SR,0 +2025-07-24T06:59:02|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:02|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:03|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:59:03|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:03|<<F@0?v2082=,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v2082=,0 +2025-07-24T06:59:03|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:03|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:04|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:04|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:04|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:04|<<P<90<2k,0|$AIVDM,1,1,,A,13@pVE001B0wQA`O;a=@>P<90<2k,0 +2025-07-24T06:59:04|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:04|<<C,0|$AIVDM,1,1,,B,33mDP2001F0vlB0OC,0 +2025-07-24T06:59:04|<<ScnaR:0@2j,0|$AIVDM,1,1,,A,1815A9h023109m8O5>ScnaR:0@2j,0 +2025-07-24T06:59:04|<<O:qorbHn:0<0i,0|$AIVDM,1,1,,A,13:EQR0P0f0v@O>O:qorbHn:0<0i,0 +2025-07-24T06:59:04|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:04|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:05|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:59:05|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:05|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:05|<<@002Pv9t@NwlfEgP`800RU,0|$AIVDM,1,1,,B,13@pD>@002Pv9t@NwlfEgP`800RU,0 +2025-07-24T06:59:06|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:06|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:59:06|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:06|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:06|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:06|<<22222221D2i>3>4000?1h`51,0|$AIVDM,2,1,0,B,5815A9l2D;nqKLP?B20D22222221D2i>3>4000?1h`51,0 +2025-07-24T06:59:06|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:06|<<P009PwbM0OC6G49;240<0V,0|$AIVDM,1,1,,A,13@pD>P009PwbM0OC6G49;240<0V,0 +2025-07-24T06:59:06|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:07|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T06:59:07|<<0000,0|$AIVDM,1,1,,B,339O=5P0070vCm`O;2Sc98h>0000,0 +2025-07-24T06:59:07|>>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:07|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:07|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:08|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:59:08|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:08|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:08|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:08|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:08|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:09|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:59:09|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:09|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:09|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:10|<<>>Seatalk1|$STALK,10,01,00,04|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 2 ° } +2025-07-24T06:59:10|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:10|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:10|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:10|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:10|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:11|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:11|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:11|<<>>Seatalk1|$STALK,84,E6,97,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 227 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:11|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:12|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:59:12|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:12|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:12|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:12|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:12|<<@@>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:13|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:59:13|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:13|<<D2O;6tlPhFL0D26,0|$AIVDM,1,1,,A,13:EIf00010v>D2O;6tlPhFL0D26,0 +2025-07-24T06:59:13|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:13|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:14|<<>>Seatalk1|$STALK,10,01,00,00|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 0 ° } +2025-07-24T06:59:14|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:14|<<a2?vN0<24,0|$AIVDM,1,1,,A,139J<<0P1I0vd0jO<`>a2?vN0<24,0 +2025-07-24T06:59:14|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:14|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:14|<<@002Pv9tLNwldmj0`L00Sn,0|$AIVDM,1,1,,A,13@pD>@002Pv9tLNwldmj0`L00Sn,0 +2025-07-24T06:59:14|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:14|<<>>Seatalk1|$STALK,85,06,00,E2,C5,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 227 °, BearingIsTrue = False, DistanceToDestination = 0.76 NM } +2025-07-24T06:59:15|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:15|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:15|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:15|<<>>Seatalk1|$STALK,85,06,00,02,A6,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.74 NM } +2025-07-24T06:59:16|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:59:16|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:16|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:16|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:16|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:16|<<4?vP24kd,0|$AIVDM,1,1,,A,139Q2bPP00Ptn;RO261>4?vP24kd,0 +2025-07-24T06:59:17|<<>>Seatalk1|$STALK,85,06,00,02,A6,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.74 NM } +2025-07-24T06:59:17|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:59:17|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:17|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:17|<<>>Seatalk1|$STALK,85,06,00,02,A6,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.74 NM } +2025-07-24T06:59:18|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:59:18|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:18|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:18|<<4?vT24kd,0|$AIVDM,1,1,,B,139SHt?P00PvOjTO6L=>4?vT24kd,0 +2025-07-24T06:59:18|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:18|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:18|<<>>Seatalk1|$STALK,85,06,00,02,A6,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.74 NM } +2025-07-24T06:59:19|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:59:19|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:19|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:19|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:20|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:59:20|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:20|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:20|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:20|<<O,0|$AIVDM,1,1,,B,139LO,0 +2025-07-24T06:59:20|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:20|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:21|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:59:21|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:21|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:21|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:22|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:22|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:22|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:22|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:22|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:22|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:23|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:59:23|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:23|<<F@0?v`08=t,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v`08=t,0 +2025-07-24T06:59:23|<<lO<`@7B5nh08>1,0|$AIVDM,1,1,,B,13mDP2001F0vl>lO<`@7B5nh08>1,0 +2025-07-24T06:59:23|<<1,0|$AIVDM,1,1,,A,13`lQb0P150vriFNwLP@rhhf0@>1,0 +2025-07-24T06:59:23|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:23|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:24|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:59:24|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:24|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:24|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:24|<<CRO;6t:r0Hj0@>Q,0|$AIVDM,1,1,,B,13:EIf00060v>CRO;6t:r0Hj0@>Q,0 +2025-07-24T06:59:24|<<@003Pv9t`NwlcEe0`f0H>R,0|$AIVDM,1,1,,B,13@pD>@003Pv9t`NwlcEe0`f0H>R,0 +2025-07-24T06:59:24|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:24|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:25|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:59:25|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:25|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:25|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:26|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:59:26|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:26|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:26|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:26|<<j0<0t,0|$AIVDM,1,1,,A,139vIM0P1PPwaHfO2NKBgR>j0<0t,0 +2025-07-24T06:59:26|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:26|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:27|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T06:59:27|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:27|<<hWiPHKQ3weQjDu:,0|$AIVDM,1,1,,A,B39thuP000?M>hWiPHKQ3weQjDu:,0 +2025-07-24T06:59:27|<<FfO;6u:wgvn00RB,0|$AIVDM,1,1,,B,13:iFj3P04Pv>FfO;6u:wgvn00RB,0 +2025-07-24T06:59:27|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:27|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:28|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:59:28|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:28|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:28|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:28|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:28|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:29|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:29|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:29|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:29|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:30|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:59:30|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:30|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:30|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:30|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:30|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:31|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:59:31|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:31|<<j45000Pv>J2O;?8H=Rdt0lk:,0|$AIVDM,1,1,,B,33@>j45000Pv>J2O;?8H=Rdt0lk:,0 +2025-07-24T06:59:31|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:31|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:32|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:32|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:32|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:32|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:32|<<O1w0Mhs6v060k,0|$AIVDM,1,1,,A,339V=f001HPviw>O1w0Mhs6v060k,0 +2025-07-24T06:59:32|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:32|<<fPP00Pvb=tO79vP0?w328CH,0|$AIVDM,1,1,,B,139T>fPP00Pvb=tO79vP0?w328CH,0 +2025-07-24T06:59:32|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:33|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:33|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:33|<<gw40<23,0|$AIVDM,1,1,,A,139J<<0P1I0vccPOgw40<23,0 +2025-07-24T06:59:33|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:33|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:34|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:59:34|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:34|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:34|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:34|<<F@0?vv0<15,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vv0<15,0 +2025-07-24T06:59:34|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:34|<<CBO;6tJkhI60<25,0|$AIVDM,1,1,,A,13:EIf00010v>CBO;6tJkhI60<25,0 +2025-07-24T06:59:35|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:35|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:59:35|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:35|<<oi401mh,0|$AIVDM,1,1,,A,33aCdr3P0mPviodO17tr>oi401mh,0 +2025-07-24T06:59:35|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:35|<<@003Pv9tnNwlambPa60@E;,0|$AIVDM,1,1,,A,13@pD>@003Pv9tnNwlambPa60@E;,0 +2025-07-24T06:59:36|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:36|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:59:36|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:36|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:36|<<hHPt7CGKIhHPt7CGKI>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:36|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:36|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:37|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:59:37|<<@,0|$AIVDM,1,1,,B,33aCdr3P0nPvin2O17sJ@,0 +2025-07-24T06:59:37|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:37|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:37|<<>>Seatalk1|$STALK,85,06,00,02,96,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.73 NM } +2025-07-24T06:59:38|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:59:38|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:38|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:38|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:38|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:38|<<>>Seatalk1|$STALK,85,06,00,8A,76,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.71 NM } +2025-07-24T06:59:39|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:39|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:39|<<00VP,0|$AIVDM,1,1,,B,339O=5PP040vCn6O;2Uiu7m>00VP,0 +2025-07-24T06:59:39|<<20S3,0|$AIVDM,1,1,,B,139SHt?P00PvOjfO6L:v4?w>20S3,0 +2025-07-24T06:59:39|<<0R=W7<0Dqr,0|$AIVDM,1,1,,B,33cPHl50000v<3RO;>0R=W7<0Dqr,0 +2025-07-24T06:59:39|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:39|<<>>Seatalk1|$STALK,85,06,00,8A,76,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.71 NM } +2025-07-24T06:59:40|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:59:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:40|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:40|<<nHO07EIAoM<08H9,0|$AIVDM,1,1,,B,139NTv000r0u>nHO07EIAoM<08H9,0 +2025-07-24T06:59:40|<<00SF,0|$AIVDM,1,1,,B,15?det@004PwEoPO4u2SohC>00SF,0 +2025-07-24T06:59:40|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:40|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:40|<<>>Seatalk1|$STALK,85,06,00,8A,76,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.71 NM } +2025-07-24T06:59:41|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T06:59:41|<<>>Seatalk1|$STALK,9C,E1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:41|<<>>Seatalk1|$STALK,84,26,96,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 224 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:41|<<>>Seatalk1|$STALK,85,06,00,8A,76,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.71 NM } +2025-07-24T06:59:42|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:59:42|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:42|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:42|<<>>Seatalk1|$STALK,9C,21,14,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 220 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:42|<<>>Seatalk1|$STALK,84,E6,96,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 225 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:42|<<fPP00Pvb=tO79vP0?wG28IG,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79vP0?wG28IG,0 +2025-07-24T06:59:43|<<>>Seatalk1|$STALK,85,06,00,8A,76,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.71 NM } +2025-07-24T06:59:43|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T06:59:43|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:43|<<F@0?w@0<15,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?w@0<15,0 +2025-07-24T06:59:43|<<>>Seatalk1|$STALK,84,66,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 233 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:43|<<>>Seatalk1|$STALK,85,06,00,8A,76,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.71 NM } +2025-07-24T06:59:44|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:44|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:44|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:44|<<C4O;6rbkhGJ0@J1,0|$AIVDM,1,1,,B,13:EIf00020v>C4O;6rbkhGJ0@J1,0 +2025-07-24T06:59:44|<<>>Seatalk1|$STALK,9C,A1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 232 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:44|<<@003Pv9u0Nwl`UbPaF0@J>,0|$AIVDM,1,1,,B,13@pD>@003Pv9u0Nwl`UbPaF0@J>,0 +2025-07-24T06:59:44|<<>>Seatalk1|$STALK,84,A6,9B,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 234 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:44|<<>>Seatalk1|$STALK,85,06,00,8A,76,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.71 NM } +2025-07-24T06:59:45|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:45|<<>>Seatalk1|$STALK,9C,21,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 236 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:45|<<>>Seatalk1|$STALK,84,E6,9B,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 235 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:45|<<>>Seatalk1|$STALK,85,06,00,8A,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:46|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:59:46|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:46|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:46|<<>>Seatalk1|$STALK,9C,61,1C,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 237 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:46|<<>>Seatalk1|$STALK,84,E6,9B,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 235 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:46|<<>>Seatalk1|$STALK,85,06,00,8A,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:47|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:47|<<>>Seatalk1|$STALK,9C,61,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 235 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:47|<<>>Seatalk1|$STALK,84,66,9B,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 235 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:47|<<>>Seatalk1|$STALK,85,06,00,8A,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:48|<<>>Seatalk1|$STALK,10,01,00,2A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 21 ° } +2025-07-24T06:59:48|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:48|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:48|<<>>Seatalk1|$STALK,9C,21,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 234 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:48|<<>>Seatalk1|$STALK,84,A6,9B,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 234 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:48|<<owp5oP06,0|$AIVDM,1,1,,B,B3MAowp5oP06,0 +2025-07-24T06:59:48|<<K>qGR01m@,0|$AIVDM,1,1,,B,33:EQR0P0V0v@5TO:r>K>qGR01m@,0 +2025-07-24T06:59:48|<<>>Seatalk1|$STALK,85,06,00,8A,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:49|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:49|<<g:O06wqAGKP00vA,0|$AIVDM,1,1,,A,339NTv0P0r0u>g:O06wqAGKP00vA,0 +2025-07-24T06:59:49|<<>>Seatalk1|$STALK,9C,21,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 234 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:49|<<>>Seatalk1|$STALK,84,26,9B,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 234 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:49|<<>>Seatalk1|$STALK,85,06,00,8A,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:50|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T06:59:50|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:50|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:50|<<>>Seatalk1|$STALK,9C,61,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 235 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:50|<<>>Seatalk1|$STALK,84,66,9B,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 235 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:50|<<>>Seatalk1|$STALK,85,06,00,8A,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:51|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:51|<<>>Seatalk1|$STALK,9C,21,1B,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 234 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:51|<<OO>>Seatalk1|$STALK,84,A6,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:51|<<>>Seatalk1|$STALK,85,06,00,8A,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:52|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T06:59:52|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:52|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:52|<<>>Seatalk1|$STALK,9C,21,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 232 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:52|<<>>Seatalk1|$STALK,84,26,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:52|<<>>Seatalk1|$STALK,85,06,00,02,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:53|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T06:59:53|<<>>Seatalk1|$STALK,9C,21,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 232 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:53|<<tn4h5AOR21LTitn4h5AOR21LTiBdO;6q7@PEd0@OV,0|$AIVDM,1,1,,A,13:EIf00030v>BdO;6q7@PEd0@OV,0 +2025-07-24T06:59:53|<<F@0?wT00Sf,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?wT00Sf,0 +2025-07-24T06:59:53|<<>>Seatalk1|$STALK,84,26,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:53|<<>>Seatalk1|$STALK,85,06,00,02,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:54|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T06:59:54|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T06:59:54|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T06:59:54|<<>>Seatalk1|$STALK,9C,61,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 233 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:54|<<>>Seatalk1|$STALK,84,26,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:54|<<>>Seatalk1|$STALK,85,06,00,02,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:55|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T06:59:55|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:55|<<bpO06jq>7Id00v@,0|$AIVDM,1,1,,A,339NTv000r0u>bpO06jq>7Id00v@,0 +2025-07-24T06:59:55|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:55|<<>>Seatalk1|$STALK,85,06,00,02,66,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.7 NM } +2025-07-24T06:59:56|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:59:56|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:56|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:56|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:56|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:56|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T06:59:57|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T06:59:57|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:57|<<0?HKj7hb=Qv3wtQj5FQ,0|$AIVDM,1,1,,A,B39J46P0>0?HKj7hb=Qv3wtQj5FQ,0 +2025-07-24T06:59:57|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:57|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T06:59:58|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T06:59:58|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T06:59:58|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T06:59:58|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T06:59:58|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T06:59:58|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T06:59:59|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T06:59:59|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T06:59:59|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T06:59:59|<<`2O06b9>WIl0<0s,0|$AIVDM,1,1,,B,139NTv000r0u>`2O06b9>WIl0<0s,0 +2025-07-24T07:00:00|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:00|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:00:00|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:00|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:00|<<O2O0kiS7n20V0,0|$AIVDM,1,1,,B,339vIM0P1LPwb7>O2O0kiS7n20V0,0 +2025-07-24T07:00:00|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:00|<<<,0|$AIVDM,2,1,5,A,53@pVE82;AIPu`QS:20PDTl@4j1:22222222220Q7PH9:4000=Rl8><,0 +2025-07-24T07:00:00|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:00|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:01|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:00:01|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:01|<<H?Rs37iB1V@OwPUoP06,0|$AIVDM,1,1,,B,B39inLP0>H?Rs37iB1V@OwPUoP06,0 +2025-07-24T07:00:01|<<40@0w,0|$AIVDM,1,1,,B,13@orC003J0vEWRO;?ua3W>40@0w,0 +2025-07-24T07:00:01|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:01|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:02|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:00:02|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:02|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:02|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:02|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:02|<<420Rv,0|$AIVDM,1,1,,A,139vIM0P1JPwb;BO2NvCpk>420Rv,0 +2025-07-24T07:00:03|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:03|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:03|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:03|<<fPP00Pvb=tO79uh0?v72L0R,0|$AIVDM,1,1,,A,139T>fPP00Pvb=tO79uh0?v72L0R,0 +2025-07-24T07:00:03|<<F@0?v004p0,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v004p0,0 +2025-07-24T07:00:03|<<A3Pp6082D,0|$AIVDM,1,1,,A,13`lQb00160vs2tNwO>A3Pp6082D,0 +2025-07-24T07:00:03|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:03|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:04|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:00:04|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:04|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:04|<<P>9082U,0|$AIVDM,1,1,,A,13@pVE001B0wQI8O;fR@>P>9082U,0 +2025-07-24T07:00:04|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:04|<<H`2GgFl@dqK:210ThuB0dh453100003D2C3m,0|$AIVDM,2,1,6,B,53:4>H`2GgFl@dqK:210ThuB0dh453100003D2C3m,0 +2025-07-24T07:00:04|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:04|<<BpO;6pG6PD:082u,0|$AIVDM,1,1,,B,13:EIf00040v>BpO;6pG6PD:082u,0 +2025-07-24T07:00:05|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:05|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:00:05|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:05|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:05|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:06|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:06|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:06|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:06|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:06|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:06|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:07|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T07:00:07|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:07|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:07|<<20SS,0|$AIVDM,1,1,,B,139vIM0P1GPwbAfO2Nol2kF>20SS,0 +2025-07-24T07:00:08|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:08|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T07:00:08|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:08|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:08|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:08|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:08|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:09|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:00:09|<<PrO06D9>7H@0H62,0|$AIVDM,1,1,,A,139NTv000r0u>PrO06D9>7H@0H62,0 +2025-07-24T07:00:09|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:09|<<O;2`:e8LB00T0,0|$AIVDM,1,1,,A,339O=5PP0M0vCf>O;2`:e8LB00T0,0 +2025-07-24T07:00:09|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:09|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:10|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:00:10|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:10|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:10|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:10|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:10|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:11|<<>>Seatalk1|$STALK,10,01,00,08|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 4 ° } +2025-07-24T07:00:11|<<adofD07FC,0|$AIVDM,1,1,,B,33aCdr300wPviIVO17>adofD07FC,0 +2025-07-24T07:00:11|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:11|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:11|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:12|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T07:00:12|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:12|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:12|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:12|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:12|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:13|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T07:00:13|<<@>I0D2i,0|$AIVDM,1,1,,B,13@pVE001B0wQJ6O;g@0>@>I0D2i,0 +2025-07-24T07:00:13|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:13|<<fPP00Pvb=jO79uh0?vK2@82,0|$AIVDM,1,1,,B,139T>fPP00Pvb=jO79uh0?vK2@82,0 +2025-07-24T07:00:13|<<BjO;6pG<@DL0@86,0|$AIVDM,1,1,,A,13:EIf00040v>BjO;6pG<@DL0@86,0 +2025-07-24T07:00:13|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:13|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:14|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T07:00:14|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:14|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:14|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:14|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:14|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:15|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:00:15|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:15|<<O;2`:h`FN00Th,0|$AIVDM,1,1,,B,339O=5P00P0vCc>O;2`:h`FN00Th,0 +2025-07-24T07:00:15|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:15|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:16|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T07:00:16|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:16|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:16|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:16|<<R24p0,0|$AIVDM,1,1,,A,13@p94h00t0wF3dO5@pAci>R24p0,0 +2025-07-24T07:00:16|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:16|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:17|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:00:17|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:17|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:17|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:18|<<>>Seatalk1|$STALK,10,01,00,26|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 19 ° } +2025-07-24T07:00:18|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:18|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:18|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:18|<<JLO05wI=oHR04p0,0|$AIVDM,1,1,,B,139NTv000r0u>JLO05wI=oHR04p0,0 +2025-07-24T07:00:18|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:18|<<>>Seatalk1|$STALK,85,06,00,02,56,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.69 NM } +2025-07-24T07:00:19|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:00:19|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:19|<<O;5puKIHV0H;K,0|$AIVDM,1,1,,A,13KKDCP000Pv<=>O;5puKIHV0H;K,0 +2025-07-24T07:00:19|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:19|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:20|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:00:20|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:20|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:20|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:20|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:20|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:21|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:00:21|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:21|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:21|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:22|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T07:00:22|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:22|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:22|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:22|<<fPP00Pvb=jO79w@0?ve2D0R,0|$AIVDM,1,1,,A,139T>fPP00Pvb=jO79w@0?ve2D0R,0 +2025-07-24T07:00:22|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:22|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:23|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:00:23|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:23|<<@>g0D2j,0|$AIVDM,1,1,,A,13@pVE001B0wQKNO;h?0>@>g0D2j,0 +2025-07-24T07:00:23|<<F@0?vb04p0,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?vb04p0,0 +2025-07-24T07:00:23|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:23|<<9,0|$AIVDM,1,1,,A,1815A9h023107lpO5DmcqITh0@>9,0 +2025-07-24T07:00:24|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:24|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T07:00:24|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:24|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:24|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:24|<<E,0|$AIVDM,1,1,,B,13pr=F00000t15E,0 +2025-07-24T07:00:24|<<BdO;6oW@PFj0<25,0|$AIVDM,1,1,,B,13:EIf00030v>BdO;6oW@PFj0<25,0 +2025-07-24T07:00:24|<<@003Pv9unNwlS5S0`f0D0L,0|$AIVDM,1,1,,B,13@pD>@003Pv9unNwlS5S0`f0D0L,0 +2025-07-24T07:00:24|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:24|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:25|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:25|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:25|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:25|<<G8O;6tkF?vj0D10,0|$AIVDM,1,1,,B,13:iFj3P00Pv>G8O;6tkF?vj0D10,0 +2025-07-24T07:00:25|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:26|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:00:26|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:26|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:26|<<>>Seatalk1|$STALK,9C,E1,17,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 227 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:26|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:26|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:27|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T07:00:27|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:27|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:27|<<>>Seatalk1|$STALK,85,06,00,02,36,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.67 NM } +2025-07-24T07:00:28|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:00:28|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:28|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:28|<<>>Seatalk1|$STALK,9C,61,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:28|<<0?HIf7hai9rOwf1h4p0,0|$AIVDM,1,1,,B,B39J46P0>0?HIf7hai9rOwf1h4p0,0 +2025-07-24T07:00:28|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:28|<<>>Seatalk1|$STALK,85,06,00,02,26,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.66 NM } +2025-07-24T07:00:29|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:00:29|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:29|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:29|<<BHO05Uq=WJr00RF,0|$AIVDM,1,1,,A,139NTv000m0u>BHO05Uq=WJr00RF,0 +2025-07-24T07:00:30|<<>>Seatalk1|$STALK,85,06,00,02,26,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.66 NM } +2025-07-24T07:00:30|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T07:00:30|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:30|<<>>Seatalk1|$STALK,20,81,2F,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’203.2 kn, Forwarded = True } +2025-07-24T07:00:30|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:30|<<?@C;wg1lD20,0|$AIVDM,1,1,,A,B3@oGQ@0?p?qHq7j>?@C;wg1lD20,0 +2025-07-24T07:00:30|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:30|<<>>Seatalk1|$STALK,85,06,00,02,26,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.66 NM } +2025-07-24T07:00:31|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T07:00:31|<<5UC@7mnnq00;40w,0|$AIVDM,1,1,,A,H3prNNDTCBD:>5UC@7mnnq00;40w,0 +2025-07-24T07:00:31|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:31|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:31|<<>>Seatalk1|$STALK,85,06,00,02,26,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.66 NM } +2025-07-24T07:00:32|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:32|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:32|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:32|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:32|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:32|<<fPP00Pvb=hO7:0@0?w324p0,0|$AIVDM,1,1,,B,139T>fPP00Pvb=hO7:0@0?w324p0,0 +2025-07-24T07:00:33|<<>>Seatalk1|$STALK,85,06,00,02,26,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.66 NM } +2025-07-24T07:00:33|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T07:00:33|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:33|<<>>Seatalk1|$STALK,84,E6,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:33|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:34|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:00:34|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:34|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:34|<<8Q47njhh00@721w,0|$AIVDM,1,1,,A,H39J46TTCBD8>8Q47njhh00@721w,0 +2025-07-24T07:00:34|<<>>Seatalk1|$STALK,9C,21,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 232 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:34|<<>>Seatalk1|$STALK,84,26,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:34|<<BVO;6lW5@G608DU,0|$AIVDM,1,1,,A,13:EIf00010v>BVO;6lW5@G608DU,0 +2025-07-24T07:00:35|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:35|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:00:35|<<>>Seatalk1|$STALK,9C,A1,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 232 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:35|<<>>Seatalk1|$STALK,84,A6,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:35|<<GG@003Pv9v8NwlQ5PPW40<0L,0|$AIVDM,1,1,,A,13@pD>@003Pv9v8NwlQ5PPW40<0L,0 +2025-07-24T07:00:36|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:36|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:36|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:36|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:36|<<>>Seatalk1|$STALK,9C,61,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 233 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:36|<<>>Seatalk1|$STALK,84,A6,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:36|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:37|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T07:00:37|<<>>Seatalk1|$STALK,9C,61,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 233 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:37|<<>>Seatalk1|$STALK,84,26,9A,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 232 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:37|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:38|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T07:00:38|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:38|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:38|<<>>Seatalk1|$STALK,9C,21,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 232 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:38|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:38|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:39|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:39|<<0@G4,0|$AIVDM,1,1,,A,13KKDCP000Pv<=BO;5peKIG>0@G4,0 +2025-07-24T07:00:39|<<>>Seatalk1|$STALK,9C,E1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:39|<<2HG>,0|$AIVDM,1,1,,B,139SHt?P00PvOj@O6L2HG>,0 +2025-07-24T07:00:39|<<00Th,0|$AIVDM,1,1,,B,339O=5PP070vCUfO;2bK6Gm>00Th,0 +2025-07-24T07:00:39|<<>>Seatalk1|$STALK,84,E6,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:39|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:40|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:00:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:40|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:40|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:40|<<>>Seatalk1|$STALK,84,A6,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:40|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:41|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:00:41|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:41|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:41|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:42|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:00:42|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:42|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:42|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:42|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:42|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:43|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:00:43|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:43|<<220H4U90h5V1PTV22222220l2P87240009T34nV,0|$AIVDM,2,1,9,B,53pr=F42:uu5220H4U90h5V1PTV22222220l2P87240009T34nV,0 +2025-07-24T07:00:43|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:43|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:44|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:44|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:44|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:44|<<BJO;6iW5@IJ0<25,0|$AIVDM,1,1,,B,13:EIf00010v>BJO;6iW5@IJ0<25,0 +2025-07-24T07:00:44|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:44|<<>>Seatalk1|$STALK,84,A6,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:44|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:45|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:00:45|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:45|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:45|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:46|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:46|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:46|<<Wwo5oP06,0|$AIVDM,1,1,,B,B3MAWwo5oP06,0 +2025-07-24T07:00:46|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:46|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:46|<<GBO;6uSF?wL08KJ,0|$AIVDM,1,1,,B,13:iFj3P00Pv>GBO;6uSF?wL08KJ,0 +2025-07-24T07:00:46|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:46|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:47|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:47|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:47|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:47|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:48|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:00:48|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:48|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:48|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:48|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:48|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:49|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:00:49|<<78O053978O0539>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:49|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:49|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:50|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:50|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:50|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:50|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:50|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:50|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:51|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:00:51|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:51|<<>>Seatalk1|$STALK,84,26,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:51|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:52|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:00:52|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:00:52|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:52|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:52|<<fPP00Pvb=hO79vh0?wa24p0,0|$AIVDM,1,1,,B,139T>fPP00Pvb=hO79vh0?wa24p0,0 +2025-07-24T07:00:52|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:52|<<>>Seatalk1|$STALK,85,06,00,02,16,04,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.65 NM } +2025-07-24T07:00:53|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:00:53|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:53|<<B>O;6i03hId0<25,0|$AIVDM,1,1,,A,13:EIf00050v>B>O;6i03hId0<25,0 +2025-07-24T07:00:53|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:00:53|<<>>Seatalk1|$STALK,85,06,00,8A,F6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.63 NM } +2025-07-24T07:00:54|<<>>Seatalk1|$STALK,10,01,00,0C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 6 ° } +2025-07-24T07:00:54|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:54|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:54|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:54|<<F@0?w`0HP;,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?w`0HP;,0 +2025-07-24T07:00:54|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:54|<<>>Seatalk1|$STALK,85,06,00,8A,F6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.63 NM } +2025-07-24T07:00:55|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:55|<<aI?wsQl0QQ,0|$AIVDM,1,1,,B,B39wP?004H?pBf7i:>aI?wsQl0QQ,0 +2025-07-24T07:00:55|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:55|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:55|<<>>Seatalk1|$STALK,85,06,00,8A,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.62 NM } +2025-07-24T07:00:56|<<>>Seatalk1|$STALK,10,01,00,0A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 5 ° } +2025-07-24T07:00:56|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:56|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:56|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:00:56|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:56|<<GNO;6uSPgwh0L13,0|$AIVDM,1,1,,A,13:iFj3P01Pv>GNO;6uSPgwh0L13,0 +2025-07-24T07:00:56|<<>>Seatalk1|$STALK,85,06,00,8A,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.62 NM } +2025-07-24T07:00:57|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:00:57|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:57|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:57|<<>>Seatalk1|$STALK,85,06,00,8A,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.62 NM } +2025-07-24T07:00:58|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:00:58|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:00:58|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:00:58|<<0?eQ37hoAR9Cwu1h<2C,0|$AIVDM,1,1,,A,B3prNN@0>0?eQ37hoAR9Cwu1h<2C,0 +2025-07-24T07:00:58|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:58|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:58|<<>>Seatalk1|$STALK,85,06,00,8A,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.62 NM } +2025-07-24T07:00:59|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:00:59|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:00:59|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:00:59|<<1jO04jaBWKl00t1,0|$AIVDM,1,1,,B,339NTv0P0b0u>1jO04jaBWKl00t1,0 +2025-07-24T07:01:00|<<>>Seatalk1|$STALK,85,06,00,8A,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.62 NM } +2025-07-24T07:01:00|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:01:00|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:00|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:00|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:00|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:00|<<>>Seatalk1|$STALK,85,06,00,8A,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 232 °, BearingIsTrue = True, DistanceToDestination = 0.62 NM } +2025-07-24T07:01:01|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:01:01|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:01|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:01|<<edCKwQ1l0S9,0|$AIVDM,1,1,,B,B3@oGQ@0?p?qLg7j>edCKwQ1l0S9,0 +2025-07-24T07:01:02|<<>>Seatalk1|$STALK,85,06,00,02,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.62 NM } +2025-07-24T07:01:02|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:01:02|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:02|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:02|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:02|<<0BO04f9AWF20000,0|$AIVDM,1,1,,A,339NTv0P0a0u>0BO04f9AWF20000,0 +2025-07-24T07:01:02|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:02|<<>>Seatalk1|$STALK,85,06,00,02,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.62 NM } +2025-07-24T07:01:03|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:01:03|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:03|<<fPP00Pvb=NO79wP0?v72H25,0|$AIVDM,1,1,,A,139T>fPP00Pvb=NO79wP0?v72H25,0 +2025-07-24T07:01:03|<<F@0?v000S@,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v000S@,0 +2025-07-24T07:01:03|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:03|<<>>Seatalk1|$STALK,85,06,00,02,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.62 NM } +2025-07-24T07:01:04|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:04|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:04|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:04|<<h>904p4,0|$AIVDM,1,1,,A,13@pVE001B0wQP`O;kq@>h>904p4,0 +2025-07-24T07:01:04|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:04|<<BJO;6nhD0H:04p4,0|$AIVDM,1,1,,B,13:EIf000;0v>BJO;6nhD0H:04p4,0 +2025-07-24T07:01:04|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:04|<<>>Seatalk1|$STALK,85,06,00,02,E6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.62 NM } +2025-07-24T07:01:05|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:05|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:05|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:05|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:06|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:01:06|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:06|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:06|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:06|<<G0O;6vJwwv<0D13,0|$AIVDM,1,1,,B,13:iFj3P02Pv>G0O;6vJwwv<0D13,0 +2025-07-24T07:01:06|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:06|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:07|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:01:07|<<0000,0|$AIVDM,1,1,,B,339O=5PP050vCUrO;2jhw7`>0000,0 +2025-07-24T07:01:07|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:07|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:07|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:08|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:01:08|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:08|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:08|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:08|<<eWeA41V8o@,0|$AIVDM,1,1,,A,B39HbkP0@P?hTW7j<>eWeA41V8o@,0 +2025-07-24T07:01:08|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:08|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:09|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:09|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:09|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:09|<<NwSb@khJD00w0,0|$AIVDM,1,1,,A,33`lQb0P150vsT>NwSb@khJD00w0,0 +2025-07-24T07:01:10|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:10|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:10|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:10|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:10|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:10|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:10|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:11|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:11|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:11|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:11|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:12|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:01:12|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:12|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:12|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:12|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:12|<<I0@7i,0|$AIVDM,1,1,,B,13@pVE001B0wQQbO;lVh?0>I0@7i,0 +2025-07-24T07:01:13|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:13|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T07:01:13|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:13|<<F@0?vD0<12,0|$AIVDM,1,1,,A,139EIqSP000w1bJNv>F@0?vD0<12,0 +2025-07-24T07:01:13|<<fPP00Pvb=NO7:000?vK2<0R,0|$AIVDM,1,1,,B,139T>fPP00Pvb=NO7:000?vK2<0R,0 +2025-07-24T07:01:13|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:13|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:14|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T07:01:14|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:14|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:14|<<>>Seatalk1|$STALK,9C,21,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:14|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:14|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:15|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:15|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:15|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:15|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:16|<<>>Seatalk1|$STALK,10,01,00,22|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 17 ° } +2025-07-24T07:01:16|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:16|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:16|<<GBO;6ukV?vP0@9b,0|$AIVDM,1,1,,A,13:iFj3P01Pv>GBO;6ukV?vP0@9b,0 +2025-07-24T07:01:16|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:16|<<R20T2,0|$AIVDM,1,1,,A,13@p94h00t0wFVvO5Cd1b1>R20T2,0 +2025-07-24T07:01:16|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:16|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:17|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:01:17|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:17|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:17|<<9UWlR00w@,0|$AIVDM,1,1,,B,33aCdr3P16PvhJPO15>9UWlR00w@,0 +2025-07-24T07:01:18|<<00=4>Cj0000;31w,0|$AIVDM,1,1,,B,H3MA00=4>Cj0000;31w,0 +2025-07-24T07:01:18|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:18|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:18|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:18|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:18|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:18|<<>>Seatalk1|$STALK,84,E6,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:18|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:19|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:19|<<Aai@`04p4,0|$AIVDM,1,1,,B,13@pc=h0310vJRRO;Q>Aai@`04p4,0 +2025-07-24T07:01:19|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:19|<<>>Seatalk1|$STALK,84,A6,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:19|<<>>Seatalk1|$STALK,85,06,00,02,D6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.61 NM } +2025-07-24T07:01:20|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:20|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:20|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:20|<<>>Seatalk1|$STALK,9C,61,1A,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 233 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:20|<<WRn4V2000,0|$AIVDM,1,1,,B,139vIM0P0uPwbFJO2J>WRn4V2000,0 +2025-07-24T07:01:20|<<>>Seatalk1|$STALK,84,A6,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:20|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:21|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:21|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:21|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:21|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:22|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:01:22|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:22|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:22|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:22|<<fPP00Pvb=HO7:100?ve2@=F,0|$AIVDM,1,1,,A,139T>fPP00Pvb=HO7:100?ve2@=F,0 +2025-07-24T07:01:22|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:22|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:23|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T07:01:23|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:23|<<F@0?v`00Rw,0|$AIVDM,1,1,,B,139EIqSP000w1bJNv>F@0?v`00Rw,0 +2025-07-24T07:01:23|<<1,0|$AIVDM,1,1,,A,13`lQb0P120vsV2NwTcel:Tf08>1,0 +2025-07-24T07:01:23|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:23|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:24|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:24|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:24|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:24|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:24|<<BpO;7?06hNj08>Q,0|$AIVDM,1,1,,B,13:EIf0P0E0v>BpO;7?06hNj08>Q,0 +2025-07-24T07:01:24|<<@002Pv9wFNwlK5`0Vf0@>R,0|$AIVDM,1,1,,B,13@pD>@002Pv9wFNwlK5`0Vf0@>R,0 +2025-07-24T07:01:24|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:24|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:25|<<>>Seatalk1|$STALK,10,01,00,10|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 8 ° } +2025-07-24T07:01:25|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:25|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:25|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:26|<<>>Seatalk1|$STALK,10,01,00,12|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 9 ° } +2025-07-24T07:01:26|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:26|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T07:01:26|<<l1uSus1LHk:20lPv3>222222222222220V2@81540004ThDlk,0|$AIVDM,2,1,2,B,53@oP>l1uSus1LHk:20lPv3>222222222222220V2@81540004ThDlk,0 +2025-07-24T07:01:26|<<m0020vM@4Om0020vM@4O>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:26|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:26|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:27|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:27|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:27|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:27|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:28|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:01:28|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:28|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:28|<<>>Seatalk1|$STALK,9C,A1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 228 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:28|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:28|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:29|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:29|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:29|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:29|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:30|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:30|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:30|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:30|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:30|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:30|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:31|<<>>Seatalk1|$STALK,10,01,00,14|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 10 ° } +2025-07-24T07:01:31|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:31|<<`?Rcu7iA:6@cwgUoP06,0|$AIVDM,1,1,,A,B39inLP0>`?Rcu7iA:6@cwgUoP06,0 +2025-07-24T07:01:31|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:31|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:32|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:32|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:32|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:32|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:32|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:32|<<fPP00Pvb=HO7:1h0?w320SQ,0|$AIVDM,1,1,,B,139T>fPP00Pvb=HO7:1h0?w320SQ,0 +2025-07-24T07:01:33|<<>>Seatalk1|$STALK,85,06,00,02,C6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.6 NM } +2025-07-24T07:01:33|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T07:01:33|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:33|<<>>Seatalk1|$STALK,84,66,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:33|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:34|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:34|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:34|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:34|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:34|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:34|<<BDO;7S=hPc600u@,0|$AIVDM,1,1,,A,33:EIf0P0I0v>BDO;7S=hPc600u@,0 +2025-07-24T07:01:35|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:35|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T07:01:35|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:35|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:35|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:36|<<>>Seatalk1|$STALK,10,01,00,0E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 7 ° } +2025-07-24T07:01:36|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:36|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:36|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:36|<<B>O;7UMehg:01r@,0|$AIVDM,1,1,,B,33:EIf0P0J0v>B>O;7UMehg:01r@,0 +2025-07-24T07:01:36|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:36|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:37|<<>>Seatalk1|$STALK,10,01,00,16|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 11 ° } +2025-07-24T07:01:37|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:37|<<O5DdQjiG<2<0u,0|$AIVDM,1,1,,A,13@p94hP0s0wFk>O5DdQjiG<2<0u,0 +2025-07-24T07:01:37|<<>>Seatalk1|$STALK,84,A6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 228 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:37|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:38|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T07:01:38|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:38|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:38|<<>>Seatalk1|$STALK,9C,61,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 231 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:38|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:38|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:39|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:39|<<>>Seatalk1|$STALK,9C,A1,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:39|<<4?w>2D0h,0|$AIVDM,1,1,,B,139SHt?P00PvOj@O6L=>4?w>2D0h,0 +2025-07-24T07:01:39|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:39|<<229P,0|$AIVDM,1,1,,B,339vIM0P0cPwbCJO2I3o0EI>229P,0 +2025-07-24T07:01:40|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:40|<<>>Seatalk1|$STALK,10,01,00,1A|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 13 ° } +2025-07-24T07:01:40|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:40|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:40|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:40|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:40|<<>>Seatalk1|$STALK,85,06,00,02,A6,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.58 NM } +2025-07-24T07:01:41|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T07:01:41|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:41|<<>>Seatalk1|$STALK,84,66,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 231 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:41|<<>>Seatalk1|$STALK,85,06,00,02,96,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.57 NM } +2025-07-24T07:01:42|<<>>Seatalk1|$STALK,10,01,00,1C|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 14 ° } +2025-07-24T07:01:42|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:42|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:42|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:42|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:42|<<>>Seatalk1|$STALK,85,06,00,02,96,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.57 NM } +2025-07-24T07:01:43|<<>>Seatalk1|$STALK,10,01,00,20|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 16 ° } +2025-07-24T07:01:43|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:43|<<2222220s386330000911DhD,0|$AIVDM,2,1,4,A,53@oL@T1jeKPuDh;:2058pF1@U2222220s386330000911DhD,0 +2025-07-24T07:01:43|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:43|<<>>Seatalk1|$STALK,85,06,00,02,96,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.57 NM } +2025-07-24T07:01:44|<<>>Seatalk1|$STALK,10,01,00,1E|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 15 ° } +2025-07-24T07:01:44|<<>>Seatalk1|$STALK,11,00,04|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 4 } +2025-07-24T07:01:44|<<>>Seatalk1|$STALK,20,81,31,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’254.4 kn, Forwarded = True } +2025-07-24T07:01:44|<<A8O;7oMQ@uJ08J1,0|$AIVDM,1,1,,B,13:EIf0P0N0v>A8O;7oMQ@uJ08J1,0 +2025-07-24T07:01:44|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:44|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:44|<<>>Seatalk1|$STALK,85,06,00,02,96,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.57 NM } +2025-07-24T07:01:45|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:45|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:45|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:45|<<>>Seatalk1|$STALK,85,06,00,02,96,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.57 NM } +2025-07-24T07:01:46|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:46|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:46|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:46|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:46|<<>>Seatalk1|$STALK,84,E6,98,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 229 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Starboard } +2025-07-24T07:01:46|<<>>Seatalk1|$STALK,85,06,00,02,96,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.57 NM } +2025-07-24T07:01:47|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:47|<<>>Seatalk1|$STALK,9C,E1,18,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 229 °, RudderPosition = 0 °, TurnDirection = Starboard } +2025-07-24T07:01:47|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:47|<<>>Seatalk1|$STALK,85,06,00,02,96,03,17,00,E8|NavigationToWaypoint { CommandByte = 133, ExpectedLength = 9, CrossTrackError = -0 NM, BearingToDestination = 228 °, BearingIsTrue = False, DistanceToDestination = 0.57 NM } +2025-07-24T07:01:48|<<>>Seatalk1|$STALK,10,01,00,18|ApparentWindAngle { CommandByte = 16, ExpectedLength = 4, ApparentAngle = 12 ° } +2025-07-24T07:01:48|<<>>Seatalk1|$STALK,11,00,03|AutopilotWindStatus { CommandByte = 17, ExpectedLength = 3, Status = 3 } +2025-07-24T07:01:48|<<>>Seatalk1|$STALK,20,81,30,00|SpeedTroughWater { CommandByte = 32, ExpectedLength = 4, Speed = 1’228.8 kn, Forwarded = True } +2025-07-24T07:01:48|<<>>Seatalk1|$STALK,9C,21,19,00|CompassHeadingAndRudderPosition { CommandByte = 156, ExpectedLength = 4, CompassHeading = 230 °, RudderPosition = 0 °, TurnDirection = Port } +2025-07-24T07:01:48|<<>>Seatalk1|$STALK,84,26,99,5E,0A,00,00,00,05|CompassHeadingAutopilotCourse { CommandByte = 132, ExpectedLength = 9, CompassHeading = 230 °, AutoPilotType = 5, AutoPilotCourse = 227 °, RudderPosition = 0 °, AutopilotStatus = Track, Alarms = None, TurnDirection = Port } +2025-07-24T07:01:48|<< + @@ -18,11 +19,14 @@ + + + @@ -31,6 +35,8 @@ + + diff --git a/src/devices/Nmea0183/tests/NmeaTcpClientAndServerTest.cs b/src/devices/Nmea0183/tests/NmeaTcpClientAndServerTest.cs index 7daba27f94..96420870e8 100644 --- a/src/devices/Nmea0183/tests/NmeaTcpClientAndServerTest.cs +++ b/src/devices/Nmea0183/tests/NmeaTcpClientAndServerTest.cs @@ -16,7 +16,6 @@ namespace Iot.Device.Nmea0183.Tests { // This test is unreliable when run with netcoreapp3.1 on linux (might hang, or fail in a strange way) -#if NET5_0_OR_GREATER public class NmeaTcpClientAndServerTest { private List _sentencesReceivedByServer; @@ -100,5 +99,4 @@ private void ServerOnNewSequence(NmeaSinkAndSource source, NmeaSentence sentence _sentencesReceivedByServer.Add(sentence); } } -#endif } diff --git a/src/devices/Nmea0183/tests/PositionProviderTests.cs b/src/devices/Nmea0183/tests/PositionProviderTests.cs index f0a3f278eb..f423e11a1e 100644 --- a/src/devices/Nmea0183/tests/PositionProviderTests.cs +++ b/src/devices/Nmea0183/tests/PositionProviderTests.cs @@ -44,8 +44,8 @@ public void GetCompleteRouteOneElement() var sentence1 = new RoutePart("RT", 1, 1, new List() { "A", "B" }); _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence1); - _cache.Add(new Waypoint(new GeographicPosition(), "A")); - _cache.Add(new Waypoint(new GeographicPosition(), "B")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "A")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "B")); Assert.Equal(AutopilotErrorState.RoutePresent, _provider.TryGetCurrentRoute(out var route)); Assert.Equal(2, route.Count); @@ -84,10 +84,10 @@ public void GetCompleteRouteTwoElements() _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence2); _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence1); - _cache.Add(new Waypoint(new GeographicPosition(), "A")); - _cache.Add(new Waypoint(new GeographicPosition(), "B")); - _cache.Add(new Waypoint(new GeographicPosition(), "C")); - _cache.Add(new Waypoint(new GeographicPosition(), "D")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "A")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "B")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "C")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "D")); _provider.TryGetCurrentRoute(out var route); Assert.Equal(4, route.Count); @@ -108,10 +108,10 @@ public void GetNewestRoute() _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence1); _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence2); - _cache.Add(new Waypoint(new GeographicPosition(), "A")); - _cache.Add(new Waypoint(new GeographicPosition(), "B")); - _cache.Add(new Waypoint(new GeographicPosition(), "C")); - _cache.Add(new Waypoint(new GeographicPosition(), "D")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "A")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "B")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "C")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "D")); _provider.TryGetCurrentRoute(out var route); Assert.Equal(2, route.Count); @@ -127,10 +127,10 @@ public void FindOlderRouteIfNewIsIncomplete1() _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence1); _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence2); - _cache.Add(new Waypoint(new GeographicPosition(), "A")); - _cache.Add(new Waypoint(new GeographicPosition(), "B")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "A")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "B")); // Not all waypoints for new route - _cache.Add(new Waypoint(new GeographicPosition(), "D")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "D")); // This will skip the iteration Assert.Equal(AutopilotErrorState.WaypointsWithoutPosition, _provider.TryGetCurrentRoute(out _)); @@ -149,10 +149,10 @@ public void FindOlderRouteIfNewIsIncomplete() _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence1b); _sink.Raise(x => x.OnNewSequence += null, _dummySource.Object, sentence2); - _cache.Add(new Waypoint(new GeographicPosition(), "A")); - _cache.Add(new Waypoint(new GeographicPosition(), "B")); - _cache.Add(new Waypoint(new GeographicPosition(), "C")); - _cache.Add(new Waypoint(new GeographicPosition(), "D")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "A")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "B")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "C")); + _cache.Add(_dummySource.Object, new Waypoint(new GeographicPosition(), "D")); // Only part 1 of the new route was transmitted - use the old one until we have all messages for the new route. _provider.TryGetCurrentRoute(out var route); @@ -167,7 +167,7 @@ public void FillCacheAndTest() _provider.Cache.MaxDataAge = TimeSpan.FromDays(10000); reader.OnNewSequence += (source, msg) => { - _cache.Add(msg); + _cache.Add(_dummySource.Object, msg); }; reader.StartDecode(); reader.StopDecode(); diff --git a/src/devices/Nmea0183/tests/SentenceTests.cs b/src/devices/Nmea0183/tests/SentenceTests.cs index ca68c9de9e..a4283f4796 100644 --- a/src/devices/Nmea0183/tests/SentenceTests.cs +++ b/src/devices/Nmea0183/tests/SentenceTests.cs @@ -390,6 +390,20 @@ public void MwvDecode() Assert.Equal(0.7, wind.Speed.MetersPerSecond, 1); } + [Fact] + public void VhwEncode() + { + string text = "10.0,T,15.0,M,9.9,N,18.4,K,A"; + + WaterSpeedAndAngle water = new WaterSpeedAndAngle(Angle.FromDegrees(10), Angle.FromDegrees(15), + Speed.FromMetersPerSecond(5.1)); + + Assert.True(water.Valid); + Assert.True(water.HeadingMagnetic.HasValue); + Assert.True(water.HeadingTrue.HasValue); + Assert.Equal(text, water.ToNmeaParameterList()); + } + [Fact] public void ZdaDecode() { @@ -586,7 +600,7 @@ public void StalkEncode() [InlineData("$IIDBK,29.2,f,8.90,M,4.9,F*0B")] // Unknown sentence (for now) [InlineData("$GPGLL,4729.49680,N,00930.39770,E,115611.000,A,D*54")] [InlineData("$GPRTE,1,1,c,Route 008,R1,R2,R3,R4,R5*39")] - [InlineData("$YDVHW,,T,,M,3.1,N,5.7,K,*64")] + [InlineData("$YDVHW,,T,,M,3.1,N,5.7,K,A*25")] [InlineData("$ENRPM,S,1,3200,100,A*7B")] [InlineData("$ECMDA,30.12,I,1.020,B,18.5,C,,C,38.7,,4.2,C,,T,,M,,N,,M*37")] [InlineData("$YDGSV,5,1,18,19,29,257,45,22,30,102,45,04,76,143,44,06,47,295,42*73")] @@ -677,7 +691,7 @@ public void CanParseAllTheseMessages(string input) [InlineData("$GPGLL,4729.49680,N,00930.39770,E,115611.000,A,D")] [InlineData("$IIXDR,C,18.20,C,ENV_WATER_T,C,28.69,C,ENV_OUTAIR_T,P,101400,P,ENV_ATMOS_P")] [InlineData("$GPRMB,A,2.341,L,R3,R4,4728.92180,N,00930.33590,E,0.009,192.9,2.5,V,D")] - [InlineData("$YDVHW,,T,,M,3.1,N,5.7,K,")] + [InlineData("$YDVHW,,T,,M,3.1,N,5.7,K,A")] [InlineData("$YDGSV,5,1,18,19,29,257,45,22,30,102,45,04,76,143,44,06,47,295,42")] [InlineData("$YDMWD,336.8,T,333.8,M,21.6,N,11.1,M")] [InlineData("$APHTC,V,10.0,L,R,N,12.3,13.4,2.0,1.0,15.1,0.5,16.2,T")]