diff --git a/.github/workflows/Build_Proxy.yml b/.github/workflows/Build_Proxy.yml new file mode 100644 index 00000000..99a875d4 --- /dev/null +++ b/.github/workflows/Build_Proxy.yml @@ -0,0 +1,41 @@ +name: Build Proxy + +on: ['push'] + +env: + DOTNET_VERSION: '6.0.x' + +jobs: + build: + strategy: + matrix: + os: ['windows', 'ubuntu'] + runs-on: ${{ matrix.os }}-latest + + steps: + - name: Checkout repository content + uses: actions/checkout@v3 + + - name: Setup .NET Core SDK + uses: actions/setup-dotnet@v2 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} + + - name: Install dependencies + run: dotnet restore + + - name: Build + run: dotnet build --configuration Release --no-restore + + - name: Publish + run: dotnet publish --configuration Release --self-contained true --use-current-runtime + + - name: Copy files + run: cp -r ./HermesProxy/bin/*/Release/*/*/publish/ publish + + - name: Upload build artifact + uses: actions/upload-artifact@v3 + with: + name: HermesProxy-${{ matrix.os }}-${{ runner.arch }}-${{ github.sha }} + path: publish + if-no-files-found: error diff --git a/Framework/Configuration/Configuration.cs b/Framework/Configuration/Configuration.cs index 839bae21..d02fd39c 100644 --- a/Framework/Configuration/Configuration.cs +++ b/Framework/Configuration/Configuration.cs @@ -46,26 +46,11 @@ private static KeyValueConfigurationCollection GetConfiguration() } ++i; } - // load different config file - if (configFile != null) - { - string configPath = Path.Combine(Environment.CurrentDirectory, configFile); - - try - { - // Get the mapped configuration file - var config = ConfigurationManager.OpenExeConfiguration(configPath); - - - settings = ((AppSettingsSection)config.GetSection("appSettings")).Settings; - } - catch (Exception ex) - { - Console.WriteLine("Could not load config file {0}, reason: {1}", configPath, ex.Message); - } - } + + ExeConfigurationFileMap map = new ExeConfigurationFileMap { ExeConfigFilename = "HermesProxy.dll.config" }; + var config = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None); if (settings == null) - settings = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None).AppSettings.Settings; + settings = config.AppSettings.Settings; // override config options with options from command line foreach (var pair in opts) diff --git a/Framework/Configuration/Settings.cs b/Framework/Configuration/Settings.cs index 0aa757b5..3807000e 100644 --- a/Framework/Configuration/Settings.cs +++ b/Framework/Configuration/Settings.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using System.Net; namespace Framework { @@ -12,15 +13,16 @@ public static class Settings public static readonly string ClientSeed = Conf.GetString("ClientSeed", "179D3DC3235629D07113A9B3867F97A7"); public static readonly ClientVersionBuild ClientBuild = Conf.GetEnum("ClientBuild", ClientVersionBuild.V2_5_2_40892); public static readonly ClientVersionBuild ServerBuild = Conf.GetEnum("ServerBuild", ClientVersionBuild.V2_4_3_8606); - public static readonly string ServerAddress = Conf.GetString("ServerAddress", "127.0.0.1"); + public static readonly string ServerAddress = Dns.GetHostAddresses(Conf.GetString("ServerAddress", "127.0.0.1")).GetValue(0).ToString(); public static readonly int ServerPort = Conf.GetInt("ServerPort", 3724); public static readonly string ReportedOS = Conf.GetString("ReportedOS", "OSX"); - public static readonly string ReportedPlatform = Conf.GetString("ReportedPlatform", "PPC"); + public static readonly string ReportedPlatform = Conf.GetString("ReportedPlatform", "x86"); public static readonly string ExternalAddress = Conf.GetString("ExternalAddress", "127.0.0.1"); public static readonly int RestPort = Conf.GetInt("RestPort", 8081); public static readonly int BNetPort = Conf.GetInt("BNetPort", 1119); - public static readonly int RealmPort = Conf.GetInt("RealmPort", 8085); + public static readonly int RealmPort = Conf.GetInt("RealmPort", 8084); public static readonly int InstancePort = Conf.GetInt("InstancePort", 8086); public static readonly bool DebugOutput = Conf.GetBoolean("DebugOutput", false); + public static readonly bool PacketsLog = Conf.GetBoolean("PacketsLog", true); } } diff --git a/Framework/Logging/Log.cs b/Framework/Logging/Log.cs index ea342d8c..31757605 100644 --- a/Framework/Logging/Log.cs +++ b/Framework/Logging/Log.cs @@ -31,40 +31,36 @@ public static class Log }; static BlockingCollection<(LogType Type, string Message)> logQueue = new(); - - public static bool IsLogging; + private static Thread? _logOutputThread = null; + public static bool IsLogging => _logOutputThread != null && !logQueue.IsCompleted; /// /// Start the logging Thread and take logs out of the /// public static void Start() { - var logThread = new Thread(() => + if (_logOutputThread == null) { - IsLogging = true; - - while (IsLogging) + _logOutputThread = new Thread(() => { - Thread.Sleep(1); + foreach (var msg in logQueue.GetConsumingEnumerable()) + { + if (msg.Type == LogType.Debug && !Framework.Settings.DebugOutput) + continue; - if (!logQueue.TryTake(out var msg)) - continue; + Console.Write($"{DateTime.Now:HH:mm:ss} |"); - if (msg.Type == LogType.Debug && !Framework.Settings.DebugOutput) - continue; + Console.ForegroundColor = LogToColorType[msg.Type].Color; + Console.Write($"{LogToColorType[msg.Type].Type}"); + Console.ResetColor(); - Console.Write($"{DateTime.Now:H:mm:ss} |"); + Console.WriteLine($"| {msg.Message}"); + } + }); - Console.ForegroundColor = LogToColorType[msg.Type].Color; - Console.Write($"{LogToColorType[msg.Type].Type}"); - Console.ResetColor(); - - Console.WriteLine($"| {msg.Message}"); - } - }); - IsLogging = true; - logThread.IsBackground = true; - logThread.Start(); + _logOutputThread.IsBackground = true; + _logOutputThread.Start(); + } } public static void Print(LogType type, object text, [CallerMemberName] string method = "", [CallerFilePath] string path = "") diff --git a/HermesProxy/App.config b/HermesProxy/App.config index c45f1cd0..912d2f9c 100644 --- a/HermesProxy/App.config +++ b/HermesProxy/App.config @@ -5,6 +5,7 @@ Option: ClientBuild Description: The version of the client you will play with. Default: "40618" (1.14.0) + "40892" (2.5.2) --> - + + + - \ No newline at end of file + diff --git a/HermesProxy/Auth/AuthClient.cs b/HermesProxy/Auth/AuthClient.cs index 43171529..a702d7fd 100644 --- a/HermesProxy/Auth/AuthClient.cs +++ b/HermesProxy/Auth/AuthClient.cs @@ -5,6 +5,7 @@ using System.Net.Sockets; using HermesProxy.Enums; using System.Numerics; +using System.Threading.Tasks; using Framework.Constants; using Framework.Cryptography; using Framework; @@ -15,26 +16,35 @@ namespace HermesProxy.Auth { public class AuthClient { + GlobalSessionData _globalSession; Socket _clientSocket; - bool? _isSuccessful = null; + TaskCompletionSource _response; byte[] _passwordHash; BigInteger _key; byte[] _m2; bool _hasRealmList; string _username; - string _password; string _locale; - public bool ConnectToAuthServer(string username, string password, string locale) + public AuthClient(GlobalSessionData globalSession) + { + _globalSession = globalSession; + } + + public GlobalSessionData GetSession() + { + return _globalSession; + } + + public AuthResult ConnectToAuthServer(string username, string password, string locale) { _username = username; - _password = password; _locale = locale; - _isSuccessful = null; + _response = new (); _hasRealmList = false; - string authstring = $"{_username.ToUpper()}:{_password}"; + string authstring = $"{_username.ToUpper()}:{password}"; _passwordHash = HashAlgorithm.SHA1.Hash(Encoding.ASCII.GetBytes(authstring.ToUpper())); try @@ -48,15 +58,19 @@ public bool ConnectToAuthServer(string username, string password, string locale) catch (Exception ex) { Log.Print(LogType.Error, $"Socket Error: {ex.Message}"); - _isSuccessful = false; + _response.SetResult(AuthResult.FAIL_INTERNAL_ERROR); } - while (_isSuccessful == null) - { } + _response.Task.Wait(); - return (bool)_isSuccessful; + return _response.Task.Result; } + private void SetAuthResponse(AuthResult response) + { + _response.TrySetResult(response); + } + public void Disconnect() { if (!IsConnected()) @@ -89,7 +103,7 @@ private void ConnectCallback(IAsyncResult AR) catch (Exception ex) { Log.Print(LogType.Error, $"Connect Error: {ex.Message}"); - _isSuccessful = false; + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); } } @@ -101,8 +115,7 @@ private void ReceiveCallback(IAsyncResult AR) if (received == 0) { - if (_isSuccessful == null) - _isSuccessful = false; + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); Log.Print(LogType.Error, "Socket Closed By Server"); return; @@ -122,7 +135,7 @@ private void ReceiveCallback(IAsyncResult AR) catch (Exception ex) { Log.Print(LogType.Error, $"Packet Read Error: {ex.Message}"); - _isSuccessful = false; + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); } } @@ -135,7 +148,7 @@ private void SendCallback(IAsyncResult AR) catch (Exception ex) { Log.Print(LogType.Error, $"Packet Send Error: {ex.Message}"); - _isSuccessful = false; + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); } } @@ -148,7 +161,7 @@ private void SendPacket(ByteBuffer packet) catch (Exception ex) { Log.Print(LogType.Error, $"Packet Write Error: {ex.Message}"); - _isSuccessful = false; + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); } } @@ -171,7 +184,7 @@ private void HandlePacket(byte[] buffer, int size) break; default: Log.Print(LogType.Error, $"No handler for opcode {opcode}!"); - _isSuccessful = false; + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); break; } } @@ -207,7 +220,7 @@ private void HandleLogonChallenge(ByteBuffer packet) if (error != AuthResult.SUCCESS) { Log.Print(LogType.Error, $"Login failed. Reason: {error}"); - _isSuccessful = false; + SetAuthResponse(error); return; } @@ -375,7 +388,7 @@ private void HandleLogonProof(ByteBuffer packet) if (error != AuthResult.SUCCESS) { Log.Print(LogType.Error, $"Login failed. Reason: {error}"); - _isSuccessful = false; + SetAuthResponse(error); return; } @@ -408,12 +421,12 @@ private void HandleLogonProof(ByteBuffer packet) if (!equal) { Log.Print(LogType.Error, "Authentication failed!"); - _isSuccessful = false; + SetAuthResponse(AuthResult.FAIL_INTERNAL_ERROR); } else { Log.Print(LogType.Network, "Authentication succeeded!"); - _isSuccessful = true; + SetAuthResponse(AuthResult.SUCCESS); } } @@ -471,7 +484,7 @@ private void HandleRealmList(ByteBuffer packet) realmInfo.Name = packet.ReadCString(); string addressAndPort = packet.ReadCString(); string[] strArr = addressAndPort.Split(':'); - realmInfo.Address = strArr[0]; + realmInfo.Address = Dns.GetHostAddresses(strArr[0]).GetValue(0).ToString(); realmInfo.Port = UInt16.Parse(strArr[1]); realmInfo.Population = packet.ReadFloat(); realmInfo.CharacterCount = packet.ReadUInt8(); @@ -488,7 +501,7 @@ private void HandleRealmList(ByteBuffer packet) realmList.Add(realmInfo); } - RealmManager.Instance.UpdateRealms(realmList); + GetSession().RealmManager.UpdateRealms(realmList); _hasRealmList = true; } } diff --git a/HermesProxy/Auth/AuthCommand.cs b/HermesProxy/Auth/AuthCommand.cs index 13129528..cdca5166 100644 --- a/HermesProxy/Auth/AuthCommand.cs +++ b/HermesProxy/Auth/AuthCommand.cs @@ -6,6 +6,7 @@ namespace HermesProxy.Auth { + // ReSharper disable InconsistentNaming public enum AuthCommand : byte { LOGON_CHALLENGE = 0x00, @@ -17,4 +18,5 @@ public enum AuthCommand : byte TRANSFER_RESUME = 0x33, TRANSFER_CANCEL = 0x34 } -} \ No newline at end of file + // ReSharper restore InconsistentNaming +} diff --git a/HermesProxy/Auth/AuthResult.cs b/HermesProxy/Auth/AuthResult.cs index 86f55862..319243f9 100644 --- a/HermesProxy/Auth/AuthResult.cs +++ b/HermesProxy/Auth/AuthResult.cs @@ -1,28 +1,45 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace HermesProxy.Auth +namespace HermesProxy.Auth { + // ReSharper disable InconsistentNaming public enum AuthResult : byte - { - SUCCESS = 0, - FAILURE = 0x01, - UNKNOWN1 = 0x02, - ACCOUNT_BANNED = 0x03, - NO_MATCH = 0x04, - UNKNOWN2 = 0x05, - ACCOUNT_IN_USE = 0x06, - PREPAID_TIME_LIMIT = 0x07, - SERVER_FULL = 0x08, - WRONG_BUILD_NUMBER = 0x09, - UPDATE_CLIENT = 0x0a, - UNKNOWN3 = 0x0b, - ACCOUNT_FREEZED = 0x0c, - UNKNOWN4 = 0x0d, - UNKNOWN5 = 0x0e, - PARENTAL_CONTROL = 0x0f + { // See vMangos + SUCCESS = 0x00, + FAIL_UNKNOWN0 = 0x01, // ? Unable to connect + FAIL_UNKNOWN1 = 0x02, // ? Unable to connect + FAIL_BANNED = 0x03, // This account has been closed and is no longer available for use. Please go to /banned.html for further information. + + FAIL_UNKNOWN_ACCOUNT = 0x04, // The information you have entered is not valid. Please check the spelling of the account name and password. If you need help in retrieving a lost or stolen password, see for more information + FAIL_INCORRECT_PASSWORD = 0x05, // The information you have entered is not valid. Please check the spelling of the account name and password. If you need help in retrieving a lost or stolen password, see for more information + // client reject next login attempts after this error, so in code used FAIL_UNKNOWN_ACCOUNT for both cases + + FAIL_ALREADY_ONLINE = 0x06, // This account is already logged into . Please check the spelling and try again. + FAIL_NO_TIME = 0x07, // You have used up your prepaid time for this account. Please purchase more to continue playing + FAIL_DB_BUSY = 0x08, // Could not log in to at this time. Please try again later. + FAIL_VERSION_INVALID = 0x09, // Unable to validate game version. This may be caused by file corruption or interference of another program. Please visit for more information and possible solutions to this issue. + FAIL_VERSION_UPDATE = 0x0A, // Downloading + FAIL_INVALID_SERVER = 0x0B, // Unable to connect + FAIL_SUSPENDED = 0x0C, // This account has been temporarily suspended. Please go to /banned.html for further information + FAIL_FAIL_NOACCESS = 0x0D, // Unable to connect + SUCCESS_SURVEY = 0x0E, // Connected. + FAIL_PARENTCONTROL = 0x0F, // Access to this account has been blocked by parental controls. Your settings may be changed in your account preferences at + // TBC+ + FAIL_LOCKED_ENFORCED = 0x10, // You have applied a lock to your account. You can change your locked status by calling your account lock phone number. + // WOTLK+ + FAIL_TRIAL_ENDED = 0x11, // Your trial subscription has expired. Please visit to upgrade your account. + FAIL_USE_BATTLENET = 0x12, // This account is now attached to a Battle.net account. Please login with your Battle.net account email address and password. + FAIL_ANTI_INDULGENCE = 0x13, // Unable to connect + FAIL_EXPIRED = 0x14, // Unable to connect + FAIL_NO_GAME_ACCOUNT = 0x15, // Unable to connect + FAIL_CHARGEBACK = 0x16, // This World of Warcraft account has been temporary closed due to a chargeback on its subscription. Please refer to this for further information. + FAIL_IGR_WITHOUT_BNET = 0x17, // In order to log in to World of Warcraft using IGR time, this World of Warcraft account must first be merged with a Battle.net account. Please visit to merge this account. + FAIL_GAME_ACCOUNT_LOCKE = 0x18, // Access to your account has been temporarily disabled. + FAIL_UNLOCKABLE_LOCK = 0x19, // Your account has been locked but can be unlocked. + FAIL_CONVERSION_REQUIRE = 0x20, // This account needs to be converted to a Battle.net account. Please [Click Here] or go to: to begin conversion. + FAIL_DISCONNECTED = 0xFF, + + // HermesProxy internal variables + FAIL_INTERNAL_ERROR = 0xFE, // Internal error + FAIL_WRONG_MODERN_VER = 0xFD, // Modern client is using unsupported version } + // ReSharper restore InconsistentNaming } diff --git a/HermesProxy/BnetServer/Managers/Global.cs b/HermesProxy/BnetServer/Managers/Global.cs index 5b18c183..35439b91 100644 --- a/HermesProxy/BnetServer/Managers/Global.cs +++ b/HermesProxy/BnetServer/Managers/Global.cs @@ -43,7 +43,5 @@ public static void AddNewSessionByKey(ulong connectKey, GlobalSessionData sessio else SessionsByKey.Add(connectKey, session); } - - public static RealmManager RealmMgr { get { return RealmManager.Instance; } } public static LoginServiceManager LoginServiceMgr { get { return LoginServiceManager.Instance; } } } \ No newline at end of file diff --git a/HermesProxy/BnetServer/Networking/RestSession.cs b/HermesProxy/BnetServer/Networking/RestSession.cs index 277cf3f0..0d708f92 100644 --- a/HermesProxy/BnetServer/Networking/RestSession.cs +++ b/HermesProxy/BnetServer/Networking/RestSession.cs @@ -9,97 +9,102 @@ using System.Net.Sockets; using System.Security.Cryptography; using System.Text; +using System.Threading.Tasks; +using HermesProxy.Auth; +using HermesProxy.Enums; namespace BNetServer.Networking { public class RestSession : SSLSocket { + private const string BNET_SERVER_BASE_PATH = "/bnetserver/"; + private const string TICKET_PREFIX = "HP-"; // Hermes Proxy + public RestSession(Socket socket) : base(socket) { } public override void Accept() { + // Setup SSL connection AsyncHandshake(Global.LoginServiceMgr.GetCertificate()); } - public async override void ReadHandler(byte[] data, int receivedLength) + public override async void ReadHandler(byte[] data, int receivedLength) { var httpRequest = HttpHelper.ParseRequest(data, receivedLength); - if (httpRequest == null) + if (httpRequest == null || !RequestRouter(httpRequest)) + { + CloseSocket(); return; + } - switch (httpRequest.Method) + await AsyncRead(); // Read next request + } + + public bool RequestRouter(HttpHeader httpRequest) + { + if (!httpRequest.Path.StartsWith(BNET_SERVER_BASE_PATH)) { - case "GET": - default: - SendResponse(HttpCode.Ok, Global.LoginServiceMgr.GetFormInput()); - break; - case "POST": - HandleLoginRequest(httpRequest); - return; + SendEmptyResponse(HttpCode.NotFound); + return false; } - await AsyncRead(); + string path = httpRequest.Path.Substring(BNET_SERVER_BASE_PATH.Length); + string[] pathElements = path.Split('/'); + + switch (pathElements[0], httpRequest.Method) + { + case ("login", "GET"): + SendResponse(HttpCode.Ok, Global.LoginServiceMgr.GetFormInput()); + return true; + case ("login", "POST"): + HandleLoginRequest(pathElements, httpRequest); + return true; + default: + SendEmptyResponse(HttpCode.NotFound); + return false; + }; } - public void HandleLoginRequest(HttpHeader request) + public Task HandleLoginRequest(string[] pathElements, HttpHeader request) { LogonData loginForm = Json.CreateObject(request.Content); - LogonResult loginResult = new(); if (loginForm == null) - { - loginResult.AuthenticationState = "LOGIN"; - loginResult.ErrorCode = "UNABLE_TO_DECODE"; - loginResult.ErrorMessage = "There was an internal error while connecting to Battle.net. Please try again later."; - SendResponse(HttpCode.BadRequest, loginResult); - return; - } + return SendEmptyResponse(HttpCode.InternalServerError); + + HermesProxy.GlobalSessionData globalSession = new(); + + // Format: "login/$platform/$build/$locale/" + globalSession.OS = pathElements[1]; + globalSession.Build = UInt32.Parse(pathElements[2]); + globalSession.Locale = pathElements[3]; + + // Should never happen. Session.HandleLogon checks version already + if (Framework.Settings.ClientBuild != (ClientVersionBuild) globalSession.Build) + return SendAuthError(AuthResult.FAIL_WRONG_MODERN_VER); string login = ""; string password = ""; - for (int i = 0; i < loginForm.Inputs.Count; ++i) + foreach (var field in loginForm.Inputs) { - switch (loginForm.Inputs[i].Id) + switch (field.Id) { - case "account_name": - login = loginForm.Inputs[i].Value; - break; - case "password": - password = loginForm.Inputs[i].Value; - break; + case "account_name": login = field.Value; break; + case "password": password = field.Value; break; } } - HermesProxy.GlobalSessionData globalSession = new(); - - // We pass OS, Build and Locale in Path from HandleLogon - string str = request.Path; - str = str.Replace("/bnetserver/login/", ""); - str = str.Substring(0, str.IndexOf("/")); - globalSession.OS = str; - str = request.Path; - str = str.Replace("/bnetserver/login/", ""); - str = str.Substring(str.IndexOf('/') + 1); - str = str.Substring(0, str.IndexOf("/")); - globalSession.Build = UInt32.Parse(str); - str = request.Path; - str = str.Replace("/bnetserver/login/", ""); - str = str.Substring(str.IndexOf('/') + 1); - str = str.Substring(str.IndexOf('/') + 1); - str = str.Substring(0, str.IndexOf("/")); - globalSession.Locale = str; - - globalSession.AuthClient = new(); - if (globalSession.AuthClient.ConnectToAuthServer(login, password, globalSession.Locale)) - { - string loginTicket = ""; - uint loginTicketExpiry = (uint)(Time.UnixTime + 3600); - - if (loginTicket.IsEmpty() || loginTicketExpiry < Time.UnixTime) - { - byte[] ticket = Array.Empty().GenerateRandomKey(20); - loginTicket = "TC-" + ticket.ToHexString(); - } + globalSession.AuthClient = new(globalSession); + AuthResult response = globalSession.AuthClient.ConnectToAuthServer(login, password, globalSession.Locale); + if (response != AuthResult.SUCCESS) + { // Error handling + return SendAuthError(response); + } + else + { // Ticket creation + LogonResult loginResult = new(); + byte[] ticket = Array.Empty().GenerateRandomKey(20); + string loginTicket = TICKET_PREFIX + ticket.ToHexString(); globalSession.LoginTicket = loginTicket; globalSession.Username = login; @@ -109,27 +114,35 @@ public void HandleLoginRequest(HttpHeader request) loginResult.LoginTicket = loginTicket; loginResult.AuthenticationState = "DONE"; - SendResponse(HttpCode.Ok, loginResult); - } - else - { - loginResult.AuthenticationState = "LOGIN"; - loginResult.ErrorCode = "UNABLE_TO_DECODE"; - loginResult.ErrorMessage = "There was an internal error while connecting to Battle.net. Please try again later."; - SendResponse(HttpCode.BadRequest, loginResult); + return SendResponse(HttpCode.Ok, loginResult); } } - async void SendResponse(HttpCode code, T response) + async Task SendResponse(HttpCode code, T response) { await AsyncWrite(HttpHelper.CreateResponse(code, Json.CreateString(response))); } - string CalculateShaPassHash(string name, string password) + async Task SendAuthError(AuthResult response) + { + LogonResult loginResult = new(); + (loginResult.AuthenticationState, loginResult.ErrorCode, loginResult.ErrorMessage) = response switch + { + AuthResult.FAIL_UNKNOWN_ACCOUNT => ("LOGIN", "UNABLE_TO_DECODE", "Invalid username or password."), + AuthResult.FAIL_INCORRECT_PASSWORD => ("LOGIN", "UNABLE_TO_DECODE", "Invalid password."), + AuthResult.FAIL_BANNED => ("LOGIN", "UNABLE_TO_DECODE", "This account has been closed and is no longer available for use."), + AuthResult.FAIL_SUSPENDED => ("LOGIN", "UNABLE_TO_DECODE", "This account has been temporarily suspended."), + + AuthResult.FAIL_INTERNAL_ERROR => ("LOGON", "UNABLE_TO_DECODE", "There was an internal error. Please try again later."), + _ => ("LOGON", "UNABLE_TO_DECODE", $"Error: {response}"), + }; + + await SendResponse(HttpCode.BadRequest, loginResult); + } + + async Task SendEmptyResponse(HttpCode code) { - SHA256 sha256 = SHA256.Create(); - var email = sha256.ComputeHash(Encoding.UTF8.GetBytes(name)); - return sha256.ComputeHash(Encoding.UTF8.GetBytes(email.ToHexString() + ":" + password)).ToHexString(true); + await SendResponse(code, new{}); } } } diff --git a/HermesProxy/BnetServer/Networking/Services/GameUtilities.cs b/HermesProxy/BnetServer/Networking/Services/GameUtilities.cs index 8097d025..92d12bdb 100644 --- a/HermesProxy/BnetServer/Networking/Services/GameUtilities.cs +++ b/HermesProxy/BnetServer/Networking/Services/GameUtilities.cs @@ -68,7 +68,7 @@ BattlenetRpcErrorCode HandleGetAllValuesForAttribute(GetAllValuesForAttributeReq if (request.AttributeKey == $"Command_RealmListRequest_v1_{GetCommandEndingForVersion()}") { - Global.RealmMgr.WriteSubRegions(response); + GetSession().RealmManager.WriteSubRegions(response); return BattlenetRpcErrorCode.Ok; } @@ -135,7 +135,7 @@ BattlenetRpcErrorCode GetLastCharPlayed(Dictionary Params, Clie var lastPlayerChar = _globalSession.GameAccountInfo.LastPlayedCharacters.LookupByKey(subRegion.StringValue); if (lastPlayerChar != null) { - var compressed = Global.RealmMgr.GetRealmEntryJSON(lastPlayerChar.RealmId, _globalSession.Build); + var compressed = GetSession().RealmManager.GetRealmEntryJSON(lastPlayerChar.RealmId, _globalSession.Build); if (compressed.Length == 0) return BattlenetRpcErrorCode.UtilServerFailedToSerializeResponse; @@ -185,7 +185,7 @@ BattlenetRpcErrorCode GetRealmList(Dictionary Params, ClientRes if (subRegion != null) subRegionId = subRegion.StringValue; - var compressed = Global.RealmMgr.GetRealmList(_globalSession.Build, subRegionId); + var compressed = GetSession().RealmManager.GetRealmList(_globalSession.Build, subRegionId); if (compressed.Length == 0) return BattlenetRpcErrorCode.UtilServerFailedToSerializeResponse; @@ -196,11 +196,11 @@ BattlenetRpcErrorCode GetRealmList(Dictionary Params, ClientRes response.Attribute.Add(attribute); var realmCharacterCounts = new RealmCharacterCountList(); - foreach (var characterCount in _globalSession.GameAccountInfo.CharacterCounts) + foreach (var realm in _globalSession.RealmManager.GetRealms()) { var countEntry = new RealmCharacterCountEntry(); - countEntry.WowRealmAddress = (int)characterCount.Key; - countEntry.Count = characterCount.Value; + countEntry.WowRealmAddress = (int)realm.Id.GetAddress(); + countEntry.Count = realm.CharacterCount; realmCharacterCounts.Counts.Add(countEntry); } @@ -218,7 +218,7 @@ BattlenetRpcErrorCode JoinRealm(Dictionary Params, ClientRespon { Variant realmAddress = Params.LookupByKey("Param_RealmAddress"); if (realmAddress != null) - return Global.RealmMgr.JoinRealm(_globalSession, (uint)realmAddress.UintValue, _globalSession.Build, GetRemoteIpEndPoint().Address, _clientSecret, _globalSession.GameAccountInfo.Name, response); + return GetSession().RealmManager.JoinRealm(_globalSession, (uint)realmAddress.UintValue, _globalSession.Build, GetRemoteIpEndPoint().Address, _clientSecret, _globalSession.GameAccountInfo.Name, response); return BattlenetRpcErrorCode.WowServicesInvalidJoinTicket; } diff --git a/HermesProxy/BnetServer/Networking/Session.cs b/HermesProxy/BnetServer/Networking/Session.cs index 29fe367d..931df8a5 100644 --- a/HermesProxy/BnetServer/Networking/Session.cs +++ b/HermesProxy/BnetServer/Networking/Session.cs @@ -31,6 +31,11 @@ public Session(Socket socket) : base(socket) _responseCallbacks = new Dictionary>(); } + public GlobalSessionData GetSession() + { + return _globalSession; + } + public override void Accept() { string ipAddress = GetRemoteIpEndPoint().ToString(); @@ -62,12 +67,12 @@ public async override void ReadHandler(byte[] data, int receivedLength) var handler = Global.LoginServiceMgr.GetHandler(header.ServiceHash, header.MethodId); if (handler != null) { - Log.Print(LogType.Debug, $"Service {header.ServiceHash} Method {header.MethodId} Token {header.Token}"); + Log.Print(LogType.Debug, $"Service {(OriginalHash)header.ServiceHash}(0x{header.ServiceHash:X8}) Method {header.MethodId} Token {header.Token}"); handler.Invoke(this, header.Token, stream); } else { - Log.Print(LogType.Error, $"{GetClientInfo()} tried to call not implemented methodId: {header.MethodId} for servicehash: {header.ServiceHash}"); + Log.Print(LogType.Error, $"{GetClientInfo()} tried to call not implemented methodId: {header.MethodId} for servicehash: {(OriginalHash)header.ServiceHash}(0x{header.ServiceHash:X8})"); SendResponse(header.Token, BattlenetRpcErrorCode.RpcNotImplemented); } } @@ -196,7 +201,6 @@ public class GameAccountInfo public bool IsBanned; public bool IsPermanenetlyBanned; - public Dictionary CharacterCounts; public Dictionary LastPlayedCharacters; public GameAccountInfo(string name) @@ -213,7 +217,6 @@ public GameAccountInfo(string name) else DisplayName = Name; - CharacterCounts = new Dictionary(); LastPlayedCharacters = new Dictionary(); } } diff --git a/HermesProxy/CSV/TaxiNodes1.csv b/HermesProxy/CSV/TaxiNodes1.csv new file mode 100644 index 00000000..dbbae8da --- /dev/null +++ b/HermesProxy/CSV/TaxiNodes1.csv @@ -0,0 +1,86 @@ +ID,ContinentID,X,Y,Z +1,0,-8888,0,94 +2,0,-8840,489,109 +3,0,16391,16341,69 +4,0,-10628,1036,34 +5,0,-9429,-2231,68 +6,0,-4821,-1155,502 +7,0,-3792,-783,9 +8,0,-5421,-2930,347 +9,0,-14271,299,31 +10,0,478,1536,131 +11,0,1568,267,-43 +12,0,-10515,-1261,41 +13,0,0,-859,58 +14,0,-711,-515,26 +15,0,2253,-5344,83 +16,0,-1240,-2515,22 +17,0,-916,-3496,70 +18,0,-14444,509,26 +19,0,-14473,464,36 +20,0,-12414,146,3 +21,0,-6633,-2180,244 +22,1,-1197,29,176 +23,1,1677,-4315,61 +24,0,-6666,-2222,278 +25,1,-441,-2596,96 +26,1,6341,557,16 +27,1,8643,841,23 +28,1,2827,-289,107 +29,1,966,1040,104 +30,1,-5407,-2414,90 +31,1,-4491,-775,-39 +32,1,-3825,-4516,10 +33,1,2681,1461,232 +34,1,-1965,-5824,-1 +35,1,1320,-4649,21 +36,0,-8644,433,59 +37,1,139,1325,193 +38,1,-1767,3263,4 +39,1,-7223,-3734,8 +40,1,-7048,-3780,10 +41,1,-4373,3338,12 +42,1,-4419,199,25 +43,0,283,-2002,194 +44,1,3661,-4390,113 +45,0,-11112,-3435,79 +46,0,-986,-547,-3 +47,0,-12418,235,1 +48,1,5068,-337,367 +49,1,7458,-2487,462 +50,0,0,0,0 +51,0,0,0,0 +52,1,6799,-4742,701 +53,1,6813,-4611,710 +54,1,-4203,3284,-12 +55,1,-3147,-2842,34 +56,0,-10456,-3279,21 +57,1,8701,991,14 +58,1,3374,996,5 +59,30,574,-46,37 +60,30,-1335,-319,90 +61,1,2302,-2524,104 +62,1,7793,-2403,489 +63,1,7787,-2404,489 +64,1,2721,-3880,100 +65,1,6205,-1949,571 +66,0,931,-1430,64 +67,0,2271,-5340,87 +68,0,2327,-5286,81 +69,1,7470,-2123,492 +70,0,-7504,-2187,165 +71,0,-8364,-2738,185 +72,1,-6811,836,49 +73,1,-6761,772,88 +74,0,-6552,-1168,309 +75,0,-6554,-1100,309 +76,0,-635,-4720,5 +77,1,-2380,-1882,95 +78,0,3133,-3399,139 +79,1,-6113,-1142,-187 +80,1,-894,-3773,11 +81,131074,0,0,0 +84,0,2998,-3050,117 +85,0,3109,-4285,109 +86,0,2499,-4742,93 +87,0,1857,-3658,143 diff --git a/HermesProxy/CSV/TaxiNodes2.csv b/HermesProxy/CSV/TaxiNodes2.csv new file mode 100644 index 00000000..fd36c6ed --- /dev/null +++ b/HermesProxy/CSV/TaxiNodes2.csv @@ -0,0 +1,190 @@ +ID,ContinentID,X,Y,Z +1,0,-8888,0,94 +2,0,-8840,489,109 +3,0,16391,16341,69 +4,0,-10629,1036,34 +5,0,-9429,-2231,68 +6,0,-4821,-1155,502 +7,0,-3792,-783,9 +8,0,-5421,-2930,347 +9,0,-14271,299,31 +10,0,478,1536,131 +11,0,1568,267,-43 +12,0,-10515,-1261,41 +13,0,0,-859,58 +14,0,-711,-515,26 +15,0,2253,-5344,83 +16,0,-1240,-2515,22 +17,0,-916,-3496,70 +18,0,-14444,509,26 +19,0,-14473,464,36 +20,0,-12414,146,3 +21,0,-6633,-2180,244 +22,1,-1197,29,176 +23,1,1677,-4315,61 +24,0,-6666,-2222,278 +25,1,-441,-2596,96 +26,1,6341,557,16 +27,1,8643,841,23 +28,1,2827,-289,107 +29,1,966,1040,104 +30,1,-5407,-2414,90 +31,1,-4491,-775,-39 +32,1,-3825,-4516,10 +33,1,2681,1461,232 +34,1,-1965,-5824,-1 +35,1,1320,-4649,21 +36,0,-8644,433,59 +37,1,139,1325,193 +38,1,-1767,3263,4 +39,1,-7223,-3734,8 +40,1,-7048,-3780,10 +41,1,-4373,3338,12 +42,1,-4419,199,25 +43,0,283,-2002,194 +44,1,3661,-4390,113 +45,0,-11112,-3435,79 +46,0,-986,-547,-3 +47,0,-12418,235,1 +48,1,5068,-337,367 +49,1,7458,-2487,462 +50,0,0,0,0 +51,0,0,0,0 +52,1,6796,-4742,701 +53,1,6813,-4611,710 +54,1,-4203,3284,-12 +55,1,-3147,-2842,34 +56,0,-10456,-3279,21 +57,1,8701,991,14 +58,1,3374,996,5 +59,30,574,-46,37 +60,30,-1335,-319,90 +61,1,2302,-2524,104 +62,1,7793,-2403,489 +63,1,7787,-2404,489 +64,1,2721,-3880,100 +65,1,6205,-1949,571 +66,0,931,-1430,64 +67,0,2271,-5340,87 +68,0,2327,-5286,81 +69,1,7470,-2123,492 +70,0,-7504,-2187,165 +71,0,-8364,-2738,185 +72,1,-6811,836,49 +73,1,-6761,772,88 +74,0,-6552,-1168,309 +75,0,-6554,-1100,309 +76,0,-635,-4720,5 +77,1,-2380,-1882,95 +78,0,3133,-3399,139 +79,1,-6113,-1142,-187 +80,1,-894,-3773,11 +81,131074,0,0,0 +82,530,9375,-7165,9 +83,530,7594,-6784,86 +84,0,2998,-3050,117 +85,0,3109,-4285,109 +86,0,2499,-4742,93 +87,0,1857,-3658,143 +88,530,-4284,-11194,13 +89,0,0,0,0 +90,9770568,0,0,0 +91,530,-3996,-11892,0 +92,530,-3679,-11413,310 +93,530,-1933,-11954,57 +94,530,-4054,-11793,9 +95,530,-146,5532,30 +96,530,-145,5533,30 +97,530,-3968,-11929,-1 +98,530,-2662,-12144,16 +99,530,228,2633,87 +100,530,-673,2717,94 +101,530,199,4241,121 +102,530,-587,4101,91 +103,530,-1810,8032,-25 +104,530,-1824,8049,-26 +105,530,-1513,8140,-19 +106,530,-1511,8149,-18 +107,530,-1387,7782,-11 +108,530,-1376,7771,-10 +109,530,-1656,7724,-15 +110,530,-1658,7724,-15 +111,530,9335,-7883,74 +112,530,9335,-7809,136 +113,530,-1544,8792,35 +114,530,-1544,8792,35 +115,560,2384,1169,66 +116,560,2014,239,68 +117,530,213,6063,148 +118,530,219,7816,22 +119,530,-2729,7305,88 +120,530,-1261,7133,57 +121,530,-2987,3872,9 +122,530,3082,3596,144 +123,530,-3018,2557,79 +124,530,-3982,2156,105 +125,530,2183,6794,183 +126,530,2446,6020,154 +127,530,-2567,4423,39 +128,530,-1837,5301,-12 +129,530,-327,1020,54 +130,530,-178,1026,54 +131,530,-25,2133,112 +132,530,-25,2133,112 +133,530,-673,1855,68 +134,530,-673,1855,68 +135,530,-27,2126,111 +136,530,-27,2126,111 +137,530,298,1501,-14 +138,530,298,1501,-14 +139,530,4157,2959,352 +140,530,-3065,749,-10 +141,530,-1316,2358,88 +142,530,-29,2125,111 +143,1,-8360,-4327,-208 +144,1,-8162,-4796,35 +145,530,3079,3599,144 +146,530,2235,2793,128 +147,530,509,1988,109 +148,530,298,1501,-14 +149,530,276,1486,-15 +150,530,2974,1848,141 +151,530,91,5214,23 +152,530,4262,2136,139 +153,530,4266,2133,138 +154,0,20047,5200,19742 +155,530,4267,2133,138 +156,530,1857,5531,277 +157,530,2277,5983,142 +158,530,2278,5983,142 +159,530,-4073,1123,42 +160,530,2976,5501,143 +161,654135852,0,0,0 +162,530,-4100,950,22 +163,530,2028,4705,150 +164,530,966,7399,29 +166,1,3978,-1316,250 +167,1,3000,-3202,189 +168,1,2999,-3202,189 +169,530,-5224,631,48 +170,530,-5185,172,-11 +171,530,-3364,3650,284 +172,530,2531,7322,373 +173,530,-5141,620,82 +174,530,-1636,5275,-41 +179,1,-4566,-3226,34 +180,1,-3822,-4511,10 +181,1,-3822,-4509,10 +195,0,-11343,-216,75 +197,1,2066,-4999,251 +198,1,1340,-4631,54 +201,451,15992,-16371,76 +202,451,15991,-16371,76 +205,530,6789,-7747,126 +206,1,-4348,2427,6 +209,530,13008,-6911,9 +210,530,13008,-6912,9 +211,530,13007,-6911,9 +212,530,13188,-7047,4 +213,530,13012,-6908,9 +220,530,3051,3690,142 diff --git a/HermesProxy/CSV/TaxiPath1.csv b/HermesProxy/CSV/TaxiPath1.csv new file mode 100644 index 00000000..acb2322e --- /dev/null +++ b/HermesProxy/CSV/TaxiPath1.csv @@ -0,0 +1,288 @@ +"ID","FromTaxiNode","ToTaxiNode","Cost" +"6","2","4","110" +"7","4","2","110" +"8","5","2","210" +"9","2","5","210" +"12","6","2","50" +"13","2","6","50" +"15","8","6","110" +"16","6","8","110" +"17","7","6","330" +"18","6","7","330" +"20","11","10","110" +"21","10","11","110" +"22","12","2","330" +"23","2","12","330" +"24","13","11","330" +"25","11","13","330" +"26","14","6","330" +"27","6","14","330" +"30","16","6","530" +"31","6","16","530" +"32","17","11","530" +"33","11","17","530" +"34","20","18","630" +"35","18","20","630" +"36","18","21","630" +"37","21","18","630" +"38","21","11","630" +"39","11","21","630" +"40","2","19","630" +"41","19","2","630" +"42","23","22","50" +"44","25","22","110" +"45","25","23","110" +"46","22","25","110" +"47","23","25","110" +"50","28","26","330" +"51","26","28","330" +"52","29","22","210" +"53","22","29","210" +"54","30","22","430" +"55","22","30","430" +"56","32","31","430" +"57","31","32","730" +"58","33","26","330" +"59","26","33","330" +"82","18","56","630" +"101","26","27","0" +"102","27","26","0" +"121","56","18","630" +"141","37","32","530" +"161","38","22","530" +"162","22","38","530" +"163","32","37","530" +"181","26","32","630" +"182","32","26","630" +"201","39","32","630" +"222","32","39","730" +"223","40","23","730" +"224","23","40","730" +"225","41","26","730" +"226","26","41","730" +"227","42","22","730" +"228","22","42","730" +"229","43","14","330" +"230","14","43","730" +"241","34","35","0" +"242","44","23","830" +"243","23","44","830" +"244","45","2","830" +"245","2","45","830" +"249","4","5","210" +"250","4","12","330" +"252","12","4","110" +"253","46","7","0" +"254","5","4","110" +"255","4","19","630" +"256","19","4","530" +"257","5","12","330" +"258","12","5","210" +"259","12","19","630" +"260","19","12","330" +"261","12","45","830" +"262","45","12","330" +"263","6","43","730" +"264","43","6","730" +"265","8","7","330" +"266","7","8","110" +"267","8","16","530" +"268","16","8","110" +"269","7","16","530" +"270","16","7","330" +"271","7","14","330" +"272","14","7","330" +"273","16","14","330" +"274","14","16","530" +"275","16","43","730" +"276","43","16","530" +"279","25","29","210" +"280","29","25","210" +"281","25","30","430" +"282","30","25","430" +"283","25","44","830" +"284","44","25","830" +"285","47","35","0" +"286","48","25","930" +"287","25","48","930" +"289","26","49","830" +"290","22","44","830" +"291","44","22","830" +"292","50","36","0" +"293","51","50","0" +"295","50","51","0" +"298","52","49","830" +"301","35","20","0" +"302","35","24","0" +"303","54","24","0" +"304","55","25","630" +"305","58","25","110" +"306","53","48","930" +"307","48","53","1020" +"308","30","40","730" +"309","22","40","730" +"310","40","30","430" +"311","40","22","730" +"312","59","6","0" +"313","60","11","0" +"314","6","59","1020" +"315","62","27","0" +"316","63","22","0" +"317","21","56","710" +"318","56","21","630" +"319","21","17","630" +"320","17","21","630" +"321","17","13","330" +"322","13","17","530" +"323","39","31","430" +"324","31","39","730" +"325","31","41","630" +"326","41","31","430" +"327","61","23","530" +"328","23","61","530" +"329","64","26","730" +"330","26","64","730" +"332","64","65","730" +"333","61","25","530" +"334","25","61","530" +"335","23","55","630" +"336","55","23","630" +"338","23","48","830" +"339","52","65","730" +"341","48","23","930" +"343","56","20","630" +"344","20","56","630" +"345","22","55","630" +"346","66","14","330" +"347","14","66","830" +"348","55","22","630" +"349","43","67","1020" +"350","58","61","530" +"351","61","58","330" +"352","67","43","730" +"353","42","25","730" +"354","25","58","330" +"355","25","42","730" +"356","38","29","210" +"357","11","68","1020" +"358","29","38","530" +"359","68","11","1020" +"360","25","55","630" +"361","20","21","630" +"362","21","20","530" +"363","53","69","830" +"364","69","48","930" +"365","48","69","830" +"366","69","53","1020" +"367","49","52","1020" +"368","49","26","830" +"369","65","26","730" +"371","65","52","1020" +"372","65","64","730" +"373","37","41","730" +"374","41","37","730" +"375","42","38","730" +"376","38","42","730" +"377","70","21","830" +"378","21","70","830" +"379","70","56","830" +"380","56","70","830" +"381","71","45","830" +"382","45","71","830" +"383","11","60","1020" +"384","37","26","530" +"385","26","37","530" +"386","26","65","730" +"387","22","23","50" +"388","40","55","630" +"389","40","42","630" +"390","55","40","730" +"391","42","40","630" +"392","40","25","730" +"393","25","40","730" +"394","39","73","1020" +"395","40","72","1020" +"398","53","23","1020" +"399","23","53","1020" +"400","44","48","930" +"401","48","44","830" +"402","74","6","830" +"404","6","74","830" +"406","21","75","830" +"407","75","21","630" +"408","70","75","830" +"409","75","70","830" +"410","71","74","830" +"411","74","71","830" +"412","76","13","330" +"413","13","76","730" +"414","11","76","730" +"415","76","11","730" +"416","77","25","110" +"417","25","77","110" +"419","22","77","110" +"420","77","22","110" +"421","77","30","430" +"422","30","77","430" +"423","72","40","730" +"424","73","39","730" +"425","71","2","830" +"427","2","71","830" +"428","6","66","1020" +"429","66","6","1020" +"431","66","67","1020" +"432","67","66","1020" +"436","78","24","0" +"437","67","6","1020" +"438","6","67","1020" +"439","36","24","0" +"440","10","13","330" +"441","13","10","110" +"443","28","33","330" +"444","33","28","330" +"445","32","64","730" +"446","64","32","630" +"447","64","52","1030" +"448","52","64","730" +"449","72","42","730" +"450","42","72","1030" +"451","73","41","730" +"452","79","39","730" +"453","79","40","730" +"454","79","72","1030" +"455","79","73","1030" +"456","72","79","830" +"457","73","79","830" +"458","39","79","830" +"459","40","79","830" +"460","80","32","630" +"461","80","25","110" +"462","25","80","110" +"464","32","80","110" +"465","64","80","110" +"466","80","64","730" +"467","28","64","730" +"468","64","28","330" +"469","5","71","830" +"470","71","5","210" +"471","41","73","1030" +"472","81","24","0" +"473","76","68","1030" +"474","68","76","730" +"475","43","66","1020" +"476","66","43","730" +"477","37","33","330" +"478","33","37","530" +"479","49","65","730" +"480","65","49","1020" +"481","61","44","830" +"482","44","61","530" +"484","17","76","730" +"485","76","17","530" +"486","42","30","430" +"487","30","42","730" +"494","84","85","0" +"495","84","86","0" +"496","84","87","0" +"499","53","44","830" +"500","44","53","1020" diff --git a/HermesProxy/CSV/TaxiPath2.csv b/HermesProxy/CSV/TaxiPath2.csv new file mode 100644 index 00000000..c30f3e81 --- /dev/null +++ b/HermesProxy/CSV/TaxiPath2.csv @@ -0,0 +1,515 @@ +"ID","FromTaxiNode","ToTaxiNode","Cost" +"6","2","4","110" +"7","4","2","110" +"8","5","2","210" +"9","2","5","210" +"12","6","2","50" +"13","2","6","50" +"15","8","6","110" +"16","6","8","110" +"17","7","6","330" +"18","6","7","330" +"20","11","10","110" +"21","10","11","110" +"22","12","2","330" +"23","2","12","330" +"24","13","11","330" +"25","11","13","330" +"26","14","6","330" +"27","6","14","330" +"30","16","6","530" +"31","6","16","530" +"32","17","11","530" +"33","11","17","530" +"34","20","18","630" +"35","18","20","630" +"36","18","21","630" +"37","21","18","630" +"38","21","11","630" +"39","11","21","630" +"40","2","19","630" +"41","19","2","630" +"42","23","22","50" +"44","25","22","110" +"45","25","23","110" +"46","22","25","110" +"47","23","25","110" +"50","28","26","330" +"51","26","28","330" +"52","29","22","210" +"53","22","29","210" +"54","30","22","430" +"55","22","30","430" +"56","32","31","430" +"57","31","32","730" +"58","33","26","330" +"59","26","33","330" +"82","18","56","630" +"101","26","27","0" +"102","27","26","0" +"121","56","18","630" +"141","37","32","530" +"161","38","22","530" +"162","22","38","530" +"163","32","37","530" +"181","26","32","630" +"182","32","26","630" +"201","39","32","630" +"222","32","39","730" +"223","40","23","730" +"224","23","40","730" +"225","41","26","730" +"226","26","41","730" +"227","42","22","730" +"228","22","42","730" +"229","43","14","330" +"230","14","43","730" +"241","34","80","0" +"242","44","23","830" +"243","23","44","830" +"244","45","2","830" +"245","2","45","830" +"249","4","5","210" +"250","4","12","330" +"252","12","4","110" +"253","46","7","0" +"254","5","4","110" +"255","4","19","630" +"256","19","4","530" +"257","5","12","330" +"258","12","5","210" +"259","12","19","630" +"260","19","12","330" +"261","12","45","830" +"262","45","12","330" +"263","6","43","730" +"264","43","6","730" +"265","8","7","330" +"266","7","8","110" +"267","8","16","530" +"268","16","8","110" +"269","7","16","530" +"270","16","7","330" +"271","7","14","330" +"272","14","7","330" +"273","16","14","330" +"274","14","16","530" +"275","16","43","730" +"276","43","16","530" +"279","25","29","210" +"280","29","25","210" +"281","25","30","430" +"282","30","25","430" +"283","25","44","830" +"284","44","25","830" +"285","47","35","0" +"286","48","25","930" +"287","25","48","930" +"289","26","49","830" +"290","22","44","830" +"291","44","22","830" +"292","50","89","0" +"293","51","27","0" +"295","50","51","0" +"298","52","49","830" +"301","35","47","0" +"302","35","90","0" +"303","54","24","0" +"304","55","25","110" +"305","58","25","110" +"306","53","48","930" +"307","48","53","1020" +"308","30","40","730" +"309","22","40","730" +"310","40","30","430" +"311","40","22","730" +"312","59","6","0" +"313","60","11","0" +"314","6","59","1020" +"315","62","27","0" +"316","63","22","0" +"317","21","56","710" +"318","56","21","630" +"319","21","17","630" +"320","17","21","630" +"321","17","13","330" +"322","13","17","530" +"323","39","31","430" +"324","31","39","730" +"325","31","41","630" +"326","41","31","430" +"327","61","23","530" +"328","23","61","530" +"329","64","26","730" +"330","26","64","730" +"332","64","65","730" +"333","61","25","530" +"334","25","61","530" +"335","23","55","630" +"336","55","23","630" +"338","23","48","830" +"339","52","65","730" +"341","48","23","930" +"343","56","20","630" +"344","20","56","630" +"345","22","55","630" +"346","66","14","330" +"347","14","66","830" +"348","55","22","630" +"349","43","67","1020" +"350","58","61","530" +"351","61","58","330" +"352","67","43","730" +"353","42","25","730" +"354","25","58","330" +"355","25","42","730" +"356","38","29","210" +"357","11","68","1020" +"358","29","38","530" +"359","68","11","1020" +"360","25","55","630" +"361","20","21","630" +"362","21","20","530" +"363","53","69","830" +"364","69","48","930" +"365","48","69","830" +"366","69","53","1020" +"367","49","52","1020" +"368","49","26","830" +"369","65","26","730" +"371","65","52","1020" +"372","65","64","730" +"373","37","41","730" +"374","41","37","730" +"375","42","38","730" +"376","38","42","730" +"377","70","21","830" +"378","21","70","830" +"379","70","56","830" +"380","56","70","830" +"381","71","45","830" +"382","45","71","830" +"383","11","60","1020" +"384","37","26","530" +"385","26","37","530" +"386","26","65","730" +"387","22","23","50" +"388","40","55","630" +"389","40","42","630" +"390","55","40","730" +"391","42","40","630" +"392","40","25","730" +"393","25","40","730" +"394","39","73","1020" +"395","40","72","1020" +"398","53","23","1020" +"399","23","53","1020" +"400","44","48","930" +"401","48","44","830" +"402","74","6","830" +"404","6","74","830" +"406","21","75","830" +"407","75","21","630" +"408","70","75","830" +"409","75","70","830" +"410","71","74","830" +"411","74","71","830" +"412","76","13","330" +"413","13","76","730" +"414","11","76","730" +"415","76","11","730" +"416","77","25","110" +"417","25","77","110" +"419","22","77","110" +"420","77","22","110" +"421","77","30","430" +"422","30","77","430" +"423","72","40","730" +"424","73","39","730" +"425","71","2","830" +"427","2","71","830" +"428","6","66","1020" +"429","66","6","1020" +"431","66","67","1020" +"432","67","66","1020" +"436","78","24","0" +"437","67","6","1020" +"438","6","67","1020" +"439","36","24","0" +"440","10","13","330" +"441","13","10","110" +"443","28","33","330" +"444","33","28","330" +"445","32","64","730" +"446","64","32","630" +"447","64","52","1030" +"448","52","64","730" +"449","72","42","730" +"450","42","72","1030" +"451","73","41","730" +"452","79","39","730" +"453","79","40","730" +"454","79","72","1030" +"455","79","73","1030" +"456","72","79","830" +"457","73","79","830" +"458","39","79","830" +"459","40","79","830" +"460","80","32","630" +"461","80","25","110" +"462","25","80","110" +"464","32","80","110" +"465","64","80","110" +"466","80","64","730" +"467","28","64","730" +"468","64","28","330" +"469","5","71","830" +"470","71","5","210" +"471","41","73","1030" +"473","76","68","1030" +"474","68","76","730" +"475","43","66","1020" +"476","66","43","730" +"477","37","33","330" +"478","33","37","530" +"479","49","65","730" +"480","65","49","1020" +"481","61","44","830" +"482","44","61","530" +"484","17","76","730" +"485","76","17","530" +"486","42","30","430" +"487","30","42","730" +"488","83","82","110" +"489","82","83","330" +"494","84","85","0" +"495","84","86","0" +"496","84","87","0" +"499","53","44","830" +"500","44","53","1020" +"503","88","51","0" +"506","92","91","0" +"507","93","94","110" +"508","94","93","110" +"512","95","96","0" +"514","97","98","0" +"515","101","100","1020" +"516","100","101","1020" +"517","102","99","1020" +"518","99","102","1020" +"520","103","104","0" +"522","107","108","0" +"523","105","106","0" +"524","109","110","0" +"525","74","8","110" +"526","8","74","830" +"527","58","48","830" +"528","48","58","330" +"529","29","58","330" +"530","58","29","210" +"531","111","112","0" +"532","113","114","0" +"534","115","116","0" +"535","117","101","1020" +"536","101","117","1020" +"537","118","102","1020" +"538","102","118","1020" +"539","119","117","1020" +"540","117","119","1020" +"541","120","118","1020" +"542","118","120","1020" +"543","120","102","1020" +"544","102","120","1020" +"545","121","119","1020" +"546","119","121","1020" +"547","121","100","1020" +"548","127","99","1020" +"549","127","128","1020" +"550","127","123","1020" +"551","123","127","1020" +"552","128","127","1020" +"553","121","124","1020" +"554","124","121","1020" +"555","121","128","1020" +"557","128","121","1020" +"558","100","121","1020" +"559","119","128","1020" +"560","128","119","1020" +"561","117","128","1020" +"562","128","117","1020" +"564","129","100","0" +"565","130","99","0" +"566","100","129","0" +"567","99","130","0" +"568","122","125","1020" +"569","125","122","1020" +"570","125","117","1020" +"571","120","128","1020" +"572","128","120","1020" +"573","102","128","1020" +"574","128","102","1020" +"575","99","127","1020" +"576","128","118","1020" +"577","118","128","1020" +"578","126","118","1020" +"579","118","126","1020" +"580","122","126","1020" +"581","126","122","1020" +"582","129","101","0" +"583","130","102","0" +"584","131","132","0" +"585","133","134","0" +"587","135","136","0" +"589","137","138","0" +"590","139","126","1020" +"591","140","123","1020" +"592","126","139","1020" +"593","125","139","1020" +"594","123","140","875" +"595","140","124","875" +"598","124","140","875" +"600","139","125","1020" +"601","141","99","1020" +"602","99","141","1020" +"603","117","125","1020" +"604","142","141","1020" +"605","144","143","0" +"606","145","146","0" +"607","148","147","0" +"608","147","148","0" +"611","149","129","0" +"612","133","149","0" +"613","129","149","0" +"614","100","149","0" +"615","149","100","0" +"616","150","122","1020" +"617","122","150","1020" +"618","151","102","1020" +"619","102","151","1020" +"620","151","118","1020" +"621","118","151","1020" +"622","151","128","1020" +"623","128","151","1020" +"624","126","151","1020" +"625","151","126","1020" +"627","152","153","0" +"628","154","155","0" +"629","81","36","0" +"630","156","125","510" +"631","125","156","510" +"632","157","158","0" +"633","122","139","1020" +"634","139","122","1020" +"635","159","124","875" +"636","159","123","875" +"637","150","139","1020" +"638","139","150","1020" +"639","123","159","875" +"640","124","159","875" +"641","156","122","1020" +"642","122","156","1020" +"643","160","126","510" +"644","160","125","510" +"645","125","160","510" +"646","126","160","510" +"647","160","122","710" +"648","122","160","710" +"649","161","162","0" +"650","163","122","1020" +"652","126","163","1020" +"653","122","163","1020" +"654","163","126","1020" +"655","164","117","1020" +"656","117","164","1020" +"657","164","125","1020" +"658","125","164","1020" +"660","28","32","730" +"661","32","28","730" +"662","166","48","830" +"663","166","61","530" +"664","166","65","830" +"665","48","166","830" +"666","65","166","830" +"668","28","166","830" +"669","166","28","530" +"670","61","166","830" +"671","167","28","330" +"672","166","58","530" +"673","58","166","830" +"674","167","64","730" +"675","167","166","830" +"676","166","167","330" +"677","28","167","330" +"678","64","167","330" +"679","160","156","510" +"680","74","2","830" +"681","2","74","730" +"682","20","70","830" +"683","70","20","630" +"685","156","160","510" +"686","100","128","1020" +"687","128","100","1020" +"688","39","80","110" +"689","40","80","110" +"690","80","39","730" +"691","80","40","730" +"692","55","77","110" +"693","77","55","630" +"694","55","30","630" +"695","30","55","630" +"696","80","55","630" +"697","55","80","110" +"698","80","28","330" +"699","28","80","110" +"702","22","58","530" +"703","58","22","110" +"704","169","170","0" +"705","171","172","0" +"706","172","171","0" +"707","173","174","0" +"708","117","156","1020" +"709","156","117","1020" +"714","179","55","630" +"715","179","32","630" +"716","55","179","630" +"717","32","179","630" +"718","179","30","430" +"719","30","179","630" +"720","179","31","430" +"721","31","179","630" +"722","163","151","1020" +"723","151","163","1020" +"724","180","181","0" +"746","195","19","630" +"747","19","195","630" +"748","195","4","110" +"749","4","195","630" +"750","195","12","330" +"751","12","195","630" +"752","195","2","630" +"753","2","195","630" +"757","198","197","0" +"758","23","198","1" +"759","198","23","1" +"766","68","83","1020" +"767","83","68","1020" +"768","201","202","0" +"771","68","205","1020" +"772","205","68","1020" +"773","83","205","530" +"774","205","83","530" +"775","67","205","1020" +"776","205","67","1020" +"777","206","24","0" +"779","209","210","0" +"781","82","213","530" +"782","213","82","530" +"784","211","212","0" +"786","205","213","730" +"787","213","205","730" +"788","212","211","0" +"790","23","80","110" +"791","80","23","110" +"796","67","213","1750" +"797","213","67","1750" +"807","6","213","2775" diff --git a/HermesProxy/CSV/TaxiPathNode1.csv b/HermesProxy/CSV/TaxiPathNode1.csv new file mode 100644 index 00000000..59478ca8 --- /dev/null +++ b/HermesProxy/CSV/TaxiPathNode1.csv @@ -0,0 +1,9583 @@ +"ID","PathID","NodeIndex","ContinentID","LocX","LocY","LocZ","Flags","Delay" +"35","6","0","0","-8851","498","111","0","0" +"36","6","1","0","-8853","496","111","0","0" +"37","6","2","0","-8869","486","116","0","0" +"38","6","3","0","-8937","447","122","0","0" +"39","6","4","0","-9025","501","122","0","0" +"40","6","5","0","-9109","473","148","0","0" +"41","6","6","0","-9247","381","152","0","0" +"42","6","7","0","-9328","433","130","0","0" +"43","6","8","0","-9380","432","78","0","0" +"44","6","9","0","-9451","386","56","0","0" +"45","6","10","0","-9524","368","53","0","0" +"46","6","11","0","-9601","407","52","0","0" +"47","6","12","0","-9686","469","40","0","0" +"48","6","13","0","-9734","552","39","0","0" +"2918","6","14","0","-9742","621","37","0","0" +"2919","6","15","0","-9790","641","44","0","0" +"2920","6","16","0","-9847","632","44","0","0" +"2921","6","17","0","-9941","634","44","0","0" +"2922","6","18","0","-10000","691","38","0","0" +"2923","6","19","0","-10034","787","31","0","0" +"2924","6","20","0","-10054","872","42","0","0" +"2925","6","21","0","-10139","931","46","0","0" +"2926","6","22","0","-10255","986","39","0","0" +"2927","6","23","0","-10310","1070","51","0","0" +"2928","6","24","0","-10364","1112","43","0","0" +"2929","6","25","0","-10489","1100","59","0","0" +"2930","6","26","0","-10588","1075","47","0","0" +"2931","6","27","0","-10629","1039","37","0","0" +"68","7","0","0","-10628","1040","35","0","0" +"69","7","1","0","-10627","1043","35","0","0" +"70","7","2","0","-10624","1055","37","0","0" +"71","7","3","0","-10609","1097","43","0","0" +"72","7","4","0","-10504","1142","52","0","0" +"73","7","5","0","-10424","1068","58","0","0" +"74","7","6","0","-10308","1046","58","0","0" +"75","7","7","0","-10210","931","58","0","0" +"76","7","8","0","-10184","811","43","0","0" +"77","7","9","0","-10197","634","30","0","0" +"78","7","10","0","-10174","554","29","0","0" +"79","7","11","0","-10100","513","32","0","0" +"80","7","12","0","-9946","506","37","0","0" +"81","7","13","0","-9881","524","37","0","0" +"82","7","14","0","-9814","523","37","0","0" +"83","7","15","0","-9756","540","43","0","0" +"84","7","16","0","-9709","517","45","0","0" +"85","7","17","0","-9690","464","40","0","0" +"86","7","18","0","-9599","406","44","0","0" +"87","7","19","0","-9534","366","60","0","0" +"88","7","20","0","-9466","373","60","0","0" +"89","7","21","0","-9380","433","76","0","0" +"90","7","22","0","-9279","422","159","0","0" +"91","7","23","0","-9127","269","162","0","0" +"92","7","24","0","-9039","381","145","0","0" +"2934","7","25","0","-8918","423","132","0","0" +"2935","7","26","0","-8833","479","112","0","0" +"119","8","0","0","-9433","-2238","70","0","0" +"120","8","1","0","-9436","-2240","71","0","0" +"121","8","2","0","-9445","-2244","74","0","0" +"122","8","3","0","-9471","-2250","81","0","0" +"123","8","4","0","-9507","-2244","97","0","0" +"124","8","5","0","-9543","-2197","101","0","0" +"125","8","6","0","-9606","-2086","77","0","0" +"126","8","7","0","-9555","-2000","80","0","0" +"127","8","8","0","-9632","-1875","84","0","0" +"128","8","9","0","-9625","-1769","109","0","0" +"129","8","10","0","-9693","-1586","131","0","0" +"130","8","11","0","-9805","-1424","111","0","0" +"131","8","12","0","-9674","-1306","118","0","0" +"132","8","13","0","-9575","-1177","128","0","0" +"133","8","14","0","-9488","-943","146","0","0" +"134","8","15","0","-9449","-726","154","0","0" +"135","8","16","0","-9487","-427","135","0","0" +"136","8","17","0","-9493","-158","146","0","0" +"137","8","18","0","-9241","3","173","0","0" +"138","8","19","0","-9133","270","161","0","0" +"2937","8","20","0","-9040","382","155","0","0" +"2938","8","21","0","-8917","414","134","0","0" +"2939","8","22","0","-8834","478","113","0","0" +"176","9","0","0","-8851","497","111","0","0" +"177","9","1","0","-8853","495","111","0","0" +"178","9","2","0","-8870","483","115","0","0" +"179","9","3","0","-8923","449","129","0","0" +"180","9","4","0","-9035","504","138","0","0" +"181","9","5","0","-9109","468","144","0","0" +"182","9","6","0","-9189","411","162","0","0" +"183","9","7","0","-9210","311","95","0","0" +"184","9","8","0","-9258","242","79","0","0" +"185","9","9","0","-9304","202","76","0","0" +"186","9","10","0","-9419","86","67","0","0" +"187","9","11","0","-9494","53","64","0","0" +"188","9","12","0","-9544","-53","64","0","0" +"189","9","13","0","-9550","-130","62","0","0" +"2888","9","14","0","-9578","-215","67","0","0" +"2889","9","15","0","-9619","-306","65","0","0" +"2890","9","16","0","-9614","-418","65","0","0" +"2891","9","17","0","-9588","-480","65","0","0" +"2892","9","18","0","-9617","-559","62","0","0" +"2893","9","19","0","-9631","-641","54","0","0" +"2894","9","20","0","-9656","-742","52","0","0" +"2895","9","21","0","-9645","-801","51","0","0" +"2896","9","22","0","-9585","-867","47","0","0" +"2897","9","23","0","-9590","-937","47","0","0" +"2898","9","24","0","-9622","-995","50","0","0" +"2899","9","25","0","-9636","-1074","52","0","0" +"2900","9","26","0","-9618","-1142","50","0","0" +"2901","9","27","0","-9644","-1218","47","0","0" +"2902","9","28","0","-9659","-1317","55","0","0" +"2903","9","29","0","-9670","-1393","60","0","0" +"2904","9","30","0","-9648","-1498","61","0","0" +"2905","9","31","0","-9627","-1536","60","0","0" +"2906","9","32","0","-9641","-1587","63","0","0" +"2907","9","33","0","-9617","-1675","63","0","0" +"2908","9","34","0","-9611","-1749","64","0","0" +"2909","9","35","0","-9619","-1820","60","0","0" +"2910","9","36","0","-9583","-1913","70","0","0" +"2911","9","37","0","-9529","-1970","86","0","0" +"2912","9","38","0","-9496","-2019","103","0","0" +"2913","9","39","0","-9493","-2051","109","0","0" +"2914","9","40","0","-9453","-2120","82","0","0" +"2915","9","41","0","-9418","-2207","73","0","0" +"2916","9","42","0","-9431","-2238","72","0","0" +"439","12","0","0","-4822","-1157","503","0","0" +"440","12","1","0","-4823","-1154","504","0","0" +"441","12","2","0","-4825","-1144","508","0","0" +"442","12","3","0","-4830","-1124","518","0","0" +"443","12","4","0","-4839","-1077","543","0","0" +"444","12","5","0","-4867","-1047","551","0","0" +"445","12","6","0","-4889","-1032","548","0","0" +"446","12","7","0","-4921","-1008","544","0","0" +"447","12","8","0","-4947","-972","540","0","0" +"448","12","9","0","-4957","-914","543","0","0" +"449","12","10","0","-4964","-901","543","0","0" +"450","12","11","0","-4987","-875","527","0","0" +"451","12","12","0","-5021","-833","507","0","0" +"452","12","13","0","-5066","-799","503","0","0" +"453","12","14","0","-5110","-793","504","0","0" +"454","12","15","0","-5156","-778","486","0","0" +"455","12","16","0","-5203","-713","480","0","0" +"456","12","17","0","-5366","-702","457","0","0" +"457","12","18","0","-5495","-662","442","0","0" +"1248","12","19","0","-5625","-671","439","0","0" +"1249","12","20","0","-5709","-584","433","0","0" +"1250","12","21","0","-5868","-569","453","0","0" +"1251","12","22","0","-6002","-664","468","0","0" +"1252","12","23","0","-6055","-676","491","0","0" +"1253","12","24","0","-6103","-702","500","0","0" +"1254","12","25","0","-6182","-759","471","0","0" +"1255","12","26","0","-6302","-807","425","0","0" +"1256","12","27","0","-6427","-833","376","0","0" +"1257","12","28","0","-6534","-879","342","0","0" +"1258","12","29","0","-6643","-845","294","0","0" +"1259","12","30","0","-6782","-862","284","0","0" +"1260","12","31","0","-6913","-911","281","0","0" +"1261","12","32","0","-6945","-993","272","0","0" +"1262","12","33","0","-7035","-1010","273","0","0" +"1263","12","34","0","-7107","-945","286","0","0" +"1264","12","35","0","-7178","-858","330","0","0" +"1265","12","36","0","-7220","-798","333","0","0" +"1266","12","37","0","-7376","-753","349","0","0" +"1267","12","38","0","-7513","-706","261","0","0" +"1268","12","39","0","-7625","-709","231","0","0" +"1269","12","40","0","-7817","-723","197","0","0" +"1270","12","41","0","-7879","-790","166","0","0" +"1271","12","42","0","-7972","-814","162","0","0" +"1272","12","43","0","-8125","-746","165","0","0" +"1273","12","44","0","-8154","-657","216","0","0" +"1274","12","45","0","-8154","-562","215","0","0" +"1275","12","46","0","-8242","-445","212","0","0" +"1276","12","47","0","-8289","-378","156","0","0" +"1277","12","48","0","-8372","-387","152","0","0" +"1278","12","49","0","-8434","-408","152","0","0" +"1279","12","50","0","-8518","-470","152","0","0" +"1280","12","51","0","-8576","-495","152","0","0" +"1281","12","52","0","-8649","-487","152","0","0" +"1314","12","53","0","-8724","-429","153","0","0" +"2702","12","54","0","-8782","-376","101","0","0" +"2703","12","55","0","-8887","-338","85","0","0" +"2704","12","56","0","-8978","-305","81","0","0" +"2705","12","57","0","-9023","-232","81","0","0" +"2706","12","58","0","-9081","-206","85","0","0" +"2707","12","59","0","-9107","-164","97","0","0" +"2708","12","60","0","-9135","-68","89","0","0" +"2709","12","61","0","-9150","1","86","0","0" +"2710","12","62","0","-9181","81","83","0","0" +"2711","12","63","0","-9131","164","115","0","0" +"2712","12","64","0","-9124","269","161","0","0" +"2713","12","65","0","-9039","381","156","0","0" +"2714","12","66","0","-8916","414","137","0","0" +"2715","12","67","0","-8833","481","112","0","0" +"503","13","0","0","-8847","496","111","0","0" +"504","13","1","0","-8849","495","111","0","0" +"505","13","2","0","-8867","483","114","0","0" +"506","13","3","0","-8935","454","127","0","0" +"507","13","4","0","-9034","493","143","0","0" +"508","13","5","0","-9109","470","157","0","0" +"509","13","6","0","-9213","427","162","0","0" +"510","13","7","0","-9273","275","151","0","0" +"511","13","8","0","-9287","34","153","0","0" +"512","13","9","0","-9231","-249","153","0","0" +"513","13","10","0","-9115","-320","144","0","0" +"514","13","11","0","-8984","-310","150","0","0" +"515","13","12","0","-8761","-406","154","0","0" +"516","13","13","0","-8644","-484","156","0","0" +"517","13","14","0","-8543","-488","156","0","0" +"518","13","15","0","-8434","-407","156","0","0" +"519","13","16","0","-8332","-383","156","0","0" +"520","13","17","0","-8272","-396","184","0","0" +"521","13","18","0","-8236","-435","216","0","0" +"522","13","19","0","-8182","-514","222","0","0" +"1315","13","20","0","-8157","-640","216","0","0" +"1316","13","21","0","-8066","-866","195","0","0" +"1317","13","22","0","-7994","-1274","177","0","0" +"1318","13","23","0","-7865","-1467","188","0","0" +"1319","13","24","0","-7675","-1591","218","0","0" +"1320","13","25","0","-7474","-1613","312","0","0" +"1321","13","26","0","-7382","-1633","338","0","0" +"1322","13","27","0","-7302","-1651","308","0","0" +"1323","13","28","0","-7168","-1656","289","0","0" +"1324","13","29","0","-7073","-1618","286","0","0" +"1325","13","30","0","-6883","-1276","270","0","0" +"1326","13","31","0","-6762","-1043","299","0","0" +"1327","13","32","0","-6642","-936","293","0","0" +"1328","13","33","0","-6540","-890","330","0","0" +"1329","13","34","0","-6395","-834","388","0","0" +"1330","13","35","0","-6212","-820","456","0","0" +"1331","13","36","0","-6097","-812","471","0","0" +"1332","13","37","0","-6042","-811","515","0","0" +"1333","13","38","0","-5956","-814","506","0","0" +"1334","13","39","0","-5831","-729","456","0","0" +"1335","13","40","0","-5798","-606","446","0","0" +"1336","13","41","0","-5761","-540","431","0","0" +"1337","13","42","0","-5669","-451","436","0","0" +"1338","13","43","0","-5477","-347","468","0","0" +"1339","13","44","0","-5341","-406","482","0","0" +"1340","13","45","0","-5323","-532","482","0","0" +"1341","13","46","0","-5168","-775","503","0","0" +"1342","13","47","0","-5105","-791","503","0","0" +"1343","13","48","0","-5051","-803","503","0","0" +"1344","13","49","0","-5021","-834","507","0","0" +"1345","13","50","0","-4987","-876","535","0","0" +"1346","13","51","0","-4965","-901","543","0","0" +"2608","13","52","0","-4942","-917","543","0","0" +"2609","13","53","0","-4889","-931","539","0","0" +"2610","13","54","0","-4870","-964","544","0","0" +"2611","13","55","0","-4855","-999","548","0","0" +"2612","13","56","0","-4839","-1034","550","0","0" +"2613","13","57","0","-4817","-1083","544","0","0" +"2614","13","58","0","-4751","-1095","529","0","0" +"2615","13","59","0","-4756","-1141","518","0","0" +"12740","13","60","0","-4795","-1150","512","0","0" +"12891","13","61","0","-4821","-1155","503","0","0" +"741","15","0","0","-5426","-2932","349","0","0" +"742","15","1","0","-5429","-2933","350","0","0" +"743","15","2","0","-5469","-2926","361","0","0" +"744","15","3","0","-5512","-2850","374","0","0" +"745","15","4","0","-5460","-2741","412","0","0" +"746","15","5","0","-5500","-2647","469","0","0" +"747","15","6","0","-5505","-2569","486","0","0" +"748","15","7","0","-5514","-2437","432","0","0" +"749","15","8","0","-5543","-2295","501","0","0" +"750","15","9","0","-5506","-2210","492","0","0" +"751","15","10","0","-5532","-2134","433","0","0" +"752","15","11","0","-5587","-2064","404","0","0" +"753","15","12","0","-5601","-1978","404","0","0" +"754","15","13","0","-5610","-1856","413","0","0" +"755","15","14","0","-5641","-1791","407","0","0" +"756","15","15","0","-5656","-1747","417","0","0" +"757","15","16","0","-5657","-1648","439","0","0" +"758","15","17","0","-5686","-1582","403","0","0" +"759","15","18","0","-5667","-1473","417","0","0" +"760","15","19","0","-5650","-1341","423","0","0" +"761","15","20","0","-5549","-1189","467","0","0" +"762","15","21","0","-5318","-1129","509","0","0" +"763","15","22","0","-5205","-971","519","0","0" +"764","15","23","0","-5158","-827","513","0","0" +"765","15","24","0","-5077","-791","503","0","0" +"766","15","25","0","-5020","-836","504","0","0" +"767","15","26","0","-4987","-875","527","0","0" +"768","15","27","0","-4964","-901","543","0","0" +"769","15","28","0","-4947","-916","543","0","0" +"770","15","29","0","-4886","-937","539","0","0" +"771","15","30","0","-4870","-964","544","0","0" +"772","15","31","0","-4858","-994","548","0","0" +"773","15","32","0","-4845","-1024","550","0","0" +"774","15","33","0","-4822","-1054","546","0","0" +"775","15","34","0","-4783","-1065","534","0","0" +"776","15","35","0","-4746","-1095","525","0","0" +"777","15","36","0","-4754","-1138","523","0","0" +"778","15","37","0","-4798","-1150","512","0","0" +"779","15","38","0","-4822","-1156","503","0","0" +"650","16","0","0","-4822","-1157","503","0","0" +"651","16","1","0","-4823","-1155","503","0","0" +"652","16","2","0","-4825","-1144","508","0","0" +"653","16","3","0","-4830","-1124","517","0","0" +"654","16","4","0","-4839","-1077","543","0","0" +"655","16","5","0","-4867","-1047","550","0","0" +"656","16","6","0","-4889","-1032","548","0","0" +"657","16","7","0","-4921","-1008","544","0","0" +"658","16","8","0","-4947","-972","540","0","0" +"659","16","9","0","-4951","-919","543","0","0" +"660","16","10","0","-4973","-894","543","0","0" +"661","16","11","0","-4990","-871","529","0","0" +"662","16","12","0","-5020","-834","505","0","0" +"663","16","13","0","-5064","-798","507","0","0" +"664","16","14","0","-5123","-795","511","0","0" +"665","16","15","0","-5200","-812","530","0","0" +"666","16","16","0","-5220","-1011","514","0","0" +"667","16","17","0","-5481","-1210","506","0","0" +"668","16","18","0","-5561","-1500","436","0","0" +"669","16","19","0","-5527","-1692","407","0","0" +"670","16","20","0","-5506","-1765","405","0","0" +"671","16","21","0","-5521","-1917","409","0","0" +"672","16","22","0","-5569","-1999","416","0","0" +"673","16","23","0","-5557","-2089","416","0","0" +"2720","16","24","0","-5511","-2158","465","0","0" +"2721","16","25","0","-5509","-2208","494","0","0" +"2722","16","26","0","-5510","-2288","507","0","0" +"2723","16","27","0","-5503","-2418","434","0","0" +"2724","16","28","0","-5452","-2503","483","0","0" +"2725","16","29","0","-5404","-2580","498","0","0" +"2726","16","30","0","-5413","-2639","467","0","0" +"2727","16","31","0","-5406","-2728","407","0","0" +"2728","16","32","0","-5420","-2800","381","0","0" +"2729","16","33","0","-5410","-2867","359","0","0" +"2730","16","34","0","-5421","-2928","350","0","0" +"838","17","0","0","-3791","-782","10","0","0" +"839","17","1","0","-3789","-780","10","0","0" +"840","17","2","0","-3778","-761","15","0","0" +"841","17","3","0","-3791","-734","19","0","0" +"842","17","4","0","-3825","-735","22","0","0" +"843","17","5","0","-3855","-754","23","0","0" +"844","17","6","0","-3885","-783","26","0","0" +"845","17","7","0","-3903","-846","27","0","0" +"846","17","8","0","-3956","-893","41","0","0" +"847","17","9","0","-4050","-921","117","0","0" +"848","17","10","0","-4116","-942","175","0","0" +"849","17","11","0","-4259","-973","305","0","0" +"850","17","12","0","-4411","-961","499","0","0" +"851","17","13","0","-4566","-900","663","0","0" +"852","17","14","0","-4660","-934","778","0","0" +"853","17","15","0","-4732","-915","832","0","0" +"854","17","16","0","-4827","-838","812","0","0" +"855","17","17","0","-4893","-765","752","0","0" +"856","17","18","0","-4970","-665","627","0","0" +"857","17","19","0","-5051","-709","553","0","0" +"858","17","20","0","-5046","-786","511","0","0" +"859","17","21","0","-5019","-834","506","0","0" +"860","17","22","0","-4986","-874","527","0","0" +"861","17","23","0","-4965","-901","543","0","0" +"862","17","24","0","-4946","-917","543","0","0" +"863","17","25","0","-4893","-926","538","0","0" +"864","17","26","0","-4870","-967","544","0","0" +"2570","17","27","0","-4856","-998","548","0","0" +"2571","17","28","0","-4845","-1024","550","0","0" +"2572","17","29","0","-4823","-1054","540","0","0" +"2573","17","30","0","-4779","-1066","529","0","0" +"2574","17","31","0","-4740","-1105","525","0","0" +"2575","17","32","0","-4749","-1137","518","0","0" +"2576","17","33","0","-4785","-1164","510","0","0" +"9405","17","34","0","-4822","-1156","503","0","0" +"895","18","0","0","-4822","-1157","502","0","0" +"896","18","1","0","-4823","-1155","503","0","0" +"897","18","2","0","-4825","-1144","508","0","0" +"898","18","3","0","-4833","-1111","524","0","0" +"899","18","4","0","-4839","-1077","543","0","0" +"900","18","5","0","-4867","-1048","550","0","0" +"901","18","6","0","-4889","-1032","548","0","0" +"902","18","7","0","-4921","-1008","544","0","0" +"903","18","8","0","-4947","-972","540","0","0" +"904","18","9","0","-4957","-914","543","0","0" +"905","18","10","0","-4965","-902","543","0","0" +"906","18","11","0","-4986","-875","527","0","0" +"907","18","12","0","-5021","-832","507","0","0" +"908","18","13","0","-5059","-804","507","0","0" +"909","18","14","0","-5123","-793","507","0","0" +"910","18","15","0","-5193","-822","495","0","0" +"911","18","16","0","-5298","-894","478","0","0" +"912","18","17","0","-5494","-1071","440","0","0" +"913","18","18","0","-5552","-1187","469","0","0" +"914","18","19","0","-5586","-1369","472","0","0" +"2662","18","20","0","-5424","-1553","525","0","0" +"2663","18","21","0","-5211","-1635","505","0","0" +"2664","18","22","0","-5065","-1700","513","0","0" +"2665","18","23","0","-4948","-1704","548","0","0" +"2666","18","24","0","-4825","-1691","547","0","0" +"2667","18","25","0","-4645","-1638","547","0","0" +"2668","18","26","0","-4505","-1636","544","0","0" +"2669","18","27","0","-4418","-1570","495","0","0" +"2670","18","28","0","-4333","-1466","443","0","0" +"2671","18","29","0","-4219","-1388","368","0","0" +"2672","18","30","0","-4163","-1267","311","0","0" +"2673","18","31","0","-4106","-1130","261","0","0" +"2674","18","32","0","-4046","-1082","209","0","0" +"2675","18","33","0","-3864","-991","63","0","0" +"2676","18","34","0","-3767","-913","33","0","0" +"2677","18","35","0","-3781","-824","22","0","0" +"9380","18","36","0","-3788","-794","17","0","0" +"9382","18","37","0","-3792","-783","10","0","0" +"1046","20","0","0","1570","269","-41","0","0" +"1047","20","1","0","1562","249","-38","0","0" +"1048","20","2","0","1578","219","-31","0","0" +"1049","20","3","0","1607","219","-28","0","0" +"1050","20","4","0","1631","239","-29","0","0" +"1051","20","5","0","1663","239","-33","0","0" +"1052","20","6","0","1733","243","-40","0","0" +"1053","20","7","0","1751","264","-42","0","0" +"1054","20","8","0","1744","293","-44","0","0" +"1055","20","9","0","1719","327","-42","0","0" +"1056","20","10","0","1685","365","-26","0","0" +"1057","20","11","0","1683","386","1","0","0" +"1058","20","12","0","1702","420","5","0","0" +"1059","20","13","0","1726","474","1","0","0" +"1060","20","14","0","1710","513","-2","0","0" +"1061","20","15","0","1683","546","-2","0","0" +"1062","20","16","0","1681","590","1","0","0" +"1063","20","17","0","1687","623","17","0","0" +"1064","20","18","0","1658","645","33","0","0" +"1065","20","19","0","1616","645","49","0","0" +"2251","20","20","0","1591","674","57","0","0" +"2252","20","21","0","1600","718","77","0","0" +"2253","20","22","0","1640","730","89","0","0" +"3036","20","23","0","1691","726","83","0","0" +"3037","20","24","0","1756","723","66","0","0" +"3038","20","25","0","1792","645","54","0","0" +"3039","20","26","0","1761","583","55","0","0" +"3040","20","27","0","1664","548","41","0","0" +"3041","20","28","0","1567","578","49","0","0" +"3042","20","29","0","1491","630","54","0","0" +"3043","20","30","0","1437","706","52","0","0" +"3044","20","31","0","1383","812","57","0","0" +"3045","20","32","0","1351","900","61","0","0" +"3046","20","33","0","1337","994","62","0","0" +"3047","20","34","0","1296","1077","61","0","0" +"3048","20","35","0","1288","1174","60","0","0" +"3049","20","36","0","1259","1279","76","0","0" +"3050","20","37","0","1284","1368","66","0","0" +"3051","20","38","0","1211","1414","56","0","0" +"3052","20","39","0","1128","1499","42","0","0" +"3053","20","40","0","1072","1532","36","0","0" +"3054","20","41","0","1006","1531","40","0","0" +"3055","20","42","0","942","1503","48","0","0" +"3056","20","43","0","872","1514","48","0","0" +"3057","20","44","0","794","1556","62","0","0" +"3058","20","45","0","676","1576","100","0","0" +"3059","20","46","0","619","1592","137","0","0" +"3060","20","47","0","552","1587","142","0","0" +"3061","20","48","0","504","1555","141","0","0" +"9531","20","49","0","477","1536","135","0","0" +"1066","21","0","0","471","1533","133","0","0" +"1067","21","1","0","460","1527","134","0","0" +"1068","21","2","0","406","1497","143","0","0" +"1069","21","3","0","364","1462","132","0","0" +"1070","21","4","0","302","1432","134","0","0" +"1071","21","5","0","259","1382","145","0","0" +"1072","21","6","0","268","1310","121","0","0" +"1073","21","7","0","398","1234","95","0","0" +"1074","21","8","0","553","1233","94","0","0" +"1075","21","9","0","639","1210","100","0","0" +"1076","21","10","0","737","1219","69","0","0" +"1077","21","11","0","883","1200","65","0","0" +"1078","21","12","0","991","1194","72","0","0" +"1079","21","13","0","1071","1163","56","0","0" +"1080","21","14","0","1130","1132","56","0","0" +"2756","21","15","0","1200","1144","54","0","0" +"2757","21","16","0","1278","1080","61","0","0" +"2758","21","17","0","1328","1001","62","0","0" +"2759","21","18","0","1354","901","61","0","0" +"2760","21","19","0","1399","767","55","0","0" +"2761","21","20","0","1502","620","78","0","0" +"2762","21","21","0","1633","624","104","0","0" +"2763","21","22","0","1731","642","94","0","0" +"2764","21","23","0","1798","672","91","0","0" +"2765","21","24","0","1787","729","93","0","0" +"2766","21","25","0","1691","726","90","0","0" +"2767","21","26","0","1640","730","89","0","0" +"2768","21","27","0","1600","718","77","0","0" +"2769","21","28","0","1591","674","57","0","0" +"2770","21","29","0","1616","645","49","0","0" +"2771","21","30","0","1658","645","33","0","0" +"2772","21","31","0","1687","623","17","0","0" +"2773","21","32","0","1681","590","1","0","0" +"2774","21","33","0","1683","546","-2","0","0" +"2775","21","34","0","1710","513","-2","0","0" +"3062","21","35","0","1726","474","1","0","0" +"3063","21","36","0","1702","420","5","0","0" +"3064","21","37","0","1683","386","1","0","0" +"3065","21","38","0","1687","352","-38","0","0" +"3066","21","39","0","1715","331","-42","0","0" +"3067","21","40","0","1741","292","-42","0","0" +"3068","21","41","0","1751","264","-42","0","0" +"3069","21","42","0","1733","243","-38","0","0" +"3070","21","43","0","1663","239","-30","0","0" +"3071","21","44","0","1638","237","-26","0","0" +"3072","21","45","0","1606","217","-26","0","0" +"3073","21","46","0","1573","225","-34","0","0" +"3074","21","47","0","1568","268","-42","0","0" +"1086","22","0","0","-10515","-1259","42","0","0" +"1087","22","1","0","-10516","-1253","43","0","0" +"1088","22","2","0","-10519","-1240","46","0","0" +"1089","22","3","0","-10516","-1184","69","0","0" +"1090","22","4","0","-10450","-1142","95","0","0" +"1091","22","5","0","-10255","-1084","100","0","0" +"1092","22","6","0","-10046","-948","115","0","0" +"1093","22","7","0","-9922","-785","107","0","0" +"1094","22","8","0","-9855","-631","103","0","0" +"1095","22","9","0","-9602","-509","141","0","0" +"1096","22","10","0","-9452","-360","149","0","0" +"1097","22","11","0","-9458","-166","124","0","0" +"1098","22","12","0","-9342","98","147","0","0" +"1099","22","13","0","-9153","200","160","0","0" +"1100","22","14","0","-9035","378","156","0","0" +"1101","22","15","0","-8917","416","136","0","0" +"9181","22","16","0","-8836","477","114","0","0" +"1103","23","0","0","-8851","497","111","0","0" +"1104","23","1","0","-8853","495","111","0","0" +"1105","23","2","0","-8868","483","113","0","0" +"1106","23","3","0","-8935","445","131","0","0" +"1107","23","4","0","-9022","498","139","0","0" +"1108","23","5","0","-9109","472","151","0","0" +"1109","23","6","0","-9305","378","159","0","0" +"1110","23","7","0","-9594","278","132","0","0" +"1111","23","8","0","-9860","281","113","0","0" +"1112","23","9","0","-10052","292","100","0","0" +"1113","23","10","0","-10172","221","98","0","0" +"1114","23","11","0","-10354","202","86","0","0" +"1115","23","12","0","-10441","206","85","0","0" +"1116","23","13","0","-10612","98","103","0","0" +"1117","23","14","0","-10805","-181","106","0","0" +"1118","23","15","0","-10886","-507","120","0","0" +"1119","23","16","0","-10624","-740","148","0","0" +"1120","23","17","0","-10569","-1030","132","0","0" +"1121","23","18","0","-10523","-1186","68","0","0" +"1122","23","19","0","-10515","-1261","45","0","0" +"1124","24","0","0","0","-860","60","0","0" +"1125","24","1","0","-1","-857","60","0","0" +"1126","24","2","0","-1","-841","64","0","0" +"1127","24","3","0","4","-830","66","0","0" +"1128","24","4","0","53","-788","73","0","0" +"1129","24","5","0","122","-754","74","0","0" +"1130","24","6","0","186","-725","100","0","0" +"1131","24","7","0","280","-651","135","0","0" +"1132","24","8","0","351","-608","158","0","0" +"1133","24","9","0","419","-621","173","0","0" +"1134","24","10","0","497","-602","181","0","0" +"1135","24","11","0","554","-584","191","0","0" +"1136","24","12","0","615","-531","188","0","0" +"1137","24","13","0","627","-457","175","0","0" +"1138","24","14","0","626","-375","162","0","0" +"1139","24","15","0","665","-343","156","0","0" +"1140","24","16","0","721","-340","146","0","0" +"1141","24","17","0","756","-318","143","0","0" +"1142","24","18","0","782","-298","159","0","0" +"1143","24","19","0","851","-254","167","0","0" +"1144","24","20","0","932","-254","149","0","0" +"1145","24","21","0","1037","-269","60","0","0" +"1146","24","22","0","1089","-243","41","0","0" +"1147","24","23","0","1208","-250","42","0","0" +"1148","24","24","0","1307","-109","74","0","0" +"1149","24","25","0","1305","264","65","0","0" +"1150","24","26","0","1463","469","76","0","0" +"1151","24","27","0","1674","490","66","0","0" +"1152","24","28","0","1840","506","61","0","0" +"2779","24","29","0","1927","605","86","0","0" +"2780","24","30","0","1891","707","91","0","0" +"2781","24","31","0","1780","757","69","0","0" +"2782","24","32","0","1724","734","69","0","0" +"2783","24","33","0","1691","726","87","0","0" +"2784","24","34","0","1640","730","89","0","0" +"2785","24","35","0","1600","718","77","0","0" +"2786","24","36","0","1591","674","57","0","0" +"2787","24","37","0","1616","645","49","0","0" +"2788","24","38","0","1658","645","33","0","0" +"2789","24","39","0","1687","623","17","0","0" +"2790","24","40","0","1681","590","1","0","0" +"2791","24","41","0","1683","546","-2","0","0" +"2792","24","42","0","1710","513","-2","0","0" +"2793","24","43","0","1726","474","1","0","0" +"2794","24","44","0","1702","420","5","0","0" +"2795","24","45","0","1683","386","1","0","0" +"2796","24","46","0","1687","352","-38","0","0" +"2797","24","47","0","1715","331","-42","0","0" +"2798","24","48","0","1741","292","-42","0","0" +"2799","24","49","0","1751","264","-42","0","0" +"2800","24","50","0","1733","243","-38","0","0" +"2801","24","51","0","1663","239","-30","0","0" +"3100","24","52","0","1638","237","-26","0","0" +"3101","24","53","0","1606","217","-26","0","0" +"9492","24","54","0","1573","225","-34","0","0" +"9493","24","55","0","1568","268","-42","0","0" +"2269","25","0","0","1568","268","-41","0","0" +"2270","25","1","0","1563","250","-38","0","0" +"2271","25","2","0","1576","220","-31","0","0" +"2272","25","3","0","1606","217","-26","0","0" +"2273","25","4","0","1630","239","-28","0","0" +"2274","25","5","0","1663","239","-35","0","0" +"2275","25","6","0","1738","242","-38","0","0" +"2276","25","7","0","1748","278","-44","0","0" +"2277","25","8","0","1726","319","-47","0","0" +"2278","25","9","0","1687","352","-38","0","0" +"2279","25","10","0","1683","386","1","0","0" +"2280","25","11","0","1702","420","5","0","0" +"2281","25","12","0","1726","474","1","0","0" +"2282","25","13","0","1710","513","-2","0","0" +"2283","25","14","0","1683","546","-2","0","0" +"2284","25","15","0","1681","590","1","0","0" +"2285","25","16","0","1687","623","17","0","0" +"2286","25","17","0","1658","645","33","0","0" +"2287","25","18","0","1616","645","49","0","0" +"2288","25","19","0","1591","674","57","0","0" +"2289","25","20","0","1600","718","77","0","0" +"2290","25","21","0","1640","730","89","0","0" +"2291","25","22","0","1691","726","90","0","0" +"3079","25","23","0","1794","727","92","0","0" +"3080","25","24","0","1834","642","73","0","0" +"3081","25","25","0","1819","575","74","0","0" +"3082","25","26","0","1700","542","65","0","0" +"3083","25","27","0","1596","564","70","0","0" +"3084","25","28","0","1493","589","84","0","0" +"3085","25","29","0","1317","615","57","0","0" +"3086","25","30","0","1120","553","69","0","0" +"3087","25","31","0","702","313","64","0","0" +"3088","25","32","0","527","219","72","0","0" +"3089","25","33","0","345","101","81","0","0" +"3090","25","34","0","204","31","90","0","0" +"3091","25","35","0","93","-46","128","0","0" +"3092","25","36","0","-18","-79","158","0","0" +"3093","25","37","0","-73","-210","163","0","0" +"3094","25","38","0","-83","-340","170","0","0" +"3095","25","39","0","-72","-513","187","0","0" +"3096","25","40","0","-46","-628","178","0","0" +"3097","25","41","0","-148","-767","115","0","0" +"3098","25","42","0","-82","-879","82","0","0" +"3099","25","43","0","0","-861","62","0","0" +"1181","26","0","0","-713","-513","27","0","0" +"1182","26","1","0","-713","-517","27","0","0" +"1183","26","2","0","-725","-597","38","0","0" +"1184","26","3","0","-747","-650","51","0","0" +"1185","26","4","0","-885","-652","39","0","0" +"1186","26","5","0","-1066","-674","27","0","0" +"1187","26","6","0","-1231","-801","27","0","0" +"1188","26","7","0","-1322","-885","23","0","0" +"1189","26","8","0","-1423","-959","24","0","0" +"1190","26","9","0","-1535","-1002","13","0","0" +"1191","26","10","0","-1640","-1061","10","0","0" +"1192","26","11","0","-1803","-1141","6","0","0" +"1193","26","12","0","-2619","-1157","3","0","0" +"1194","26","13","0","-2852","-1019","18","0","0" +"1195","26","14","0","-2955","-921","24","0","0" +"1196","26","15","0","-3118","-918","32","0","0" +"1197","26","16","0","-3341","-986","24","0","0" +"1198","26","17","0","-3801","-1080","38","0","0" +"1199","26","18","0","-3986","-1074","142","0","0" +"1200","26","19","0","-4088","-1054","228","0","0" +"1201","26","20","0","-4227","-1118","332","0","0" +"1202","26","21","0","-4445","-1059","637","0","0" +"1203","26","22","0","-4534","-1011","700","0","0" +"1204","26","23","0","-4638","-1018","801","0","0" +"1205","26","24","0","-4819","-1021","902","0","0" +"1206","26","25","0","-4912","-987","824","0","0" +"1207","26","26","0","-5023","-966","724","0","0" +"1208","26","27","0","-5076","-879","646","0","0" +"1209","26","28","0","-5188","-789","545","0","0" +"1210","26","29","0","-5103","-724","509","0","0" +"1211","26","30","0","-5056","-761","508","0","0" +"1212","26","31","0","-5035","-809","504","0","0" +"1213","26","32","0","-5019","-834","511","0","0" +"2553","26","33","0","-4987","-875","527","0","0" +"2554","26","34","0","-4964","-902","543","0","0" +"2555","26","35","0","-4949","-917","544","0","0" +"2556","26","36","0","-4887","-936","542","0","0" +"2557","26","37","0","-4870","-965","545","0","0" +"2558","26","38","0","-4857","-996","547","0","0" +"2559","26","39","0","-4845","-1024","549","0","0" +"2560","26","40","0","-4819","-1059","546","0","0" +"2561","26","41","0","-4782","-1065","529","0","0" +"2562","26","42","0","-4748","-1090","524","0","0" +"2563","26","43","0","-4756","-1134","520","0","0" +"2564","26","44","0","-4798","-1150","514","0","0" +"12728","26","45","0","-4822","-1158","503","0","0" +"1223","27","0","0","-4823","-1157","503","0","0" +"1224","27","1","0","-4823","-1154","504","0","0" +"1225","27","2","0","-4822","-1139","509","0","0" +"1226","27","3","0","-4822","-1113","522","0","0" +"1227","27","4","0","-4839","-1077","543","0","0" +"1228","27","5","0","-4867","-1047","550","0","0" +"1229","27","6","0","-4889","-1032","548","0","0" +"1230","27","7","0","-4921","-1008","544","0","0" +"1231","27","8","0","-4947","-972","540","0","0" +"1232","27","9","0","-4958","-914","543","0","0" +"1233","27","10","0","-4965","-901","543","0","0" +"1234","27","11","0","-4986","-874","527","0","0" +"1235","27","12","0","-5022","-831","507","0","0" +"1236","27","13","0","-5044","-796","507","0","0" +"1237","27","14","0","-5065","-752","496","0","0" +"1238","27","15","0","-5133","-744","483","0","0" +"1239","27","16","0","-5195","-746","483","0","0" +"1240","27","17","0","-5303","-788","492","0","0" +"1241","27","18","0","-5420","-871","464","0","0" +"1242","27","19","0","-5474","-994","460","0","0" +"1243","27","20","0","-5639","-1133","456","0","0" +"1244","27","21","0","-5681","-1300","455","0","0" +"1245","27","22","0","-5537","-1506","475","0","0" +"1246","27","23","0","-5417","-1588","521","0","0" +"2644","27","24","0","-5323","-1641","547","0","0" +"2645","27","25","0","-5004","-1663","558","0","0" +"2646","27","26","0","-4867","-1644","559","0","0" +"2647","27","27","0","-4569","-1640","559","0","0" +"2648","27","28","0","-4444","-1597","520","0","0" +"2649","27","29","0","-4358","-1500","474","0","0" +"2650","27","30","0","-4318","-1352","447","0","0" +"2651","27","31","0","-4262","-1223","407","0","0" +"2652","27","32","0","-4190","-1084","307","0","0" +"2653","27","33","0","-4125","-938","200","0","0" +"2654","27","34","0","-4035","-866","103","0","0" +"2655","27","35","0","-3833","-896","23","0","0" +"2656","27","36","0","-3772","-875","25","0","0" +"2657","27","37","0","-3732","-860","16","0","0" +"2658","27","38","0","-3703","-855","15","0","0" +"2659","27","39","0","-3654","-839","18","0","0" +"2660","27","40","0","-3533","-902","17","0","0" +"2661","27","41","0","-3416","-992","16","0","0" +"2854","27","42","0","-3197","-1056","18","0","0" +"2855","27","43","0","-3128","-1131","22","0","0" +"2856","27","44","0","-3041","-1205","20","0","0" +"2857","27","45","0","-2897","-1367","21","0","0" +"2858","27","46","0","-2707","-1447","20","0","0" +"2859","27","47","0","-2557","-1647","19","0","0" +"2860","27","48","0","-2078","-1632","68","0","0" +"2861","27","49","0","-1862","-1534","79","0","0" +"2862","27","50","0","-1806","-1411","84","0","0" +"2863","27","51","0","-1593","-1168","102","0","0" +"2864","27","52","0","-1400","-1050","19","0","0" +"2865","27","53","0","-1133","-797","17","0","0" +"2866","27","54","0","-966","-596","18","0","0" +"2867","27","55","0","-888","-535","15","0","0" +"9377","27","56","0","-766","-532","34","0","0" +"12735","27","57","0","-714","-517","29","0","0" +"1428","30","0","0","-1242","-2513","22","0","0" +"1429","30","1","0","-1242","-2516","23","0","0" +"1430","30","2","0","-1241","-2530","28","0","0" +"1431","30","3","0","-1240","-2541","33","0","0" +"1432","30","4","0","-1229","-2571","38","0","0" +"1433","30","5","0","-1188","-2635","57","0","0" +"1434","30","6","0","-1196","-2706","70","0","0" +"1435","30","7","0","-1285","-2726","82","0","0" +"1436","30","8","0","-1359","-2660","96","0","0" +"1437","30","9","0","-1454","-2549","102","0","0" +"1438","30","10","0","-1584","-2473","92","0","0" +"1439","30","11","0","-1682","-2454","83","0","0" +"1440","30","12","0","-1881","-2425","84","0","0" +"1441","30","13","0","-2003","-2470","87","0","0" +"1442","30","14","0","-2091","-2440","90","0","0" +"1443","30","15","0","-2185","-2428","96","0","0" +"1444","30","16","0","-2279","-2433","113","0","0" +"1445","30","17","0","-2362","-2463","103","0","0" +"1446","30","18","0","-2526","-2410","142","0","0" +"1447","30","19","0","-2726","-2471","130","0","0" +"1448","30","20","0","-2792","-2491","94","0","0" +"1449","30","21","0","-2902","-2449","61","0","0" +"1450","30","22","0","-3089","-2509","33","0","0" +"1451","30","23","0","-3209","-2681","31","0","0" +"1452","30","24","0","-3366","-2804","30","0","0" +"1453","30","25","0","-3553","-2800","37","0","0" +"1454","30","26","0","-3764","-3068","44","0","0" +"1455","30","27","0","-4096","-3121","21","0","0" +"1456","30","28","0","-4260","-3157","131","0","0" +"1457","30","29","0","-4446","-3245","189","0","0" +"1458","30","30","0","-4573","-3295","212","0","0" +"1459","30","31","0","-4712","-3222","324","0","0" +"1460","30","32","0","-4841","-3119","362","0","0" +"1461","30","33","0","-4893","-2938","398","0","0" +"1462","30","34","0","-4866","-2400","504","0","0" +"1463","30","35","0","-5047","-2280","432","0","0" +"1464","30","36","0","-5252","-2248","504","0","0" +"1465","30","37","0","-5490","-2046","439","0","0" +"1466","30","38","0","-5511","-1892","429","0","0" +"1467","30","39","0","-5508","-1765","429","0","0" +"1468","30","40","0","-5568","-1505","431","0","0" +"1469","30","41","0","-5488","-1329","468","0","0" +"1470","30","42","0","-5381","-1202","538","0","0" +"1471","30","43","0","-5234","-1125","531","0","0" +"1472","30","44","0","-5195","-951","528","0","0" +"1473","30","45","0","-5173","-802","525","0","0" +"1474","30","46","0","-5105","-793","518","0","0" +"2528","30","47","0","-5058","-801","507","0","0" +"2529","30","48","0","-5020","-835","505","0","0" +"2530","30","49","0","-4987","-874","527","0","0" +"2531","30","50","0","-4965","-901","543","0","0" +"2532","30","51","0","-4953","-912","543","0","0" +"2533","30","52","0","-4887","-937","541","0","0" +"2534","30","53","0","-4870","-965","545","0","0" +"2535","30","54","0","-4858","-993","547","0","0" +"2536","30","55","0","-4845","-1024","549","0","0" +"2537","30","56","0","-4819","-1058","547","0","0" +"2538","30","57","0","-4792","-1062","539","0","0" +"2539","30","58","0","-4754","-1086","530","0","0" +"2540","30","59","0","-4758","-1150","517","0","0" +"2541","30","60","0","-4783","-1163","514","0","0" +"12850","30","61","0","-4822","-1158","503","0","0" +"1480","31","0","0","-4822","-1157","503","0","0" +"1481","31","1","0","-4823","-1154","504","0","0" +"1482","31","2","0","-4827","-1140","510","0","0" +"1483","31","3","0","-4832","-1120","520","0","0" +"1484","31","4","0","-4839","-1077","543","0","0" +"1485","31","5","0","-4867","-1047","551","0","0" +"1486","31","6","0","-4889","-1032","548","0","0" +"1487","31","7","0","-4921","-1008","544","0","0" +"1488","31","8","0","-4947","-972","540","0","0" +"1489","31","9","0","-4957","-915","543","0","0" +"1490","31","10","0","-4963","-900","543","0","0" +"1491","31","11","0","-4987","-875","527","0","0" +"1492","31","12","0","-5032","-822","507","0","0" +"1493","31","13","0","-5090","-789","507","0","0" +"1494","31","14","0","-5222","-818","510","0","0" +"1495","31","15","0","-5408","-1111","461","0","0" +"1496","31","16","0","-5547","-1193","472","0","0" +"1497","31","17","0","-5570","-1364","445","0","0" +"1498","31","18","0","-5565","-1750","466","0","0" +"1499","31","19","0","-5443","-1980","473","0","0" +"1500","31","20","0","-5241","-2235","498","0","0" +"1501","31","21","0","-5133","-2422","529","0","0" +"1502","31","22","0","-5094","-3128","367","0","0" +"1503","31","23","0","-4745","-3282","322","0","0" +"1504","31","24","0","-4455","-3250","200","0","0" +"1505","31","25","0","-4258","-3137","143","0","0" +"1506","31","26","0","-4089","-2991","36","0","0" +"1507","31","27","0","-3755","-2780","33","0","0" +"1508","31","28","0","-3490","-2697","34","0","0" +"1509","31","29","0","-3190","-2417","31","0","0" +"1510","31","30","0","-2982","-2411","26","0","0" +"1511","31","31","0","-2810","-2487","75","0","0" +"1512","31","32","0","-2459","-2503","109","0","0" +"1513","31","33","0","-2364","-2541","77","0","0" +"2627","31","34","0","-2248","-2568","50","0","0" +"2628","31","35","0","-2121","-2485","81","0","0" +"2629","31","36","0","-1936","-2478","80","0","0" +"2630","31","37","0","-1810","-2495","56","0","0" +"2631","31","38","0","-1600","-2407","110","0","0" +"2632","31","39","0","-1319","-2456","59","0","0" +"2633","31","40","0","-1237","-2514","22","0","0" +"1526","32","0","0","-920","-3496","72","0","0" +"1527","32","1","0","-919","-3491","74","0","0" +"1528","32","2","0","-921","-3421","83","0","0" +"1529","32","3","0","-971","-3314","79","0","0" +"1530","32","4","0","-1104","-3120","67","0","0" +"1531","32","5","0","-1315","-2855","62","0","0" +"1532","32","6","0","-1428","-2771","53","0","0" +"1533","32","7","0","-1464","-2673","58","0","0" +"1534","32","8","0","-1468","-2591","85","0","0" +"1535","32","9","0","-1451","-2462","73","0","0" +"1536","32","10","0","-1409","-2318","77","0","0" +"1537","32","11","0","-1205","-2202","70","0","0" +"1538","32","12","0","-1164","-2088","97","0","0" +"1539","32","13","0","-1082","-2005","76","0","0" +"1540","32","14","0","-929","-1975","69","0","0" +"1541","32","15","0","-832","-1907","59","0","0" +"1542","32","16","0","-720","-1879","64","0","0" +"1543","32","17","0","-668","-1815","74","0","0" +"1544","32","18","0","-646","-1751","85","0","0" +"1545","32","19","0","-624","-1670","90","0","0" +"1546","32","20","0","-586","-1620","95","0","0" +"1547","32","21","0","-489","-1607","99","0","0" +"1548","32","22","0","-379","-1559","99","0","0" +"1549","32","23","0","-300","-1476","99","0","0" +"1550","32","24","0","-216","-1426","111","0","0" +"1551","32","25","0","-179","-1371","122","0","0" +"1552","32","26","0","-191","-1240","120","0","0" +"1553","32","27","0","-120","-1142","56","0","0" +"2802","32","28","0","26","-1095","49","0","0" +"2803","32","29","0","131","-1123","63","0","0" +"2804","32","30","0","187","-1103","71","0","0" +"2805","32","31","0","237","-1004","87","0","0" +"2806","32","32","0","276","-963","102","0","0" +"2807","32","33","0","357","-929","122","0","0" +"2808","32","34","0","400","-851","133","0","0" +"2809","32","35","0","474","-779","156","0","0" +"2810","32","36","0","558","-762","172","0","0" +"2811","32","37","0","618","-766","176","0","0" +"2812","32","38","0","704","-729","167","0","0" +"2813","32","39","0","756","-660","158","0","0" +"2814","32","40","0","831","-628","160","0","0" +"2815","32","41","0","944","-677","127","0","0" +"2816","32","42","0","1060","-641","104","0","0" +"2817","32","43","0","1136","-501","82","0","0" +"2818","32","44","0","1141","-425","69","0","0" +"2819","32","45","0","1135","-302","51","0","0" +"2820","32","46","0","1166","-114","50","0","0" +"2821","32","47","0","1249","87","50","0","0" +"2822","32","48","0","1293","276","55","0","0" +"2823","32","49","0","1389","429","51","0","0" +"2824","32","50","0","1512","492","56","0","0" +"3175","32","51","0","1666","498","78","0","0" +"3176","32","52","0","1850","517","78","0","0" +"3177","32","53","0","1905","600","78","0","0" +"3178","32","54","0","1908","695","91","0","0" +"3179","32","55","0","1802","752","62","0","0" +"3180","32","56","0","1720","732","63","0","0" +"3181","32","57","0","1691","726","90","0","0" +"3182","32","58","0","1640","730","89","0","0" +"3183","32","59","0","1600","718","77","0","0" +"3184","32","60","0","1591","674","57","0","0" +"3185","32","61","0","1616","645","49","0","0" +"3186","32","62","0","1658","645","33","0","0" +"3187","32","63","0","1687","623","17","0","0" +"3188","32","64","0","1681","590","1","0","0" +"3189","32","65","0","1683","546","-2","0","0" +"3190","32","66","0","1710","513","-2","0","0" +"3191","32","67","0","1726","474","1","0","0" +"3192","32","68","0","1702","420","5","0","0" +"3193","32","69","0","1683","386","1","0","0" +"3194","32","70","0","1687","352","-38","0","0" +"3195","32","71","0","1715","331","-42","0","0" +"3196","32","72","0","1741","292","-42","0","0" +"3197","32","73","0","1751","264","-42","0","0" +"3198","32","74","0","1733","243","-38","0","0" +"3199","32","75","0","1663","239","-30","0","0" +"3200","32","76","0","1638","237","-26","0","0" +"3201","32","77","0","1606","217","-26","0","0" +"3202","32","78","0","1573","225","-34","0","0" +"3203","32","79","0","1568","268","-42","0","0" +"2292","33","0","0","1568","268","-41","0","0" +"2293","33","1","0","1564","249","-37","0","0" +"2294","33","2","0","1574","221","-32","0","0" +"2295","33","3","0","1609","218","-26","0","0" +"2296","33","4","0","1634","240","-29","0","0" +"2297","33","5","0","1698","239","-38","0","0" +"2298","33","6","0","1742","244","-38","0","0" +"2299","33","7","0","1747","284","-42","0","0" +"2300","33","8","0","1715","331","-42","0","0" +"2301","33","9","0","1687","352","-38","0","0" +"2302","33","10","0","1683","386","1","0","0" +"2303","33","11","0","1702","420","5","0","0" +"2304","33","12","0","1726","474","1","0","0" +"2305","33","13","0","1710","513","-2","0","0" +"2306","33","14","0","1683","546","-2","0","0" +"2307","33","15","0","1681","590","1","0","0" +"2308","33","16","0","1687","623","17","0","0" +"2309","33","17","0","1658","645","33","0","0" +"2310","33","18","0","1616","645","49","0","0" +"2311","33","19","0","1591","674","57","0","0" +"2312","33","20","0","1600","718","77","0","0" +"2313","33","21","0","1640","730","89","0","0" +"2314","33","22","0","1691","726","90","0","0" +"3102","33","23","0","1746","737","83","0","0" +"3103","33","24","0","1783","696","75","0","0" +"3104","33","25","0","1780","633","84","0","0" +"3105","33","26","0","1779","543","84","0","0" +"3106","33","27","0","1873","456","82","0","0" +"3107","33","28","0","1955","298","60","0","0" +"3108","33","29","0","1930","212","62","0","0" +"3109","33","30","0","1942","131","23","0","0" +"3110","33","31","0","1940","6","22","0","0" +"3111","33","32","0","1913","-125","44","0","0" +"3112","33","33","0","1891","-265","40","0","0" +"3113","33","34","0","1806","-363","40","0","0" +"3114","33","35","0","1760","-518","49","0","0" +"3115","33","36","0","1679","-616","50","0","0" +"3116","33","37","0","1705","-692","60","0","0" +"3117","33","38","0","1715","-765","69","0","0" +"3118","33","39","0","1722","-824","67","0","0" +"3119","33","40","0","1692","-848","71","0","0" +"3120","33","41","0","1663","-869","71","0","0" +"3121","33","42","0","1629","-902","71","0","0" +"3122","33","43","0","1582","-924","72","0","0" +"3123","33","44","0","1537","-945","75","0","0" +"3124","33","45","0","1505","-961","84","0","0" +"3125","33","46","0","1410","-1013","88","0","0" +"3126","33","47","0","1366","-1105","84","0","0" +"3127","33","48","0","1337","-1209","87","0","0" +"3128","33","49","0","1345","-1279","85","0","0" +"3129","33","50","0","1341","-1343","85","0","0" +"3130","33","51","0","1321","-1447","85","0","0" +"3131","33","52","0","1368","-1494","86","0","0" +"3132","33","53","0","1386","-1552","85","0","0" +"3133","33","54","0","1359","-1609","84","0","0" +"3134","33","55","0","1319","-1655","85","0","0" +"3135","33","56","0","1312","-1732","80","0","0" +"3136","33","57","0","1270","-1824","62","0","0" +"3137","33","58","0","1254","-1906","62","0","0" +"3138","33","59","0","1166","-2022","67","0","0" +"3139","33","60","0","1045","-2121","67","0","0" +"3140","33","61","0","986","-2159","75","0","0" +"3141","33","62","0","864","-2095","58","0","0" +"3142","33","63","0","724","-2014","49","0","0" +"3143","33","64","0","645","-1826","43","0","0" +"3144","33","65","0","595","-1688","46","0","0" +"3145","33","66","0","486","-1524","45","0","0" +"3146","33","67","0","341","-1407","46","0","0" +"3147","33","68","0","278","-1293","48","0","0" +"3148","33","69","0","207","-1204","52","0","0" +"3149","33","70","0","67","-1123","47","0","0" +"3153","33","71","0","-97","-1122","47","0","0" +"3154","33","72","0","-192","-1238","125","0","0" +"3155","33","73","0","-295","-1405","90","0","0" +"3156","33","74","0","-320","-1532","100","0","0" +"3157","33","75","0","-447","-1616","97","0","0" +"3158","33","76","0","-542","-1667","126","0","0" +"3159","33","77","0","-659","-1774","75","0","0" +"3160","33","78","0","-716","-1942","58","0","0" +"3161","33","79","0","-750","-2124","53","0","0" +"3162","33","80","0","-812","-2232","57","0","0" +"3163","33","81","0","-894","-2362","69","0","0" +"3164","33","82","0","-1032","-2536","61","0","0" +"3165","33","83","0","-1059","-2733","52","0","0" +"3166","33","84","0","-1141","-2831","56","0","0" +"3167","33","85","0","-1102","-2950","55","0","0" +"3168","33","86","0","-1173","-3279","63","0","0" +"3169","33","87","0","-1059","-3481","84","0","0" +"3170","33","88","0","-982","-3503","86","0","0" +"3171","33","89","0","-914","-3488","73","0","0" +"1580","34","0","0","-12408","148","4","0","0" +"1581","34","1","0","-12402","157","6","0","0" +"1582","34","2","0","-12390","195","8","0","0" +"1583","34","3","0","-12399","260","14","0","0" +"1584","34","4","0","-12455","318","13","0","0" +"1585","34","5","0","-12568","338","11","0","0" +"1586","34","6","0","-12789","528","24","0","0" +"5016","34","7","0","-13145","790","12","0","0" +"9357","34","8","0","-13579","827","12","0","0" +"9358","34","9","0","-14112","704","43","0","0" +"9359","34","10","0","-14331","619","45","0","0" +"9360","34","11","0","-14445","513","27","0","0" +"1588","35","0","0","-14445","508","27","0","0" +"1589","35","1","0","-14442","510","27","0","0" +"1590","35","2","0","-14421","522","34","0","0" +"1591","35","3","0","-14350","554","55","0","0" +"1592","35","4","0","-14233","597","79","0","0" +"1593","35","5","0","-14156","580","70","0","0" +"1594","35","6","0","-14069","478","20","0","0" +"1595","35","7","0","-14037","437","28","0","0" +"1596","35","8","0","-14027","395","35","0","0" +"1597","35","9","0","-14035","300","37","0","0" +"1598","35","10","0","-14000","280","26","0","0" +"1599","35","11","0","-13929","284","26","0","0" +"1600","35","12","0","-13891","253","26","0","0" +"1601","35","13","0","-13829","243","30","0","0" +"1602","35","14","0","-13740","196","31","0","0" +"1603","35","15","0","-13639","351","57","0","0" +"1604","35","16","0","-13535","781","17","0","0" +"1605","35","17","0","-13266","805","17","0","0" +"1606","35","18","0","-12822","602","23","0","0" +"1607","35","19","0","-12546","450","24","0","0" +"5017","35","20","0","-12400","266","20","0","0" +"5018","35","21","0","-12380","182","15","0","0" +"9079","35","22","0","-12406","147","3","0","0" +"1610","36","0","0","-14446","507","27","0","0" +"1611","36","1","0","-14444","511","27","0","0" +"1612","36","2","0","-14417","532","32","0","0" +"1613","36","3","0","-14266","636","63","0","0" +"1614","36","4","0","-14125","567","95","0","0" +"1615","36","5","0","-14058","263","114","0","0" +"1616","36","6","0","-13362","146","121","0","0" +"1617","36","7","0","-13240","-137","121","0","0" +"1618","36","8","0","-12125","-427","88","0","0" +"1619","36","9","0","-11811","-385","23","0","0" +"1620","36","10","0","-11658","-261","20","0","0" +"1621","36","11","0","-11588","-152","24","0","0" +"1622","36","12","0","-11530","93","25","0","0" +"1623","36","13","0","-11404","276","24","0","0" +"1624","36","14","0","-11165","313","103","0","0" +"1625","36","15","0","-10647","210","122","0","0" +"1626","36","16","0","-10387","47","131","0","0" +"1627","36","17","0","-10057","-309","133","0","0" +"1628","36","18","0","-9949","-1762","120","0","0" +"1629","36","19","0","-9707","-1942","130","0","0" +"1630","36","20","0","-9590","-2110","133","0","0" +"1631","36","21","0","-9552","-2389","132","0","0" +"1632","36","22","0","-9221","-2553","160","0","0" +"1633","36","23","0","-8869","-2591","197","0","0" +"1634","36","24","0","-8633","-2573","164","0","0" +"1635","36","25","0","-8219","-2501","181","0","0" +"1636","36","26","0","-8028","-2342","185","0","0" +"1637","36","27","0","-7788","-2033","191","0","0" +"1638","36","28","0","-7689","-1667","210","0","0" +"1639","36","29","0","-7594","-1614","245","0","0" +"1640","36","30","0","-7489","-1599","297","0","0" +"1641","36","31","0","-7393","-1617","352","0","0" +"1642","36","32","0","-7027","-1689","313","0","0" +"1643","36","33","0","-6904","-1829","315","0","0" +"1644","36","34","0","-6946","-2057","314","0","0" +"1645","36","35","0","-6895","-2212","297","0","0" +"1646","36","36","0","-6779","-2454","286","0","0" +"12415","36","37","0","-6683","-2465","285","0","0" +"12416","36","38","0","-6619","-2349","266","0","0" +"12417","36","39","0","-6620","-2237","255","0","0" +"12418","36","40","0","-6634","-2180","246","0","0" +"1667","37","0","0","-6632","-2188","245","0","0" +"1668","37","1","0","-6649","-2195","252","0","0" +"1669","37","2","0","-6696","-2199","275","0","0" +"1670","37","3","0","-6780","-2232","301","0","0" +"1671","37","4","0","-6885","-2213","319","0","0" +"1672","37","5","0","-6926","-2055","342","0","0" +"1673","37","6","0","-6948","-1704","289","0","0" +"1674","37","7","0","-6995","-1564","281","0","0" +"1675","37","8","0","-7134","-1512","284","0","0" +"1676","37","9","0","-7231","-1537","304","0","0" +"1677","37","10","0","-7373","-1605","334","0","0" +"1678","37","11","0","-7470","-1665","313","0","0" +"1679","37","12","0","-7587","-1766","263","0","0" +"1680","37","13","0","-7800","-2018","187","0","0" +"1681","37","14","0","-7950","-2075","180","0","0" +"1682","37","15","0","-8102","-2086","180","0","0" +"1683","37","16","0","-8204","-2160","180","0","0" +"1684","37","17","0","-8248","-2428","197","0","0" +"1685","37","18","0","-8320","-2531","201","0","0" +"1686","37","19","0","-8565","-2563","201","0","0" +"1687","37","20","0","-8803","-2581","202","0","0" +"1688","37","21","0","-8947","-2567","194","0","0" +"1689","37","22","0","-9222","-2542","140","0","0" +"1690","37","23","0","-9555","-2392","147","0","0" +"1691","37","24","0","-9545","-2019","146","0","0" +"1692","37","25","0","-9848","-1795","134","0","0" +"1693","37","26","0","-10063","-1514","140","0","0" +"1694","37","27","0","-10127","-1156","139","0","0" +"1695","37","28","0","-10250","-977","137","0","0" +"1696","37","29","0","-10549","-871","139","0","0" +"1697","37","30","0","-10783","-779","139","0","0" +"1698","37","31","0","-10908","-594","139","0","0" +"1699","37","32","0","-10897","-365","139","0","0" +"1700","37","33","0","-10833","-155","136","0","0" +"1701","37","34","0","-10743","99","132","0","0" +"1702","37","35","0","-10741","316","127","0","0" +"1703","37","36","0","-10866","458","120","0","0" +"1704","37","37","0","-11096","421","110","0","0" +"1705","37","38","0","-11223","307","43","0","0" +"1706","37","39","0","-11366","296","29","0","0" +"1707","37","40","0","-11464","221","25","0","0" +"1708","37","41","0","-11579","-144","24","0","0" +"1709","37","42","0","-11708","-317","21","0","0" +"1710","37","43","0","-11888","-416","22","0","0" +"1711","37","44","0","-12139","-432","87","0","0" +"1712","37","45","0","-12383","-417","83","0","0" +"1713","37","46","0","-12620","-192","96","0","0" +"1714","37","47","0","-12678","193","18","0","0" +"1715","37","48","0","-12803","497","17","0","0" +"1716","37","49","0","-13249","716","64","0","0" +"1717","37","50","0","-13541","778","61","0","0" +"1718","37","51","0","-13911","707","48","0","0" +"1719","37","52","0","-14335","611","41","0","0" +"1720","37","53","0","-14446","513","27","0","0" +"1726","38","0","0","-6635","-2187","245","0","0" +"1727","38","1","0","-6644","-2189","247","0","0" +"1728","38","2","0","-6663","-2192","250","0","0" +"1729","38","3","0","-6744","-2201","262","0","0" +"1730","38","4","0","-6817","-2230","268","0","0" +"1731","38","5","0","-6873","-2306","276","0","0" +"1732","38","6","0","-6885","-2392","256","0","0" +"1733","38","7","0","-6860","-2484","249","0","0" +"1734","38","8","0","-6794","-2544","258","0","0" +"1735","38","9","0","-6767","-2615","255","0","0" +"1736","38","10","0","-6783","-2769","249","0","0" +"1737","38","11","0","-6652","-2911","249","0","0" +"1738","38","12","0","-6569","-2971","255","0","0" +"1739","38","13","0","-6548","-3014","266","0","0" +"1740","38","14","0","-6543","-3090","275","0","0" +"1741","38","15","0","-6506","-3163","291","0","0" +"1742","38","16","0","-6377","-3310","276","0","0" +"1748","38","17","0","-6298","-3347","275","0","0" +"1749","38","18","0","-6187","-3375","248","0","0" +"1750","38","19","0","-6122","-3347","260","0","0" +"1751","38","20","0","-6006","-3297","272","0","0" +"1752","38","21","0","-5910","-3289","292","0","0" +"1753","38","22","0","-5857","-3346","306","0","0" +"1754","38","23","0","-5849","-3440","324","0","0" +"1755","38","24","0","-5899","-3487","329","0","0" +"1756","38","25","0","-5920","-3541","341","0","0" +"1757","38","26","0","-5894","-3585","366","0","0" +"1758","38","27","0","-5831","-3649","379","0","0" +"1759","38","28","0","-5820","-3708","394","0","0" +"1760","38","29","0","-5720","-3875","370","0","0" +"1761","38","30","0","-5506","-3852","380","0","0" +"1762","38","31","0","-5242","-3689","336","0","0" +"1763","38","32","0","-5097","-3627","319","0","0" +"2825","38","33","0","-4923","-3547","301","0","0" +"2826","38","34","0","-4706","-3404","323","0","0" +"2827","38","35","0","-4557","-3319","233","0","0" +"2828","38","36","0","-4414","-3257","193","0","0" +"2829","38","37","0","-4250","-3185","134","0","0" +"2830","38","38","0","-4138","-3138","40","0","0" +"2831","38","39","0","-4090","-3111","14","0","0" +"2832","38","40","0","-4011","-3048","14","0","0" +"2833","38","41","0","-3905","-2998","14","0","0" +"2834","38","42","0","-3769","-2971","14","0","0" +"2835","38","43","0","-3648","-2941","14","0","0" +"2836","38","44","0","-3509","-2846","14","0","0" +"2837","38","45","0","-3432","-2740","14","0","0" +"2838","38","46","0","-3367","-2730","32","0","0" +"2839","38","47","0","-3153","-2751","26","0","0" +"2840","38","48","0","-3077","-2646","25","0","0" +"2841","38","49","0","-2838","-2603","57","0","0" +"2842","38","50","0","-2761","-2518","72","0","0" +"2843","38","51","0","-2677","-2484","84","0","0" +"2844","38","52","0","-2534","-2495","93","0","0" +"2845","38","53","0","-2469","-2503","86","0","0" +"2846","38","54","0","-2371","-2502","103","0","0" +"2847","38","55","0","-2278","-2504","84","0","0" +"3330","38","56","0","-2137","-2475","82","0","0" +"3331","38","57","0","-1996","-2422","92","0","0" +"3332","38","58","0","-1802","-2314","52","0","0" +"3333","38","59","0","-1739","-2217","55","0","0" +"3334","38","60","0","-1770","-2049","121","0","0" +"3335","38","61","0","-1697","-1917","102","0","0" +"3336","38","62","0","-1651","-1865","91","0","0" +"3337","38","63","0","-1643","-1820","87","0","0" +"3338","38","64","0","-1648","-1761","92","0","0" +"3339","38","65","0","-1631","-1704","93","0","0" +"3340","38","66","0","-1586","-1666","98","0","0" +"3341","38","67","0","-1467","-1687","97","0","0" +"3343","38","68","0","-1397","-1470","92","0","0" +"3344","38","69","0","-1260","-1491","90","0","0" +"3345","38","70","0","-1159","-1437","101","0","0" +"3346","38","71","0","-1081","-1432","114","0","0" +"3347","38","72","0","-975","-1480","114","0","0" +"3348","38","73","0","-894","-1440","88","0","0" +"3349","38","74","0","-829","-1439","72","0","0" +"3350","38","75","0","-770","-1387","75","0","0" +"3351","38","76","0","-728","-1260","69","0","0" +"3352","38","77","0","-620","-1223","73","0","0" +"3353","38","78","0","-568","-1146","73","0","0" +"3354","38","79","0","-438","-1097","60","0","0" +"3355","38","80","0","-314","-1115","52","0","0" +"3356","38","81","0","-136","-1128","67","0","0" +"3357","38","82","0","53","-1127","98","0","0" +"3358","38","83","0","289","-1296","101","0","0" +"3359","38","84","0","432","-1273","135","0","0" +"3360","38","85","0","536","-1303","152","0","0" +"3361","38","86","0","727","-1449","146","0","0" +"3363","38","87","0","904","-1476","135","0","0" +"3364","38","88","0","1041","-1424","128","0","0" +"3365","38","89","0","1136","-1360","117","0","0" +"3366","38","90","0","1299","-1373","105","0","0" +"3367","38","91","0","1432","-1273","124","0","0" +"3368","38","92","0","1596","-1057","136","0","0" +"3369","38","93","0","1707","-885","133","0","0" +"3370","38","94","0","1679","-767","89","0","0" +"3371","38","95","0","1722","-669","61","0","0" +"3372","38","96","0","1809","-665","55","0","0" +"3373","38","97","0","1851","-572","47","0","0" +"3374","38","98","0","1936","-471","55","0","0" +"3375","38","99","0","1963","-370","40","0","0" +"3376","38","100","0","1913","-221","45","0","0" +"3377","38","101","0","1931","91","55","0","0" +"3378","38","102","0","1958","306","60","0","0" +"3379","38","103","0","2004","474","44","0","0" +"3380","38","104","0","1958","585","63","0","0" +"3381","38","105","0","1900","689","44","0","0" +"3382","38","106","0","1814","750","60","0","0" +"3383","38","107","0","1745","732","64","0","0" +"3384","38","108","0","1691","726","79","0","0" +"3387","38","109","0","1640","730","89","0","0" +"3388","38","110","0","1600","718","77","0","0" +"3389","38","111","0","1591","674","57","0","0" +"3390","38","112","0","1616","645","49","0","0" +"3391","38","113","0","1658","645","33","0","0" +"3392","38","114","0","1687","623","17","0","0" +"3393","38","115","0","1681","590","1","0","0" +"3394","38","116","0","1683","546","-2","0","0" +"3395","38","117","0","1710","513","-2","0","0" +"3396","38","118","0","1726","474","1","0","0" +"3397","38","119","0","1702","420","5","0","0" +"3398","38","120","0","1683","386","1","0","0" +"3399","38","121","0","1687","352","-38","0","0" +"3400","38","122","0","1715","331","-42","0","0" +"3401","38","123","0","1741","292","-42","0","0" +"3404","38","124","0","1751","264","-42","0","0" +"3405","38","125","0","1733","243","-38","0","0" +"3406","38","126","0","1663","239","-30","0","0" +"3407","38","127","0","1635","239","-26","0","0" +"3408","38","128","0","1606","217","-26","0","0" +"3409","38","129","0","1573","225","-34","0","0" +"3410","38","130","0","1568","268","-42","0","0" +"2315","39","0","0","1568","268","-41","0","0" +"2316","39","1","0","1567","256","-39","0","0" +"2317","39","2","0","1571","228","-33","0","0" +"2318","39","3","0","1598","216","-28","0","0" +"2319","39","4","0","1630","239","-30","0","0" +"2320","39","5","0","1737","242","-40","0","0" +"2321","39","6","0","1748","281","-44","0","0" +"2322","39","7","0","1711","330","-46","0","0" +"2323","39","8","0","1686","356","-25","0","0" +"2324","39","9","0","1683","386","1","0","0" +"2325","39","10","0","1702","420","5","0","0" +"2326","39","11","0","1726","474","1","0","0" +"2327","39","12","0","1710","513","-2","0","0" +"2328","39","13","0","1683","546","-2","0","0" +"2329","39","14","0","1681","590","1","0","0" +"2330","39","15","0","1687","623","17","0","0" +"2331","39","16","0","1658","645","33","0","0" +"2332","39","17","0","1616","645","49","0","0" +"2333","39","18","0","1591","674","57","0","0" +"2334","39","19","0","1600","718","77","0","0" +"2335","39","20","0","1640","730","89","0","0" +"2336","39","21","0","1691","726","90","0","0" +"2337","39","22","0","1734","734","74","0","0" +"3205","39","23","0","1789","752","78","0","0" +"3206","39","24","0","1823","725","79","0","0" +"3207","39","25","0","1827","646","78","0","0" +"3208","39","26","0","1718","640","77","0","0" +"3209","39","27","0","1631","631","75","0","0" +"3210","39","28","0","1558","619","58","0","0" +"3211","39","29","0","1461","606","58","0","0" +"3212","39","30","0","1378","658","41","0","0" +"3213","39","31","0","1326","767","40","0","0" +"3214","39","32","0","1279","848","40","0","0" +"3215","39","33","0","1228","918","43","0","0" +"3216","39","34","0","1177","1004","43","0","0" +"3217","39","35","0","1045","1054","42","0","0" +"3218","39","36","0","884","1059","57","0","0" +"3219","39","37","0","718","1005","56","0","0" +"3220","39","38","0","615","868","73","0","0" +"3221","39","39","0","540","776","81","0","0" +"3222","39","40","0","444","689","50","0","0" +"3223","39","41","0","375","646","45","0","0" +"3224","39","42","0","249","632","51","0","0" +"3225","39","43","0","179","597","78","0","0" +"3226","39","44","0","118","553","96","0","0" +"3227","39","45","0","42","494","62","0","0" +"3228","39","46","0","24","371","56","0","0" +"3229","39","47","0","-96","341","82","0","0" +"3230","39","48","0","-160","304","122","0","0" +"3231","39","49","0","-202","175","86","0","0" +"3232","39","50","0","-255","143","88","0","0" +"3233","39","51","0","-310","190","100","0","0" +"3234","39","52","0","-378","214","97","0","0" +"3235","39","53","0","-497","204","82","0","0" +"3236","39","54","0","-614","163","66","0","0" +"3237","39","55","0","-733","128","50","0","0" +"3238","39","56","0","-863","113","45","0","0" +"3239","39","57","0","-978","116","60","0","0" +"3240","39","58","0","-1079","95","65","0","0" +"3241","39","59","0","-1120","48","55","0","0" +"3243","39","60","0","-1119","-74","27","0","0" +"3244","39","61","0","-1117","-212","12","0","0" +"3245","39","62","0","-1093","-383","5","0","0" +"3246","39","63","0","-1065","-572","6","0","0" +"3247","39","64","0","-1145","-717","2","0","0" +"3248","39","65","0","-1293","-876","5","0","0" +"3249","39","66","0","-1399","-1002","3","0","0" +"3250","39","67","0","-1565","-1077","4","0","0" +"3251","39","68","0","-1690","-1136","9","0","0" +"3252","39","69","0","-1826","-1304","6","0","0" +"3253","39","70","0","-1974","-1431","6","0","0" +"3254","39","71","0","-2125","-1602","5","0","0" +"3255","39","72","0","-2250","-1850","43","0","0" +"3256","39","73","0","-2317","-1932","8","0","0" +"3257","39","74","0","-2343","-2045","8","0","0" +"3258","39","75","0","-2322","-2216","18","0","0" +"3259","39","76","0","-2350","-2377","20","0","0" +"3260","39","77","0","-2343","-2431","31","0","0" +"3261","39","78","0","-2348","-2457","53","0","0" +"3262","39","79","0","-2387","-2462","79","0","0" +"3263","39","80","0","-2461","-2467","127","0","0" +"3264","39","81","0","-2512","-2476","96","0","0" +"3265","39","82","0","-2592","-2489","88","0","0" +"3266","39","83","0","-2684","-2482","83","0","0" +"3267","39","84","0","-2802","-2505","66","0","0" +"3268","39","85","0","-2879","-2585","46","0","0" +"3269","39","86","0","-2954","-2618","34","0","0" +"3270","39","87","0","-3040","-2596","17","0","0" +"3271","39","88","0","-3174","-2581","16","0","0" +"3272","39","89","0","-3262","-2590","17","0","0" +"3273","39","90","0","-3371","-2565","23","0","0" +"3274","39","91","0","-3414","-2519","33","0","0" +"3275","39","92","0","-3457","-2500","40","0","0" +"3276","39","93","0","-3498","-2484","58","0","0" +"3277","39","94","0","-3552","-2502","59","0","0" +"3278","39","95","0","-3581","-2508","60","0","0" +"3279","39","96","0","-3628","-2547","67","0","0" +"3280","39","97","0","-3691","-2608","78","0","0" +"3281","39","98","0","-3761","-2630","88","0","0" +"3282","39","99","0","-3856","-2642","95","0","0" +"3283","39","100","0","-3927","-2629","93","0","0" +"3284","39","101","0","-3987","-2577","102","0","0" +"3285","39","102","0","-4049","-2485","172","0","0" +"3286","39","103","0","-4160","-2423","236","0","0" +"3287","39","104","0","-4243","-2455","268","0","0" +"3288","39","105","0","-4314","-2625","312","0","0" +"3289","39","106","0","-4409","-2667","350","0","0" +"3290","39","107","0","-4536","-2668","411","0","0" +"3291","39","108","0","-4582","-2677","432","0","0" +"3292","39","109","0","-4637","-2713","392","0","0" +"3293","39","110","0","-4710","-2760","334","0","0" +"3294","39","111","0","-4746","-2819","336","0","0" +"3295","39","112","0","-4731","-2876","335","0","0" +"3296","39","113","0","-4734","-2940","351","0","0" +"3297","39","114","0","-4757","-3005","337","0","0" +"3298","39","115","0","-4819","-3099","331","0","0" +"3299","39","116","0","-4908","-3276","313","0","0" +"3300","39","117","0","-5025","-3383","305","0","0" +"3301","39","118","0","-5133","-3458","328","0","0" +"3302","39","119","0","-5256","-3504","333","0","0" +"3303","39","120","0","-5453","-3510","308","0","0" +"3304","39","121","0","-5530","-3484","307","0","0" +"3305","39","122","0","-5637","-3542","303","0","0" +"3306","39","123","0","-5721","-3494","308","0","0" +"3307","39","124","0","-5757","-3417","309","0","0" +"3308","39","125","0","-5807","-3391","313","0","0" +"3309","39","126","0","-5871","-3336","305","0","0" +"3310","39","127","0","-5899","-3299","293","0","0" +"3311","39","128","0","-5942","-3289","287","0","0" +"3312","39","129","0","-6030","-3304","275","0","0" +"3313","39","130","0","-6175","-3380","255","0","0" +"3314","39","131","0","-6334","-3397","248","0","0" +"3315","39","132","0","-6439","-3353","249","0","0" +"3316","39","133","0","-6554","-3354","271","0","0" +"3317","39","134","0","-6739","-3249","251","0","0" +"3318","39","135","0","-6777","-3108","257","0","0" +"3319","39","136","0","-6705","-2998","271","0","0" +"3320","39","137","0","-6663","-2881","249","0","0" +"3321","39","138","0","-6687","-2712","250","0","0" +"3322","39","139","0","-6624","-2632","272","0","0" +"3323","39","140","0","-6611","-2539","282","0","0" +"3324","39","141","0","-6638","-2415","264","0","0" +"3325","39","142","0","-6619","-2334","264","0","0" +"3326","39","143","0","-6613","-2251","252","0","0" +"3327","39","144","0","-6631","-2184","248","0","0" +"1814","40","0","0","-8850","497","111","0","0" +"1815","40","1","0","-8852","495","111","0","0" +"1816","40","2","0","-8868","484","114","0","0" +"1817","40","3","0","-8920","444","121","0","0" +"1818","40","4","0","-9028","491","142","0","0" +"1819","40","5","0","-9114","472","160","0","0" +"1820","40","6","0","-9350","343","150","0","0" +"1821","40","7","0","-9477","450","133","0","0" +"1822","40","8","0","-9586","598","128","0","0" +"1823","40","9","0","-9804","748","93","0","0" +"1832","40","10","0","-9961","747","50","0","0" +"1833","40","11","0","-10112","760","32","0","0" +"1834","40","12","0","-10222","692","31","0","0" +"1835","40","13","0","-10313","721","31","0","0" +"2940","40","14","0","-10439","714","31","0","0" +"2941","40","15","0","-10538","646","32","0","0" +"2942","40","16","0","-10680","615","30","0","0" +"2943","40","17","0","-10816","617","28","0","0" +"2944","40","18","0","-10862","628","48","0","0" +"2945","40","19","0","-10917","603","28","0","0" +"2946","40","20","0","-11001","547","28","0","0" +"2947","40","21","0","-11077","459","28","0","0" +"2948","40","22","0","-11137","365","29","0","0" +"2949","40","23","0","-11212","304","27","0","0" +"2950","40","24","0","-11325","298","24","0","0" +"2951","40","25","0","-11397","279","19","0","0" +"2952","40","26","0","-11452","231","19","0","0" +"2953","40","27","0","-11536","64","18","0","0" +"2954","40","28","0","-11563","-95","20","0","0" +"2955","40","29","0","-11591","-173","20","0","0" +"2956","40","30","0","-11650","-254","17","0","0" +"2957","40","31","0","-11732","-336","16","0","0" +"2958","40","32","0","-11791","-410","43","0","0" +"2959","40","33","0","-11916","-411","22","0","0" +"2960","40","34","0","-12082","-374","19","0","0" +"2961","40","35","0","-12166","-351","32","0","0" +"2962","40","36","0","-12239","-321","21","0","0" +"2963","40","37","0","-12324","-298","19","0","0" +"2964","40","38","0","-12430","-293","19","0","0" +"2965","40","39","0","-12503","-221","19","0","0" +"2966","40","40","0","-12561","-125","18","0","0" +"2967","40","41","0","-12582","-36","22","0","0" +"2968","40","42","0","-12587","0","8","0","0" +"2969","40","43","0","-12642","64","12","0","0" +"2970","40","44","0","-12706","122","25","0","0" +"2999","40","45","0","-12797","151","26","0","0" +"3000","40","46","0","-12842","195","26","0","0" +"3001","40","47","0","-12906","215","23","0","0" +"3002","40","48","0","-12974","190","26","0","0" +"3003","40","49","0","-13015","207","28","0","0" +"3004","40","50","0","-13018","259","27","0","0" +"3005","40","51","0","-13037","316","28","0","0" +"3006","40","52","0","-13043","380","27","0","0" +"3007","40","53","0","-13133","389","22","0","0" +"3008","40","54","0","-13185","448","17","0","0" +"3009","40","55","0","-13196","517","8","0","0" +"3010","40","56","0","-13249","616","6","0","0" +"3011","40","57","0","-13250","714","20","0","0" +"3012","40","58","0","-13383","790","8","0","0" +"3013","40","59","0","-13535","785","9","0","0" +"3014","40","60","0","-13695","723","9","0","0" +"3015","40","61","0","-13872","706","16","0","0" +"3016","40","62","0","-13963","656","16","0","0" +"3017","40","63","0","-14082","637","19","0","0" +"3018","40","64","0","-14196","600","28","0","0" +"3019","40","65","0","-14266","533","49","0","0" +"3020","40","66","0","-14306","472","37","0","0" +"3021","40","67","0","-14370","427","34","0","0" +"3022","40","68","0","-14430","429","41","0","0" +"3023","40","69","0","-14459","454","40","0","0" +"3024","40","70","0","-14474","465","39","0","0" +"1836","41","0","0","-14475","462","37","0","0" +"1837","41","1","0","-14472","460","38","0","0" +"1838","41","2","0","-14422","420","51","0","0" +"1839","41","3","0","-14347","448","70","0","0" +"1840","41","4","0","-14270","556","81","0","0" +"1841","41","5","0","-14155","680","90","0","0" +"1842","41","6","0","-13954","660","69","0","0" +"1843","41","7","0","-13876","645","25","0","0" +"1844","41","8","0","-13751","639","21","0","0" +"1845","41","9","0","-13668","656","13","0","0" +"1846","41","10","0","-13567","739","12","0","0" +"1847","41","11","0","-13494","779","12","0","0" +"1848","41","12","0","-13368","780","10","0","0" +"1849","41","13","0","-13318","724","9","0","0" +"1850","41","14","0","-13298","620","8","0","0" +"2971","41","15","0","-13193","516","12","0","0" +"2972","41","16","0","-13005","473","22","0","0" +"2973","41","17","0","-12871","473","11","0","0" +"2974","41","18","0","-12742","354","8","0","0" +"2975","41","19","0","-12532","346","6","0","0" +"2976","41","20","0","-12405","422","13","0","0" +"2977","41","21","0","-12248","430","19","0","0" +"2978","41","22","0","-12104","374","16","0","0" +"2979","41","23","0","-11950","331","29","0","0" +"2980","41","24","0","-11865","297","23","0","0" +"2981","41","25","0","-11775","221","27","0","0" +"2982","41","26","0","-11723","172","46","0","0" +"2983","41","27","0","-11672","128","27","0","0" +"2984","41","28","0","-11638","101","21","0","0" +"2985","41","29","0","-11591","103","21","0","0" +"2986","41","30","0","-11562","122","25","0","0" +"2987","41","31","0","-11445","230","18","0","0" +"2988","41","32","0","-11376","294","20","0","0" +"2989","41","33","0","-11243","299","26","0","0" +"2990","41","34","0","-11125","380","30","0","0" +"2991","41","35","0","-11044","499","33","0","0" +"2992","41","36","0","-10939","590","36","0","0" +"2993","41","37","0","-10863","621","44","0","0" +"2994","41","38","0","-10753","617","52","0","0" +"2995","41","39","0","-10617","627","52","0","0" +"2996","41","40","0","-10502","666","52","0","0" +"2997","41","41","0","-10401","723","52","0","0" +"2998","41","42","0","-10220","763","53","0","0" +"3025","41","43","0","-10080","765","62","0","0" +"3026","41","44","0","-9889","723","88","0","0" +"3027","41","45","0","-9782","646","101","0","0" +"3028","41","46","0","-9559","537","133","0","0" +"3029","41","47","0","-9340","362","140","0","0" +"3030","41","48","0","-9130","296","162","0","0" +"3031","41","49","0","-9036","376","161","0","0" +"3032","41","50","0","-8917","421","132","0","0" +"3033","41","51","0","-8834","479","112","0","0" +"1875","42","0","1","1679","-4316","62","0","0" +"1876","42","1","1","1677","-4314","62","0","0" +"1877","42","2","1","1667","-4304","65","0","0" +"1878","42","3","1","1657","-4292","69","0","0" +"1879","42","4","1","1615","-4255","65","0","0" +"1880","42","5","1","1598","-4181","63","0","0" +"1881","42","6","1","1642","-4124","67","0","0" +"1882","42","7","1","1744","-4078","60","0","0" +"1883","42","8","1","1761","-3978","86","0","0" +"1884","42","9","1","1714","-3907","94","0","0" +"1885","42","10","1","1584","-3869","71","0","0" +"1886","42","11","1","1465","-3859","46","0","0" +"1887","42","12","1","1315","-3869","38","0","0" +"1888","42","13","1","1165","-3799","42","0","0" +"1889","42","14","1","1050","-3706","37","0","0" +"1890","42","15","1","1038","-3597","60","0","0" +"1891","42","16","1","1097","-3473","91","0","0" +"1892","42","17","1","1098","-3239","101","0","0" +"1893","42","18","1","1001","-3135","114","0","0" +"1894","42","19","1","932","-2900","99","0","0" +"1895","42","20","1","734","-2668","99","0","0" +"1896","42","21","1","694","-2415","102","0","0" +"1897","42","22","1","684","-2178","102","0","0" +"1898","42","23","1","614","-1981","101","0","0" +"1974","42","24","1","490","-1883","99","0","0" +"1975","42","25","1","291","-1826","99","0","0" +"1976","42","26","1","243","-1700","101","0","0" +"2442","42","27","1","-34","-1666","99","0","0" +"2443","42","28","1","-169","-1629","101","0","0" +"2444","42","29","1","-404","-1610","100","0","0" +"2445","42","30","1","-466","-1500","101","0","0" +"2446","42","31","1","-463","-1366","118","0","0" +"2447","42","32","1","-497","-1299","161","0","0" +"2448","42","33","1","-634","-1280","228","0","0" +"2449","42","34","1","-768","-1214","185","0","0" +"2450","42","35","1","-869","-1133","149","0","0" +"2451","42","36","1","-1097","-901","27","0","0" +"2452","42","37","1","-1298","-598","-45","0","0" +"2453","42","38","1","-1365","-363","-25","0","0" +"2454","42","39","1","-1195","-218","86","0","0" +"2455","42","40","1","-1042","-128","145","0","0" +"2456","42","41","1","-1050","-52","172","0","0" +"9431","42","42","1","-1136","11","183","0","0" +"9432","42","43","1","-1196","29","180","0","0" +"1900","44","0","1","-441","-2597","97","0","0" +"1901","44","1","1","-447","-2633","107","0","0" +"1902","44","2","1","-430","-2675","118","0","0" +"1903","44","3","1","-345","-2678","121","0","0" +"1904","44","4","1","-284","-2567","121","0","0" +"1905","44","5","1","-396","-2354","102","0","0" +"1906","44","6","1","-435","-2198","139","0","0" +"1907","44","7","1","-449","-2050","103","0","0" +"1908","44","8","1","-634","-1901","105","0","0" +"1909","44","9","1","-831","-1839","111","0","0" +"1910","44","10","1","-1004","-1862","111","0","0" +"1911","44","11","1","-1260","-1959","110","0","0" +"1912","44","12","1","-1503","-1987","103","0","0" +"1913","44","13","1","-1745","-1852","104","0","0" +"1914","44","14","1","-1967","-1866","104","0","0" +"1915","44","15","1","-2102","-1835","103","0","0" +"1916","44","16","1","-2215","-1718","119","0","0" +"1917","44","17","1","-2263","-1508","120","0","0" +"1918","44","18","1","-2263","-1258","32","0","0" +"2391","44","19","1","-2139","-1059","28","0","0" +"2392","44","20","1","-1928","-937","37","0","0" +"2393","44","21","1","-1814","-819","26","0","0" +"2394","44","22","1","-1743","-617","0","0","0" +"2395","44","23","1","-1600","-466","-22","0","0" +"2396","44","24","1","-1415","-392","-27","0","0" +"2397","44","25","1","-1300","-333","39","0","0" +"2398","44","26","1","-1139","-334","145","0","0" +"2399","44","27","1","-1040","-276","203","0","0" +"2400","44","28","1","-1009","-137","211","0","0" +"2401","44","29","1","-1033","2","184","0","0" +"9169","44","30","1","-1155","23","181","0","0" +"9170","44","31","1","-1197","30","180","0","0" +"1936","45","0","1","-439","-2596","97","0","0" +"1937","45","1","1","-453","-2641","107","0","0" +"1938","45","2","1","-484","-2721","117","0","0" +"1939","45","3","1","-554","-2853","117","0","0" +"1940","45","4","1","-740","-3069","119","0","0" +"1941","45","5","1","-787","-3251","118","0","0" +"1942","45","6","1","-708","-3466","123","0","0" +"1943","45","7","1","-345","-3599","124","0","0" +"1944","45","8","1","87","-3688","58","0","0" +"1945","45","9","1","369","-3721","51","0","0" +"1946","45","10","1","970","-3754","47","0","0" +"1947","45","11","1","1200","-3835","53","0","0" +"1978","45","12","1","1624","-3846","97","0","0" +"1979","45","13","1","1699","-3953","95","0","0" +"1980","45","14","1","1724","-4051","82","0","0" +"1983","45","15","1","1590","-4126","77","0","0" +"3416","45","16","1","1571","-4191","75","0","0" +"9167","45","17","1","1617","-4272","65","0","0" +"12420","45","18","1","1609","-4336","65","0","0" +"12443","45","19","1","1630","-4397","54","0","0" +"12444","45","20","1","1683","-4407","62","0","0" +"12445","45","21","1","1726","-4374","62","0","0" +"12446","45","22","1","1718","-4326","65","0","0" +"12447","45","23","1","1679","-4314","65","0","0" +"1919","46","0","1","-1196","29","179","0","0" +"1920","46","1","1","-1199","30","179","0","0" +"1921","46","2","1","-1220","35","180","0","0" +"1922","46","3","1","-1279","29","168","0","0" +"1923","46","4","1","-1380","-51","174","0","0" +"1924","46","5","1","-1420","-110","190","0","0" +"1925","46","6","1","-1444","-172","170","0","0" +"1926","46","7","1","-1518","-277","56","0","0" +"1927","46","8","1","-1633","-500","-10","0","0" +"1928","46","9","1","-1933","-600","20","0","0" +"1929","46","10","1","-2037","-837","9","0","0" +"1930","46","11","1","-2110","-1044","34","0","0" +"1931","46","12","1","-2355","-1160","11","0","0" +"1932","46","13","1","-2343","-1502","59","0","0" +"1933","46","14","1","-2350","-1659","94","0","0" +"1934","46","15","1","-2219","-1848","107","0","0" +"1935","46","16","1","-2034","-1903","110","0","0" +"2380","46","17","1","-1871","-2044","107","0","0" +"2381","46","18","1","-1668","-2066","110","0","0" +"2382","46","19","1","-1391","-2124","108","0","0" +"2383","46","20","1","-1217","-2194","136","0","0" +"2384","46","21","1","-1141","-2371","116","0","0" +"2385","46","22","1","-984","-2469","104","0","0" +"2386","46","23","1","-724","-2413","149","0","0" +"2387","46","24","1","-522","-2451","127","0","0" +"2388","46","25","1","-408","-2524","125","0","0" +"2389","46","26","1","-441","-2595","100","0","0" +"1948","47","0","1","1678","-4317","62","0","0" +"1949","47","1","1","1676","-4315","62","0","0" +"1950","47","2","1","1667","-4308","64","0","0" +"1951","47","3","1","1615","-4261","65","0","0" +"1952","47","4","1","1606","-4175","63","0","0" +"1953","47","5","1","1685","-4131","56","0","0" +"1954","47","6","1","1750","-4057","66","0","0" +"1955","47","7","1","1764","-3993","78","0","0" +"1956","47","8","1","1721","-3903","94","0","0" +"1957","47","9","1","1622","-3866","94","0","0" +"1958","47","10","1","1342","-3811","82","0","0" +"1959","47","11","1","1221","-3720","105","0","0" +"1960","47","12","1","1095","-3611","78","0","0" +"1961","47","13","1","981","-3465","114","0","0" +"1962","47","14","1","869","-3380","194","0","0" +"1963","47","15","1","825","-3289","225","0","0" +"1964","47","16","1","775","-3197","219","0","0" +"1965","47","17","1","669","-3167","202","0","0" +"1966","47","18","1","501","-3133","109","0","0" +"2508","47","19","1","306","-3018","120","0","0" +"2509","47","20","1","202","-2824","120","0","0" +"2510","47","21","1","48","-2708","115","0","0" +"2511","47","22","1","-161","-2686","109","0","0" +"2512","47","23","1","-252","-2579","124","0","0" +"2513","47","24","1","-341","-2551","115","0","0" +"9429","47","25","1","-398","-2570","107","0","0" +"9430","47","26","1","-439","-2595","99","0","0" +"2007","50","0","1","2827","-289","108","0","0" +"2008","50","1","1","2831","-284","107","0","0" +"2009","50","2","1","2837","-274","106","0","0" +"2010","50","3","1","2870","-189","121","0","0" +"2011","50","4","1","2867","-85","113","0","0" +"2012","50","5","1","2832","21","107","0","0" +"2013","50","6","1","2816","102","105","0","0" +"2014","50","7","1","2843","164","108","0","0" +"2015","50","8","1","2907","186","107","0","0" +"2016","50","9","1","3021","150","79","0","0" +"2017","50","10","1","3107","222","43","0","0" +"2018","50","11","1","3211","183","32","0","0" +"2019","50","12","1","3302","178","27","0","0" +"2020","50","13","1","3418","250","24","0","0" +"2021","50","14","1","3641","217","18","0","0" +"2022","50","15","1","3776","150","19","0","0" +"2023","50","16","1","3905","36","23","0","0" +"2024","50","17","1","4030","-7","28","0","0" +"2025","50","18","1","4181","59","51","0","0" +"2026","50","19","1","4263","131","53","0","0" +"2027","50","20","1","4348","180","54","0","0" +"2028","50","21","1","4445","242","66","0","0" +"2029","50","22","1","4515","284","65","0","0" +"2030","50","23","1","4666","275","61","0","0" +"2347","50","24","1","4767","226","56","0","0" +"2348","50","25","1","4866","216","53","0","0" +"2364","50","26","1","4905","239","57","0","0" +"2365","50","27","1","4910","338","52","0","0" +"2366","50","28","1","4975","448","34","0","0" +"2367","50","29","1","5071","465","29","0","0" +"2368","50","30","1","5168","518","20","0","0" +"2369","50","31","1","5284","521","23","0","0" +"2370","50","32","1","5600","554","31","0","0" +"2371","50","33","1","5963","577","18","0","0" +"2372","50","34","1","6227","515","27","0","0" +"2373","50","35","1","6311","520","24","0","0" +"2374","50","36","1","6341","556","18","0","0" +"2031","51","0","1","6341","558","17","0","0" +"2032","51","1","1","6341","617","26","0","0" +"2033","51","2","1","6262","653","25","0","0" +"2034","51","3","1","6034","632","25","0","0" +"2035","51","4","1","5198","543","26","0","0" +"2036","51","5","1","4670","720","29","0","0" +"2037","51","6","1","4493","855","32","0","0" +"2038","51","7","1","4362","1103","36","0","0" +"2039","51","8","1","4205","1167","67","0","0" +"2040","51","9","1","4090","930","38","0","0" +"2041","51","10","1","3886","871","18","0","0" +"2042","51","11","1","3786","676","19","0","0" +"2043","51","12","1","3563","620","22","0","0" +"2044","51","13","1","3504","548","18","0","0" +"2045","51","14","1","3444","534","17","0","0" +"2046","51","15","1","3359","580","19","0","0" +"2047","51","16","1","3252","544","20","0","0" +"2048","51","17","1","3182","441","66","0","0" +"2049","51","18","1","3000","495","93","0","0" +"2050","51","19","1","2924","418","111","0","0" +"2051","51","20","1","2852","383","107","0","0" +"2052","51","21","1","2757","413","106","0","0" +"2053","51","22","1","2677","381","99","0","0" +"2054","51","23","1","2602","281","110","0","0" +"2055","51","24","1","2675","220","119","0","0" +"2056","51","25","1","2805","163","120","0","0" +"2057","51","26","1","2829","37","107","0","0" +"2058","51","27","1","2867","-75","112","0","0" +"2351","51","28","1","2869","-168","118","0","0" +"2352","51","29","1","2839","-254","114","0","0" +"2353","51","30","1","2827","-285","110","0","0" +"2059","52","0","1","964","1041","106","0","0" +"2060","52","1","1","978","1052","111","0","0" +"2061","52","2","1","1005","1053","122","0","0" +"2062","52","3","1","1040","1021","144","0","0" +"2063","52","4","1","1023","966","157","0","0" +"2064","52","5","1","958","926","170","0","0" +"2065","52","6","1","929","831","182","0","0" +"2066","52","7","1","930","690","187","0","0" +"2067","52","8","1","877","505","181","0","0" +"2068","52","9","1","756","362","164","0","0" +"2069","52","10","1","543","270","141","0","0" +"2070","52","11","1","350","258","135","0","0" +"2071","52","12","1","200","153","128","0","0" +"2072","52","13","1","105","-66","99","0","0" +"2073","52","14","1","37","-364","78","0","0" +"2074","52","15","1","-51","-603","60","0","0" +"2075","52","16","1","-213","-793","56","0","0" +"2076","52","17","1","-247","-1099","65","0","0" +"2077","52","18","1","-346","-1270","103","0","0" +"2078","52","19","1","-490","-1301","163","0","0" +"2079","52","20","1","-625","-1282","220","0","0" +"2379","52","21","1","-667","-1265","224","0","0" +"6793","52","22","1","-771","-1213","184","0","0" +"6794","52","23","1","-870","-1135","148","0","0" +"6795","52","24","1","-922","-1031","88","0","0" +"6796","52","25","1","-852","-883","92","0","0" +"6797","52","26","1","-775","-801","108","0","0" +"6798","52","27","1","-667","-530","138","0","0" +"6799","52","28","1","-690","-246","175","0","0" +"6800","52","29","1","-804","-90","176","0","0" +"6801","52","30","1","-1064","-11","184","0","0" +"6802","52","31","1","-1174","25","181","0","0" +"9485","52","32","1","-1196","30","179","0","0" +"2080","53","0","1","-1197","30","179","0","0" +"2081","53","1","1","-1200","30","180","0","0" +"2082","53","2","1","-1221","38","183","0","0" +"2083","53","3","1","-1289","64","184","0","0" +"2084","53","4","1","-1335","137","170","0","0" +"2085","53","5","1","-1307","217","154","0","0" +"2086","53","6","1","-1159","208","136","0","0" +"2087","53","7","1","-930","-68","85","0","0" +"2088","53","8","1","-854","-661","32","0","0" +"2089","53","9","1","-983","-841","14","0","0" +"2090","53","10","1","-997","-1063","70","0","0" +"2091","53","11","1","-852","-1186","167","0","0" +"2092","53","12","1","-646","-1261","221","0","0" +"2093","53","13","1","-426","-1177","218","0","0" +"2094","53","14","1","-266","-1099","110","0","0" +"2095","53","15","1","-218","-944","61","0","0" +"2096","53","16","1","-258","-629","95","0","0" +"2097","53","17","1","-94","-344","75","0","0" +"2098","53","18","1","45","-160","59","0","0" +"2099","53","19","1","145","28","83","0","0" +"2486","53","20","1","218","244","98","0","0" +"6810","53","21","1","383","347","126","0","0" +"6811","53","22","1","669","436","137","0","0" +"6812","53","23","1","885","650","158","0","0" +"6813","53","24","1","941","828","161","0","0" +"6814","53","25","1","916","923","145","0","0" +"6815","53","26","1","927","991","122","0","0" +"9517","53","27","1","966","1040","105","0","0" +"2103","54","0","1","-5408","-2416","91","0","0" +"2104","54","1","1","-5415","-2412","95","0","0" +"2105","54","2","1","-5450","-2404","100","0","0" +"2106","54","3","1","-5539","-2306","75","0","0" +"2107","54","4","1","-5381","-2200","75","0","0" +"2108","54","5","1","-5275","-2076","66","0","0" +"2109","54","6","1","-4985","-1987","63","0","0" +"2110","54","7","1","-4852","-1832","75","0","0" +"2111","54","8","1","-4729","-1809","81","0","0" +"2112","54","9","1","-4666","-1836","122","0","0" +"2113","54","10","1","-4533","-1867","102","0","0" +"2114","54","11","1","-4335","-1882","106","0","0" +"2115","54","12","1","-4159","-1899","115","0","0" +"2116","54","13","1","-4072","-1876","126","0","0" +"2117","54","14","1","-3952","-1886","142","0","0" +"2118","54","15","1","-3665","-1899","139","0","0" +"2119","54","16","1","-3328","-1793","133","0","0" +"2120","54","17","1","-3112","-1991","129","0","0" +"2121","54","18","1","-2737","-1953","133","0","0" +"2122","54","19","1","-2544","-1819","134","0","0" +"2123","54","20","1","-2460","-1532","122","0","0" +"2124","54","21","1","-2465","-1299","10","0","0" +"2125","54","22","1","-2425","-1200","0","0","0" +"2126","54","23","1","-2416","-1033","-1","0","0" +"2127","54","24","1","-2402","-831","40","0","0" +"2128","54","25","1","-2396","-615","-1","0","0" +"2129","54","26","1","-2366","-467","18","0","0" +"2130","54","27","1","-2332","-364","37","0","0" +"2131","54","28","1","-2166","-167","29","0","0" +"2132","54","29","1","-1817","93","44","0","0" +"2133","54","30","1","-1440","263","56","0","0" +"2466","54","31","1","-1180","213","138","0","0" +"2467","54","32","1","-1075","135","171","0","0" +"2468","54","33","1","-1101","29","171","0","0" +"2469","54","34","1","-1166","26","180","0","0" +"2470","54","35","1","-1196","30","180","0","0" +"2135","55","0","1","-1198","30","180","0","0" +"2136","55","1","1","-1200","30","181","0","0" +"2137","55","2","1","-1214","34","183","0","0" +"2138","55","3","1","-1263","51","183","0","0" +"2139","55","4","1","-1309","6","164","0","0" +"2140","55","5","1","-1381","-198","69","0","0" +"2141","55","6","1","-1733","-267","6","0","0" +"2142","55","7","1","-1965","-367","9","0","0" +"2143","55","8","1","-2251","-382","35","0","0" +"2144","55","9","1","-2368","-471","29","0","0" +"2145","55","10","1","-2386","-665","4","0","0" +"2146","55","11","1","-2328","-830","8","0","0" +"2147","55","12","1","-2493","-1036","8","0","0" +"2148","55","13","1","-2523","-1303","11","0","0" +"2149","55","14","1","-2460","-1533","123","0","0" +"2150","55","15","1","-2460","-1650","135","0","0" +"2151","55","16","1","-2518","-1787","100","0","0" +"2152","55","17","1","-2737","-1955","106","0","0" +"2153","55","18","1","-2932","-2012","99","0","0" +"2154","55","19","1","-3130","-2048","100","0","0" +"2155","55","20","1","-3425","-2008","112","0","0" +"2156","55","21","1","-3753","-2053","99","0","0" +"2157","55","22","1","-3993","-2038","105","0","0" +"2158","55","23","1","-4134","-1966","100","0","0" +"2457","55","24","1","-4227","-1894","99","0","0" +"2458","55","25","1","-4383","-1890","95","0","0" +"2459","55","26","1","-4523","-1854","102","0","0" +"2460","55","27","1","-4623","-1875","93","0","0" +"2461","55","28","1","-4772","-1978","35","0","0" +"2462","55","29","1","-4864","-2109","28","0","0" +"2463","55","30","1","-5049","-2214","9","0","0" +"2464","55","31","1","-5151","-2281","11","0","0" +"2465","55","32","1","-5208","-2309","92","0","0" +"2487","55","33","1","-5271","-2345","113","0","0" +"3418","55","34","1","-5387","-2401","97","0","0" +"9516","55","35","1","-5407","-2416","94","0","0" +"2181","56","0","1","-3826","-4519","11","0","0" +"2182","56","1","1","-3829","-4522","13","0","0" +"2183","56","2","1","-3888","-4565","20","0","0" +"2184","56","3","1","-3953","-4527","26","0","0" +"2185","56","4","1","-3987","-4430","48","0","0" +"2186","56","5","1","-4028","-3938","115","0","0" +"2187","56","6","1","-3888","-3619","124","0","0" +"2188","56","7","1","-3679","-2878","124","0","0" +"2189","56","8","1","-3653","-2363","127","0","0" +"2190","56","9","1","-4080","-2226","129","0","0" +"2191","56","10","1","-4193","-1907","123","0","0" +"2192","56","11","1","-4401","-1875","118","0","0" +"2193","56","12","1","-4500","-1867","118","0","0" +"2194","56","13","1","-4593","-1792","109","0","0" +"2195","56","14","1","-4633","-1682","55","0","0" +"2196","56","15","1","-4662","-1577","-5","0","0" +"2197","56","16","1","-4647","-1446","-30","0","0" +"2198","56","17","1","-4608","-1315","-28","0","0" +"2199","56","18","1","-4524","-1182","-36","0","0" +"2200","56","19","1","-4512","-1132","-41","0","0" +"2201","56","20","1","-4449","-1109","-33","0","0" +"2202","56","21","1","-4384","-1044","-32","0","0" +"2203","56","22","1","-4365","-966","-32","0","0" +"2259","56","23","1","-4366","-833","-25","0","0" +"2260","56","24","1","-4389","-774","-18","0","0" +"2263","56","25","1","-4440","-761","-18","0","0" +"2264","56","26","1","-4491","-775","-35","0","0" +"2159","57","0","1","-4491","-775","-38","0","0" +"2160","57","1","1","-4492","-778","-37","0","0" +"2161","57","2","1","-4502","-806","-31","0","0" +"2162","57","3","1","-4552","-849","-31","0","0" +"2163","57","4","1","-4677","-931","-33","0","0" +"2164","57","5","1","-4733","-1000","-32","0","0" +"2165","57","6","1","-4740","-1128","-23","0","0" +"2166","57","7","1","-4766","-1199","-34","0","0" +"2167","57","8","1","-4770","-1322","-32","0","0" +"2168","57","9","1","-4866","-1443","-31","0","0" +"2169","57","10","1","-4818","-1595","-21","0","0" +"2170","57","11","1","-4781","-1783","-20","0","0" +"2171","57","12","1","-4602","-1812","105","0","0" +"2172","57","13","1","-4432","-1875","130","0","0" +"2173","57","14","1","-4223","-1909","120","0","0" +"2174","57","15","1","-3952","-2117","132","0","0" +"2175","57","16","1","-3765","-2299","139","0","0" +"2176","57","17","1","-3716","-2458","139","0","0" +"2177","57","18","1","-3694","-2801","124","0","0" +"2178","57","19","1","-3654","-3198","131","0","0" +"2179","57","20","1","-3583","-3472","104","0","0" +"2180","57","21","1","-3512","-3860","62","0","0" +"2254","57","22","1","-3519","-4096","51","0","0" +"2255","57","23","1","-3576","-4240","50","0","0" +"2256","57","24","1","-3793","-4378","61","0","0" +"2257","57","25","1","-3818","-4484","33","0","0" +"2258","57","26","1","-3825","-4516","13","0","0" +"2204","58","0","1","2678","1463","235","0","0" +"2205","58","1","1","2675","1476","236","0","0" +"2206","58","2","1","2670","1501","242","0","0" +"2207","58","3","1","2663","1569","275","0","0" +"2208","58","4","1","2659","1672","328","0","0" +"2209","58","5","1","2703","1743","356","0","0" +"2210","58","6","1","2713","1865","387","0","0" +"2211","58","7","1","2739","2113","275","0","0" +"2212","58","8","1","2812","2248","231","0","0" +"2213","58","9","1","2866","2349","212","0","0" +"2214","58","10","1","2916","2449","156","0","0" +"2215","58","11","1","3099","2463","162","0","0" +"2216","58","12","1","3204","2364","99","0","0" +"2217","58","13","1","3399","2099","91","0","0" +"2218","58","14","1","3521","1758","84","0","0" +"2219","58","15","1","3742","1515","42","0","0" +"2266","58","16","1","4088","1277","15","0","0" +"2267","58","17","1","4592","1137","17","0","0" +"2268","58","18","1","4918","980","11","0","0" +"3608","58","19","1","5394","787","47","0","0" +"3609","58","20","1","6069","572","33","0","0" +"3610","58","21","1","6300","522","26","0","0" +"3611","58","22","1","6341","556","16","0","0" +"2220","59","0","1","6342","558","17","0","0" +"2221","59","1","1","6354","598","27","0","0" +"2222","59","2","1","6315","643","35","0","0" +"2223","59","3","1","6166","638","35","0","0" +"2224","59","4","1","5620","692","11","0","0" +"2225","59","5","1","5072","827","8","0","0" +"2226","59","6","1","4721","911","16","0","0" +"2227","59","7","1","4295","1064","45","0","0" +"2228","59","8","1","4150","1323","30","0","0" +"2229","59","9","1","3881","1562","13","0","0" +"2230","59","10","1","3484","1792","12","0","0" +"2231","59","11","1","3360","2142","52","0","0" +"2232","59","12","1","3204","2342","78","0","0" +"2233","59","13","1","3102","2470","170","0","0" +"2234","59","14","1","2910","2445","161","0","0" +"2235","59","15","1","2868","2338","227","0","0" +"2236","59","16","1","2773","2174","261","0","0" +"2338","59","17","1","2740","1929","368","0","0" +"2339","59","18","1","2729","1865","385","0","0" +"2340","59","19","1","2710","1794","390","0","0" +"2341","59","20","1","2694","1669","383","0","0" +"3576","59","21","1","2659","1606","338","0","0" +"3577","59","22","1","2681","1462","236","0","0" +"3436","82","0","0","-14442","507","28","0","0" +"3437","82","1","0","-14440","513","29","0","0" +"3438","82","2","0","-14419","547","36","0","0" +"3439","82","3","0","-14302","739","74","0","0" +"3440","82","4","0","-14234","779","82","0","0" +"3441","82","5","0","-14134","749","84","0","0" +"3442","82","6","0","-13927","725","66","0","0" +"3443","82","7","0","-13716","725","12","0","0" +"3444","82","8","0","-13581","768","12","0","0" +"3445","82","9","0","-13452","801","12","0","0" +"3446","82","10","0","-13305","797","11","0","0" +"3447","82","11","0","-13246","715","19","0","0" +"3448","82","12","0","-13179","562","5","0","0" +"3449","82","13","0","-13036","543","5","0","0" +"3450","82","14","0","-12925","517","5","0","0" +"3451","82","15","0","-12814","454","5","0","0" +"3452","82","16","0","-12740","357","12","0","0" +"3453","82","17","0","-12641","235","5","0","0" +"3454","82","18","0","-12508","160","5","0","0" +"3455","82","19","0","-12450","118","13","0","0" +"3456","82","20","0","-12426","20","13","0","0" +"3457","82","21","0","-12441","-27","13","0","0" +"3458","82","22","0","-12433","-70","25","0","0" +"3459","82","23","0","-12373","-131","24","0","0" +"3460","82","24","0","-12293","-148","25","0","0" +"3461","82","25","0","-12214","-148","25","0","0" +"3462","82","26","0","-12136","-171","39","0","0" +"3463","82","27","0","-12101","-184","36","0","0" +"3464","82","28","0","-12065","-179","36","0","0" +"3465","82","29","0","-12021","-190","27","0","0" +"3466","82","30","0","-11942","-227","24","0","0" +"3467","82","31","0","-11882","-218","27","0","0" +"3468","82","32","0","-11837","-172","26","0","0" +"3469","82","33","0","-11772","-128","25","0","0" +"3470","82","34","0","-11717","-113","22","0","0" +"3471","82","35","0","-11650","-141","26","0","0" +"3472","82","36","0","-11579","-194","23","0","0" +"3473","82","37","0","-11538","-220","45","0","0" +"3474","82","38","0","-11492","-259","51","0","0" +"3475","82","39","0","-11459","-283","48","0","0" +"3476","82","40","0","-11432","-288","56","0","0" +"3477","82","41","0","-11400","-284","65","0","0" +"3478","82","42","0","-11365","-309","70","0","0" +"3479","82","43","0","-11314","-365","72","0","0" +"3480","82","44","0","-11242","-371","64","0","0" +"3481","82","45","0","-11201","-379","89","0","0" +"3482","82","46","0","-11152","-421","101","0","0" +"3483","82","47","0","-11079","-487","87","0","0" +"3484","82","48","0","-11069","-561","89","0","0" +"3485","82","49","0","-11027","-695","95","0","0" +"3486","82","50","0","-10987","-752","101","0","0" +"3487","82","51","0","-10990","-860","100","0","0" +"3488","82","52","0","-10939","-929","107","0","0" +"3489","82","53","0","-10912","-978","127","0","0" +"3490","82","54","0","-10851","-1090","119","0","0" +"3491","82","55","0","-10691","-1226","112","0","0" +"3492","82","56","0","-10568","-1348","132","0","0" +"3493","82","57","0","-10520","-1465","175","0","0" +"3494","82","58","0","-10478","-1555","152","0","0" +"3495","82","59","0","-10464","-1651","118","0","0" +"3496","82","60","0","-10464","-1710","88","0","0" +"3497","82","61","0","-10451","-1754","96","0","0" +"3498","82","62","0","-10426","-1792","102","0","0" +"3499","82","63","0","-10438","-1842","109","0","0" +"3500","82","64","0","-10419","-1905","130","0","0" +"3501","82","65","0","-10419","-1965","144","0","0" +"3502","82","66","0","-10423","-2000","165","0","0" +"3503","82","67","0","-10435","-2043","170","0","0" +"3504","82","68","0","-10458","-2091","165","0","0" +"3505","82","69","0","-10503","-2120","138","0","0" +"3506","82","70","0","-10548","-2108","114","0","0" +"3507","82","71","0","-10582","-2115","110","0","0" +"3508","82","72","0","-10594","-2149","101","0","0" +"3509","82","73","0","-10587","-2186","101","0","0" +"3510","82","74","0","-10576","-2227","102","0","0" +"3511","82","75","0","-10565","-2266","102","0","0" +"3512","82","76","0","-10555","-2306","96","0","0" +"3513","82","77","0","-10546","-2356","96","0","0" +"3514","82","78","0","-10538","-2399","108","0","0" +"3515","82","79","0","-10529","-2480","82","0","0" +"3516","82","80","0","-10434","-2787","85","0","0" +"3696","82","81","0","-10308","-3017","85","0","0" +"3697","82","82","0","-10167","-3261","87","0","0" +"3698","82","83","0","-10281","-3420","81","0","0" +"3699","82","84","0","-10403","-3413","75","0","0" +"3700","82","85","0","-10420","-3328","49","0","0" +"3701","82","86","0","-10434","-3291","30","0","0" +"3702","82","87","0","-10456","-3280","24","0","0" +"3582","101","0","1","6342","559","17","0","0" +"3583","101","1","1","6347","566","18","0","0" +"3584","101","2","1","6364","606","29","0","0" +"3585","101","3","1","6389","706","60","0","0" +"3586","101","4","1","6566","659","59","0","0" +"3587","101","5","1","6690","542","57","0","0" +"3588","101","6","1","6937","541","72","0","0" +"3589","101","7","1","7122","661","74","0","0" +"3590","101","8","1","7366","716","82","0","0" +"3591","101","9","1","7744","746","87","0","0" +"3592","101","10","1","8059","768","96","0","0" +"3593","101","11","1","8271","824","84","0","0" +"3594","101","12","1","8495","832","58","0","0" +"9073","101","13","1","8595","839","31","0","0" +"9074","101","14","1","8643","840","27","0","0" +"3595","102","0","1","8643","841","25","0","0" +"3596","102","1","1","8635","839","27","0","0" +"3597","102","2","1","8601","833","39","0","0" +"3598","102","3","1","8531","827","63","0","0" +"3599","102","4","1","8359","834","95","0","0" +"3600","102","5","1","7986","864","99","0","0" +"3601","102","6","1","7680","861","108","0","0" +"3602","102","7","1","7301","784","111","0","0" +"3603","102","8","1","7005","719","91","0","0" +"3604","102","9","1","6659","805","84","0","0" +"3605","102","10","1","6518","553","56","0","0" +"3606","102","11","1","6422","484","36","0","0" +"3607","102","12","1","6354","516","26","0","0" +"9447","102","13","1","6340","557","17","0","0" +"3617","121","0","0","-10458","-3279","22","0","0" +"3618","121","1","0","-10456","-3277","22","0","0" +"3619","121","2","0","-10450","-3269","25","0","0" +"3620","121","3","0","-10446","-3257","28","0","0" +"3621","121","4","0","-10461","-3225","36","0","0" +"3622","121","5","0","-10452","-3148","28","0","0" +"3623","121","6","0","-10480","-3108","28","0","0" +"3624","121","7","0","-10486","-3059","28","0","0" +"3625","121","8","0","-10520","-3025","29","0","0" +"3626","121","9","0","-10513","-2967","29","0","0" +"3627","121","10","0","-10520","-2912","29","0","0" +"3628","121","11","0","-10491","-2852","29","0","0" +"3629","121","12","0","-10460","-2774","25","0","0" +"3630","121","13","0","-10399","-2705","29","0","0" +"3631","121","14","0","-10381","-2600","32","0","0" +"3632","121","15","0","-10457","-2582","33","0","0" +"3633","121","16","0","-10511","-2515","54","0","0" +"3634","121","17","0","-10576","-2476","105","0","0" +"3635","121","18","0","-10583","-2413","114","0","0" +"3636","121","19","0","-10564","-2350","100","0","0" +"3637","121","20","0","-10556","-2297","100","0","0" +"3638","121","21","0","-10579","-2229","104","0","0" +"3639","121","22","0","-10595","-2134","110","0","0" +"3640","121","23","0","-10530","-2083","102","0","0" +"3641","121","24","0","-10501","-2041","133","0","0" +"3642","121","25","0","-10542","-1982","159","0","0" +"3643","121","26","0","-10525","-1936","140","0","0" +"3644","121","27","0","-10443","-1905","87","0","0" +"3645","121","28","0","-10419","-1835","131","0","0" +"3646","121","29","0","-10464","-1715","88","0","0" +"3647","121","30","0","-10463","-1632","87","0","0" +"3648","121","31","0","-10429","-1530","133","0","0" +"3649","121","32","0","-10477","-1396","146","0","0" +"3650","121","33","0","-10566","-1341","131","0","0" +"3651","121","34","0","-10689","-1185","95","0","0" +"3652","121","35","0","-10754","-978","141","0","0" +"3653","121","36","0","-10733","-795","127","0","0" +"3654","121","37","0","-10836","-493","119","0","0" +"3655","121","38","0","-10935","-393","113","0","0" +"3656","121","39","0","-11070","-380","112","0","0" +"3657","121","40","0","-11121","-431","75","0","0" +"3658","121","41","0","-11167","-386","54","0","0" +"3659","121","42","0","-11215","-381","54","0","0" +"3660","121","43","0","-11254","-368","62","0","0" +"3661","121","44","0","-11309","-369","72","0","0" +"3662","121","45","0","-11379","-297","70","0","0" +"3663","121","46","0","-11426","-289","58","0","0" +"3664","121","47","0","-11474","-283","45","0","0" +"3665","121","48","0","-11534","-326","43","0","0" +"3666","121","49","0","-11575","-326","46","0","0" +"3667","121","50","0","-11625","-370","27","0","0" +"3668","121","51","0","-11714","-388","28","0","0" +"3669","121","52","0","-11758","-374","25","0","0" +"3670","121","53","0","-11804","-333","19","0","0" +"3671","121","54","0","-11821","-289","20","0","0" +"3672","121","55","0","-11837","-217","24","0","0" +"3673","121","56","0","-11905","-165","22","0","0" +"3674","121","57","0","-11974","-65","20","0","0" +"3675","121","58","0","-11984","11","24","0","0" +"3676","121","59","0","-12000","85","20","0","0" +"3677","121","60","0","-12042","136","26","0","0" +"3678","121","61","0","-12130","146","25","0","0" +"3679","121","62","0","-12180","133","23","0","0" +"3680","121","63","0","-12214","148","24","0","0" +"3681","121","64","0","-12303","160","20","0","0" +"3682","121","65","0","-12425","180","14","0","0" +"3683","121","66","0","-12552","222","14","0","0" +"3684","121","67","0","-12726","342","14","0","0" +"3685","121","68","0","-12835","450","14","0","0" +"3686","121","69","0","-12937","536","14","0","0" +"3687","121","70","0","-13116","544","14","0","0" +"3688","121","71","0","-13177","742","14","0","0" +"3689","121","72","0","-13299","797","14","0","0" +"3690","121","73","0","-13522","776","14","0","0" +"3691","121","74","0","-13800","682","14","0","0" +"3692","121","75","0","-13943","697","14","0","0" +"3693","121","76","0","-14126","655","14","0","0" +"3694","121","77","0","-14249","659","33","0","0" +"3695","121","78","0","-14362","593","35","0","0" +"9471","121","79","0","-14422","536","28","0","0" +"9472","121","80","0","-14447","511","29","0","0" +"3788","141","0","1","139","1325","194","0","0" +"3789","141","1","1","137","1327","195","0","0" +"3790","141","2","1","130","1332","198","0","0" +"3791","141","3","1","108","1351","205","0","0" +"3792","141","4","1","56","1375","197","0","0" +"3793","141","5","1","-23","1369","174","0","0" +"3794","141","6","1","-144","1337","153","0","0" +"3795","141","7","1","-376","1344","145","0","0" +"3796","141","8","1","-515","1402","98","0","0" +"3797","141","9","1","-712","1374","101","0","0" +"3798","141","10","1","-851","1310","115","0","0" +"3799","141","11","1","-1060","1311","102","0","0" +"3800","141","12","1","-1219","1311","107","0","0" +"3801","141","13","1","-1310","1248","113","0","0" +"3802","141","14","1","-1402","1083","106","0","0" +"3803","141","15","1","-1586","942","98","0","0" +"3804","141","16","1","-1766","931","124","0","0" +"3805","141","17","1","-1926","904","144","0","0" +"3806","141","18","1","-2001","870","181","0","0" +"3807","141","19","1","-2082","837","198","0","0" +"3808","141","20","1","-2157","780","195","0","0" +"3809","141","21","1","-2197","720","159","0","0" +"3810","141","22","1","-2207","657","141","0","0" +"3811","141","23","1","-2189","617","146","0","0" +"3812","141","24","1","-2193","583","147","0","0" +"3813","141","25","1","-2219","550","147","0","0" +"3814","141","26","1","-2219","508","153","0","0" +"3815","141","27","1","-2219","427","194","0","0" +"3816","141","28","1","-2228","354","191","0","0" +"3817","141","29","1","-2288","220","99","0","0" +"3818","141","30","1","-2437","138","65","0","0" +"3819","141","31","1","-2568","44","37","0","0" +"3820","141","32","1","-2702","-111","38","0","0" +"3821","141","33","1","-2698","-201","36","0","0" +"3822","141","34","1","-2699","-268","32","0","0" +"3823","141","35","1","-2683","-355","33","0","0" +"3824","141","36","1","-2683","-560","35","0","0" +"3825","141","37","1","-2732","-732","29","0","0" +"3826","141","38","1","-2735","-876","32","0","0" +"3827","141","39","1","-2696","-977","27","0","0" +"3828","141","40","1","-2658","-1147","27","0","0" +"3829","141","41","1","-2571","-1266","31","0","0" +"3830","141","42","1","-2499","-1433","85","0","0" +"3831","141","43","1","-2466","-1590","139","0","0" +"3832","141","44","1","-2540","-1739","151","0","0" +"3833","141","45","1","-2665","-1921","109","0","0" +"3834","141","46","1","-2753","-2041","158","0","0" +"3835","141","47","1","-2911","-2107","113","0","0" +"3836","141","48","1","-3101","-2139","107","0","0" +"3837","141","49","1","-3303","-2230","119","0","0" +"3838","141","50","1","-3447","-2250","107","0","0" +"3839","141","51","1","-3552","-2435","100","0","0" +"3840","141","52","1","-3553","-2581","97","0","0" +"3841","141","53","1","-3578","-2752","81","0","0" +"3842","141","54","1","-3529","-2946","78","0","0" +"3843","141","55","1","-3498","-3126","85","0","0" +"3844","141","56","1","-3377","-3269","83","0","0" +"3845","141","57","1","-3240","-3502","39","0","0" +"3846","141","58","1","-3292","-3713","43","0","0" +"3847","141","59","1","-3441","-3907","26","0","0" +"3848","141","60","1","-3570","-4111","19","0","0" +"3849","141","61","1","-3595","-4234","28","0","0" +"3850","141","62","1","-3663","-4295","14","0","0" +"3851","141","63","1","-3698","-4320","35","0","0" +"3852","141","64","1","-3752","-4372","19","0","0" +"3853","141","65","1","-3800","-4402","19","0","0" +"9412","141","66","1","-3811","-4491","29","0","0" +"9413","141","67","1","-3831","-4521","14","0","0" +"3716","161","0","1","-1767","3263","6","0","0" +"3717","161","1","1","-1771","3265","6","0","0" +"3718","161","2","1","-1823","3271","11","0","0" +"3719","161","3","1","-1906","3151","51","0","0" +"3720","161","4","1","-1918","2926","82","0","0" +"3721","161","5","1","-1847","2637","83","0","0" +"3722","161","6","1","-1895","2380","97","0","0" +"3723","161","7","1","-1809","2086","92","0","0" +"3724","161","8","1","-1868","1797","88","0","0" +"3725","161","9","1","-1794","1564","79","0","0" +"3726","161","10","1","-1565","1425","90","0","0" +"3727","161","11","1","-1520","1274","99","0","0" +"3728","161","12","1","-1552","1153","98","0","0" +"3729","161","13","1","-1615","1060","98","0","0" +"3730","161","14","1","-1689","1001","96","0","0" +"3731","161","15","1","-1745","1003","97","0","0" +"3732","161","16","1","-1860","962","113","0","0" +"3733","161","17","1","-1967","896","163","0","0" +"3734","161","18","1","-2045","845","197","0","0" +"3735","161","19","1","-2150","836","199","0","0" +"3736","161","20","1","-2203","827","186","0","0" +"3737","161","21","1","-2219","804","170","0","0" +"3738","161","22","1","-2204","751","170","0","0" +"3739","161","23","1","-2211","666","166","0","0" +"3740","161","24","1","-2253","587","173","0","0" +"3741","161","25","1","-2211","504","159","0","0" +"3742","161","26","1","-2203","437","174","0","0" +"3743","161","27","1","-2206","372","191","0","0" +"3744","161","28","1","-2207","316","175","0","0" +"3745","161","29","1","-2119","240","106","0","0" +"3746","161","30","1","-2007","197","78","0","0" +"3747","161","31","1","-1792","158","37","0","0" +"3748","161","32","1","-1648","99","23","0","0" +"3749","161","33","1","-1450","168","40","0","0" +"3750","161","34","1","-1303","219","106","0","0" +"6571","161","35","1","-1130","245","138","0","0" +"6572","161","36","1","-1006","110","171","0","0" +"6573","161","37","1","-1084","17","186","0","0" +"6574","161","38","1","-1163","21","185","0","0" +"8895","161","39","1","-1197","29","180","0","0" +"3756","162","0","1","-1197","29","180","0","0" +"3757","162","1","1","-1200","30","180","0","0" +"3758","162","2","1","-1227","42","182","0","0" +"3759","162","3","1","-1276","83","172","0","0" +"3760","162","4","1","-1333","108","146","0","0" +"3761","162","5","1","-1385","105","79","0","0" +"3762","162","6","1","-1526","71","18","0","0" +"3763","162","7","1","-1650","66","3","0","0" +"3764","162","8","1","-1732","102","10","0","0" +"3765","162","9","1","-1885","84","39","0","0" +"3766","162","10","1","-2032","43","37","0","0" +"3767","162","11","1","-2137","65","54","0","0" +"3768","162","12","1","-2265","167","94","0","0" +"3769","162","13","1","-2268","309","162","0","0" +"3770","162","14","1","-2232","389","193","0","0" +"3771","162","15","1","-2210","515","183","0","0" +"3772","162","16","1","-2190","607","170","0","0" +"3773","162","17","1","-2206","666","168","0","0" +"3774","162","18","1","-2197","723","168","0","0" +"3775","162","19","1","-2150","782","166","0","0" +"3776","162","20","1","-2107","830","174","0","0" +"3777","162","21","1","-2029","853","169","0","0" +"3778","162","22","1","-1972","901","161","0","0" +"3779","162","23","1","-1837","1074","111","0","0" +"3780","162","24","1","-1711","1160","108","0","0" +"3781","162","25","1","-1651","1310","109","0","0" +"3782","162","26","1","-1707","1491","90","0","0" +"3783","162","27","1","-1640","1815","76","0","0" +"3784","162","28","1","-1816","2051","85","0","0" +"3785","162","29","1","-1758","2394","138","0","0" +"3786","162","30","1","-1732","2797","171","0","0" +"3787","162","31","1","-1752","3015","127","0","0" +"6577","162","32","1","-1685","3120","83","0","0" +"6578","162","33","1","-1686","3209","43","0","0" +"6579","162","34","1","-1732","3256","21","0","0" +"9513","162","35","1","-1767","3263","6","0","0" +"3854","163","0","1","-3827","-4517","11","0","0" +"3855","163","1","1","-3839","-4527","13","0","0" +"3856","163","2","1","-3858","-4550","17","0","0" +"3857","163","3","1","-3879","-4613","30","0","0" +"3858","163","4","1","-3813","-4674","39","0","0" +"3859","163","5","1","-3718","-4676","35","0","0" +"3860","163","6","1","-3599","-4561","23","0","0" +"3861","163","7","1","-3527","-4439","25","0","0" +"3862","163","8","1","-3403","-4337","13","0","0" +"3863","163","9","1","-3186","-4256","12","0","0" +"3864","163","10","1","-3006","-4240","9","0","0" +"3865","163","11","1","-2819","-4232","11","0","0" +"3866","163","12","1","-2603","-4168","14","0","0" +"3867","163","13","1","-2366","-4092","22","0","0" +"3868","163","14","1","-2193","-3883","24","0","0" +"3869","163","15","1","-2029","-3761","41","0","0" +"3870","163","16","1","-1951","-3604","63","0","0" +"3871","163","17","1","-1922","-3376","79","0","0" +"3872","163","18","1","-1807","-3126","95","0","0" +"3873","163","19","1","-1900","-2835","108","0","0" +"3874","163","20","1","-2108","-2694","107","0","0" +"3875","163","21","1","-2188","-2436","112","0","0" +"3876","163","22","1","-2188","-2157","112","0","0" +"3877","163","23","1","-2161","-1893","106","0","0" +"3878","163","24","1","-2232","-1726","119","0","0" +"3879","163","25","1","-2325","-1546","93","0","0" +"3896","163","26","1","-2327","-1214","16","0","0" +"3897","163","27","1","-2395","-945","4","0","0" +"3898","163","28","1","-2619","-661","16","0","0" +"3899","163","29","1","-2666","-385","21","0","0" +"3900","163","30","1","-2616","-133","25","0","0" +"3901","163","31","1","-2416","20","45","0","0" +"3902","163","32","1","-2278","253","125","0","0" +"3903","163","33","1","-2208","355","189","0","0" +"3904","163","34","1","-2211","512","180","0","0" +"3905","163","35","1","-2187","604","167","0","0" +"3906","163","36","1","-2208","691","171","0","0" +"3907","163","37","1","-2172","771","183","0","0" +"3908","163","38","1","-2120","827","181","0","0" +"3909","163","39","1","-2052","850","176","0","0" +"3910","163","40","1","-1926","920","160","0","0" +"3911","163","41","1","-1769","988","112","0","0" +"3912","163","42","1","-1673","1001","104","0","0" +"3913","163","43","1","-1574","974","98","0","0" +"3914","163","44","1","-1439","987","101","0","0" +"3915","163","45","1","-1345","931","99","0","0" +"3916","163","46","1","-1207","936","118","0","0" +"3917","163","47","1","-957","898","114","0","0" +"3918","163","48","1","-788","965","113","0","0" +"3919","163","49","1","-639","992","114","0","0" +"3920","163","50","1","-470","947","107","0","0" +"3921","163","51","1","-322","977","103","0","0" +"3922","163","52","1","-175","1062","102","0","0" +"3923","163","53","1","-49","1200","143","0","0" +"3924","163","54","1","115","1222","214","0","0" +"3925","163","55","1","157","1294","205","0","0" +"3926","163","56","1","136","1323","194","0","0" +"3936","181","0","1","6341","558","17","0","0" +"3937","181","1","1","6352","609","32","0","0" +"3938","181","2","1","6302","642","40","0","0" +"3939","181","3","1","6150","624","38","0","0" +"3940","181","4","1","5499","566","37","0","0" +"3941","181","5","1","5183","610","33","0","0" +"3942","181","6","1","4822","631","25","0","0" +"3943","181","7","1","4659","709","32","0","0" +"3944","181","8","1","4431","933","32","0","0" +"3945","181","9","1","4218","1100","39","0","0" +"3946","181","10","1","4071","1109","9","0","0" +"3947","181","11","1","3979","1217","18","0","0" +"3948","181","12","1","3773","1239","2","0","0" +"3949","181","13","1","3638","1407","6","0","0" +"3950","181","14","1","3371","1486","11","0","0" +"3951","181","15","1","3291","1722","15","0","0" +"3952","181","16","1","3407","1939","46","0","0" +"3953","181","17","1","3332","2205","77","0","0" +"3954","181","18","1","3221","2388","78","0","0" +"3955","181","19","1","3099","2476","158","0","0" +"3956","181","20","1","3004","2535","143","0","0" +"3957","181","21","1","2923","2541","163","0","0" +"3958","181","22","1","2864","2488","198","0","0" +"3959","181","23","1","2804","2361","259","0","0" +"3960","181","24","1","2739","2183","266","0","0" +"3961","181","25","1","2767","2049","295","0","0" +"3962","181","26","1","2695","1929","361","0","0" +"3965","181","27","1","2725","1785","401","0","0" +"3966","181","28","1","2714","1663","374","0","0" +"3967","181","29","1","2644","1477","365","0","0" +"3968","181","30","1","2471","1459","361","0","0" +"3969","181","31","1","2432","1322","364","0","0" +"3970","181","32","1","2449","1191","386","0","0" +"3971","181","33","1","2367","1109","339","0","0" +"3972","181","34","1","2231","1054","302","0","0" +"3973","181","35","1","2121","1042","276","0","0" +"3974","181","36","1","2028","1091","303","0","0" +"3975","181","37","1","1980","1259","302","0","0" +"3976","181","38","1","1912","1386","195","0","0" +"3977","181","39","1","1714","1319","213","0","0" +"3978","181","40","1","1592","1318","232","0","0" +"3979","181","41","1","1496","1407","188","0","0" +"3980","181","42","1","1301","1395","171","0","0" +"3981","181","43","1","1235","1511","116","0","0" +"3982","181","44","1","1014","1531","64","0","0" +"3983","181","45","1","897","1643","45","0","0" +"3984","181","46","1","732","1624","35","0","0" +"3985","181","47","1","619","1756","47","0","0" +"3986","181","48","1","408","1795","65","0","0" +"3987","181","49","1","252","1847","113","0","0" +"3988","181","50","1","93","1829","151","0","0" +"3989","181","51","1","15","1732","138","0","0" +"3990","181","52","1","-20","1529","118","0","0" +"3991","181","53","1","-186","1463","111","0","0" +"3992","181","54","1","-245","1291","115","0","0" +"3993","181","55","1","-424","1095","117","0","0" +"3994","181","56","1","-647","1156","137","0","0" +"3998","181","57","1","-806","1208","110","0","0" +"3999","181","58","1","-908","1094","115","0","0" +"4000","181","59","1","-1048","1063","146","0","0" +"4001","181","60","1","-1144","969","158","0","0" +"4002","181","61","1","-1328","1058","106","0","0" +"4003","181","62","1","-1446","942","100","0","0" +"4004","181","63","1","-1619","967","110","0","0" +"4005","181","64","1","-1752","885","115","0","0" +"4006","181","65","1","-1881","941","147","0","0" +"4007","181","66","1","-1974","908","153","0","0" +"4008","181","67","1","-2035","845","180","0","0" +"4009","181","68","1","-2147","846","188","0","0" +"4010","181","69","1","-2218","818","196","0","0" +"4011","181","70","1","-2199","736","186","0","0" +"4012","181","71","1","-2211","673","164","0","0" +"4013","181","72","1","-2262","594","172","0","0" +"4014","181","73","1","-2212","532","169","0","0" +"4015","181","74","1","-2197","453","183","0","0" +"4016","181","75","1","-2207","370","193","0","0" +"4017","181","76","1","-2250","308","134","0","0" +"4018","181","77","1","-2323","143","66","0","0" +"4019","181","78","1","-2409","77","43","0","0" +"4020","181","79","1","-2453","-33","30","0","0" +"4021","181","80","1","-2627","-173","26","0","0" +"4022","181","81","1","-2666","-422","21","0","0" +"4023","181","82","1","-2569","-578","23","0","0" +"4024","181","83","1","-2544","-714","15","0","0" +"4025","181","84","1","-2645","-916","25","0","0" +"4026","181","85","1","-2689","-1079","19","0","0" +"4027","181","86","1","-2658","-1255","38","0","0" +"4028","181","87","1","-2452","-1350","21","0","0" +"4029","181","88","1","-2351","-1523","70","0","0" +"4030","181","89","1","-2399","-1693","122","0","0" +"4031","181","90","1","-2233","-1864","99","0","0" +"4032","181","91","1","-2222","-2059","123","0","0" +"4033","181","92","1","-2097","-2221","111","0","0" +"4034","181","93","1","-2102","-2448","130","0","0" +"4035","181","94","1","-1854","-2511","108","0","0" +"4036","181","95","1","-1761","-2661","125","0","0" +"4037","181","96","1","-1864","-2857","141","0","0" +"4038","181","97","1","-1808","-3039","114","0","0" +"4039","181","98","1","-1812","-3180","110","0","0" +"4040","181","99","1","-1951","-3362","73","0","0" +"4041","181","100","1","-2056","-3491","121","0","0" +"4042","181","101","1","-1997","-3683","66","0","0" +"4043","181","102","1","-2101","-3793","33","0","0" +"4044","181","103","1","-2196","-4013","39","0","0" +"4045","181","104","1","-2345","-4158","47","0","0" +"4046","181","105","1","-2544","-4255","49","0","0" +"4047","181","106","1","-2726","-4192","37","0","0" +"4048","181","107","1","-2904","-4255","31","0","0" +"4049","181","108","1","-3153","-4224","30","0","0" +"4050","181","109","1","-3402","-4345","31","0","0" +"4051","181","110","1","-3562","-4499","39","0","0" +"4052","181","111","1","-3680","-4624","38","0","0" +"4053","181","112","1","-3783","-4660","27","0","0" +"4054","181","113","1","-3846","-4613","17","0","0" +"4055","181","114","1","-3855","-4546","15","0","0" +"4056","181","115","1","-3826","-4515","14","0","0" +"4324","182","0","1","-3826","-4517","11","0","0" +"4323","182","1","1","-3840","-4532","13","0","0" +"4322","182","2","1","-3856","-4568","17","0","0" +"4321","182","3","1","-3843","-4613","24","0","0" +"4320","182","4","1","-3782","-4646","41","0","0" +"4319","182","5","1","-3689","-4618","46","0","0" +"4318","182","6","1","-3562","-4491","49","0","0" +"4316","182","7","1","-3399","-4350","39","0","0" +"4315","182","8","1","-3151","-4242","30","0","0" +"4314","182","9","1","-2957","-4224","31","0","0" +"4313","182","10","1","-2713","-4240","43","0","0" +"4312","182","11","1","-2544","-4245","42","0","0" +"4311","182","12","1","-2360","-4146","47","0","0" +"4310","182","13","1","-2216","-4017","39","0","0" +"4309","182","14","1","-2121","-3815","33","0","0" +"4308","182","15","1","-2008","-3729","45","0","0" +"4307","182","16","1","-1952","-3573","74","0","0" +"4306","182","17","1","-1923","-3350","95","0","0" +"4305","182","18","1","-1827","-3171","114","0","0" +"4304","182","19","1","-1836","-3038","125","0","0" +"4303","182","20","1","-1831","-2841","126","0","0" +"4302","182","21","1","-1787","-2670","125","0","0" +"4301","182","22","1","-1887","-2530","124","0","0" +"4300","182","23","1","-2013","-2441","126","0","0" +"4299","182","24","1","-2131","-2232","127","0","0" +"4298","182","25","1","-2160","-2068","123","0","0" +"4297","182","26","1","-2246","-1850","127","0","0" +"4296","182","27","1","-2422","-1661","129","0","0" +"4295","182","28","1","-2393","-1505","91","0","0" +"4294","182","29","1","-2485","-1365","35","0","0" +"4293","182","30","1","-2592","-1236","38","0","0" +"4292","182","31","1","-2624","-1080","23","0","0" +"4291","182","32","1","-2617","-924","25","0","0" +"4290","182","33","1","-2577","-766","28","0","0" +"4289","182","34","1","-2596","-551","23","0","0" +"4288","182","35","1","-2650","-404","21","0","0" +"4287","182","36","1","-2595","-205","26","0","0" +"4286","182","37","1","-2489","-33","30","0","0" +"4285","182","38","1","-2392","67","43","0","0" +"4284","182","39","1","-2332","173","66","0","0" +"4283","182","40","1","-2246","290","150","0","0" +"4282","182","41","1","-2220","386","193","0","0" +"4281","182","42","1","-2207","457","189","0","0" +"4280","182","43","1","-2224","537","169","0","0" +"4279","182","44","1","-2261","592","166","0","0" +"4278","182","45","1","-2222","658","164","0","0" +"4277","182","46","1","-2202","732","186","0","0" +"4276","182","47","1","-2147","811","186","0","0" +"4275","182","48","1","-2082","836","179","0","0" +"4274","182","49","1","-2024","856","165","0","0" +"4273","182","50","1","-1956","905","153","0","0" +"4272","182","51","1","-1855","903","147","0","0" +"4271","182","52","1","-1726","841","124","0","0" +"4270","182","53","1","-1590","900","118","0","0" +"4269","182","54","1","-1470","986","100","0","0" +"4268","182","55","1","-1327","1038","99","0","0" +"4267","182","56","1","-1131","1070","140","0","0" +"4266","182","57","1","-1016","1126","102","0","0" +"4265","182","58","1","-900","1245","139","0","0" +"4264","182","59","1","-759","1377","111","0","0" +"4263","182","60","1","-603","1409","98","0","0" +"4262","182","61","1","-447","1401","106","0","0" +"4261","182","62","1","-305","1480","106","0","0" +"4260","182","63","1","-134","1478","105","0","0" +"4259","182","64","1","-1","1593","113","0","0" +"4258","182","65","1","71","1689","103","0","0" +"4257","182","66","1","132","1765","96","0","0" +"4256","182","67","1","263","1834","96","0","0" +"4255","182","68","1","385","1790","80","0","0" +"4254","182","69","1","632","1708","47","0","0" +"4253","182","70","1","713","1658","35","0","0" +"4252","182","71","1","881","1621","45","0","0" +"4251","182","72","1","1036","1539","79","0","0" +"4250","182","73","1","1185","1515","116","0","0" +"4249","182","74","1","1296","1424","151","0","0" +"4248","182","75","1","1484","1385","194","0","0" +"4247","182","76","1","1579","1307","224","0","0" +"4246","182","77","1","1711","1337","219","0","0" +"4245","182","78","1","1901","1389","184","0","0" +"4244","182","79","1","2028","1436","281","0","0" +"4243","182","80","1","2108","1428","380","0","0" +"4242","182","81","1","2331","1372","366","0","0" +"4241","182","82","1","2473","1389","361","0","0" +"4240","182","83","1","2625","1538","365","0","0" +"4239","182","84","1","2693","1669","378","0","0" +"4238","182","85","1","2711","1795","386","0","0" +"4237","182","86","1","2707","1917","361","0","0" +"4236","182","87","1","2742","2044","287","0","0" +"4235","182","88","1","2769","2174","257","0","0" +"4234","182","89","1","2824","2355","246","0","0" +"4233","182","90","1","2840","2465","198","0","0" +"4232","182","91","1","2929","2518","163","0","0" +"4231","182","92","1","2997","2498","143","0","0" +"4230","182","93","1","3072","2423","120","0","0" +"4229","182","94","1","3209","2339","78","0","0" +"4228","182","95","1","3299","2204","77","0","0" +"4227","182","96","1","3334","1928","46","0","0" +"4226","182","97","1","3315","1699","15","0","0" +"4225","182","98","1","3397","1538","11","0","0" +"4224","182","99","1","3611","1390","6","0","0" +"4223","182","100","1","3788","1270","2","0","0" +"4222","182","101","1","3969","1182","8","0","0" +"4221","182","102","1","4085","1146","9","0","0" +"4220","182","103","1","4225","1147","16","0","0" +"4219","182","104","1","4348","1080","20","0","0" +"4218","182","105","1","4433","936","20","0","0" +"4217","182","106","1","4550","811","24","0","0" +"4216","182","107","1","4663","713","28","0","0" +"4215","182","108","1","4736","671","29","0","0" +"4214","182","109","1","4781","595","25","0","0" +"4213","182","110","1","4888","546","25","0","0" +"4212","182","111","1","4987","481","24","0","0" +"4211","182","112","1","5102","475","26","0","0" +"4210","182","113","1","5284","533","29","0","0" +"4209","182","114","1","5506","532","22","0","0" +"4208","182","115","1","5738","578","10","0","0" +"4336","182","116","1","5991","502","14","0","0" +"4337","182","117","1","6150","501","24","0","0" +"4338","182","118","1","6297","521","26","0","0" +"4339","182","119","1","6341","556","16","0","0" +"4476","201","0","1","-7224","-3733","9","0","0" +"4477","201","1","1","-7224","-3737","10","0","0" +"4478","201","2","1","-7224","-3752","12","0","0" +"4496","201","3","1","-7225","-3842","24","0","0" +"4497","201","4","1","-7178","-3977","25","0","0" +"4498","201","5","1","-7107","-4161","30","0","0" +"4499","201","6","1","-7054","-4372","17","0","0" +"4500","201","7","1","-7010","-4584","18","0","0" +"4501","201","8","1","-6924","-4711","15","0","0" +"4502","201","9","1","-6789","-4792","13","0","0" +"4503","201","10","1","-6732","-4859","2","0","0" +"4504","201","11","1","-6595","-5073","3","0","0" +"4505","201","12","1","-6204","-5053","8","0","0" +"4506","201","13","1","-5371","-5221","6","0","0" +"4507","201","14","1","-4816","-5265","9","0","0" +"4508","201","15","1","-4499","-5129","64","0","0" +"4509","201","16","1","-4299","-4970","58","0","0" +"4510","201","17","1","-4067","-4797","63","0","0" +"4511","201","18","1","-3947","-4658","26","0","0" +"4512","201","19","1","-3873","-4573","20","0","0" +"4513","201","20","1","-3836","-4527","15","0","0" +"4514","201","21","1","-3826","-4515","11","0","0" +"4515","222","0","1","-3826","-4517","11","0","0" +"4516","222","1","1","-3834","-4527","13","0","0" +"4517","222","2","1","-3851","-4541","15","0","0" +"4518","222","3","1","-3892","-4558","16","0","0" +"4519","222","4","1","-3971","-4539","23","0","0" +"4520","222","5","1","-4048","-4575","21","0","0" +"4521","222","6","1","-4123","-4685","11","0","0" +"4522","222","7","1","-4252","-4864","9","0","0" +"4523","222","8","1","-4517","-5029","9","0","0" +"4524","222","9","1","-5068","-5133","8","0","0" +"4525","222","10","1","-5734","-5100","11","0","0" +"4526","222","11","1","-6197","-5167","10","0","0" +"4527","222","12","1","-6566","-5066","10","0","0" +"4528","222","13","1","-6705","-4903","11","0","0" +"4529","222","14","1","-6827","-4820","35","0","0" +"4530","222","15","1","-6962","-4764","19","0","0" +"4531","222","16","1","-7068","-4620","17","0","0" +"4532","222","17","1","-7108","-4424","21","0","0" +"4533","222","18","1","-7247","-4329","17","0","0" +"4534","222","19","1","-7329","-4195","19","0","0" +"4535","222","20","1","-7330","-3958","15","0","0" +"4536","222","21","1","-7287","-3828","16","0","0" +"4537","222","22","1","-7233","-3766","13","0","0" +"9504","222","23","1","-7224","-3734","9","0","0" +"4538","223","0","1","-7049","-3780","11","0","0" +"4539","223","1","1","-7067","-3789","17","0","0" +"4540","223","2","1","-7084","-3814","24","0","0" +"4541","223","3","1","-7099","-3860","30","0","0" +"4542","223","4","1","-7084","-3960","30","0","0" +"4543","223","5","1","-6993","-4082","33","0","0" +"4544","223","6","1","-6930","-4203","60","0","0" +"4545","223","7","1","-6958","-4461","21","0","0" +"4546","223","8","1","-6866","-4695","39","0","0" +"4547","223","9","1","-6713","-4837","10","0","0" +"4548","223","10","1","-6432","-4933","15","0","0" +"4549","223","11","1","-6099","-5001","7","0","0" +"4550","223","12","1","-5501","-5031","11","0","0" +"4551","223","13","1","-4899","-5035","9","0","0" +"4552","223","14","1","-4467","-5234","49","0","0" +"4553","223","15","1","-4132","-5265","62","0","0" +"4554","223","16","1","-3666","-5230","67","0","0" +"4555","223","17","1","-3466","-5097","64","0","0" +"4556","223","18","1","-3229","-4808","4","0","0" +"4557","223","19","1","-2952","-4697","11","0","0" +"4558","223","20","1","-2763","-4715","38","0","0" +"4559","223","21","1","-2631","-4731","12","0","0" +"4560","223","22","1","-2389","-4807","6","0","0" +"4561","223","23","1","-2148","-4922","11","0","0" +"4562","223","24","1","-1866","-5094","18","0","0" +"4563","223","25","1","-1644","-5164","7","0","0" +"4564","223","26","1","-1539","-5246","16","0","0" +"4565","223","27","1","-1435","-5295","9","0","0" +"4566","223","28","1","-1338","-5295","5","0","0" +"4567","223","29","1","-1234","-5241","6","0","0" +"4568","223","30","1","-1115","-5203","7","0","0" +"4569","223","31","1","-951","-5234","10","0","0" +"4570","223","32","1","-803","-5262","10","0","0" +"4571","223","33","1","-612","-5248","17","0","0" +"4572","223","34","1","-490","-5237","36","0","0" +"4573","223","35","1","-383","-5198","56","0","0" +"4574","223","36","1","-321","-5085","49","0","0" +"4575","223","37","1","-189","-5034","30","0","0" +"4576","223","38","1","-80","-4920","25","0","0" +"4577","223","39","1","55","-4843","26","0","0" +"4578","223","40","1","179","-4795","26","0","0" +"4579","223","41","1","242","-4751","29","0","0" +"4580","223","42","1","331","-4733","17","0","0" +"4581","223","43","1","400","-4728","14","0","0" +"4582","223","44","1","470","-4733","10","0","0" +"4583","223","45","1","516","-4728","5","0","0" +"4584","223","46","1","558","-4736","1","0","0" +"4585","223","47","1","640","-4725","-2","0","0" +"4586","223","48","1","721","-4662","1","0","0" +"4587","223","49","1","815","-4538","11","0","0" +"4588","223","50","1","932","-4499","15","0","0" +"4589","223","51","1","1045","-4433","23","0","0" +"4590","223","52","1","1178","-4411","30","0","0" +"4591","223","53","1","1285","-4392","31","0","0" +"4592","223","54","1","1381","-4370","31","0","0" +"4593","223","55","1","1416","-4364","31","0","0" +"4594","223","56","1","1431","-4373","31","0","0" +"4595","223","57","1","1435","-4416","33","0","0" +"4596","223","58","1","1453","-4421","33","0","0" +"4597","223","59","1","1491","-4417","32","0","0" +"4598","223","60","1","1535","-4423","34","0","0" +"4599","223","61","1","1604","-4421","41","0","0" +"4600","223","62","1","1675","-4386","62","0","0" +"4601","223","63","1","1698","-4342","64","0","0" +"4602","223","64","1","1692","-4318","64","0","0" +"4603","223","65","1","1678","-4314","62","0","0" +"4604","224","0","1","1679","-4314","62","0","0" +"4605","224","1","1","1676","-4314","62","0","0" +"4606","224","2","1","1667","-4312","64","0","0" +"4607","224","3","1","1644","-4312","66","0","0" +"4608","224","4","1","1600","-4340","48","0","0" +"4609","224","5","1","1549","-4387","33","0","0" +"4610","224","6","1","1511","-4410","32","0","0" +"4611","224","7","1","1475","-4417","32","0","0" +"4612","224","8","1","1445","-4420","33","0","0" +"4613","224","9","1","1434","-4408","33","0","0" +"4614","224","10","1","1430","-4371","33","0","0" +"4615","224","11","1","1416","-4364","33","0","0" +"4616","224","12","1","1385","-4368","33","0","0" +"4617","224","13","1","1310","-4388","37","0","0" +"4618","224","14","1","1265","-4459","41","0","0" +"4619","224","15","1","1233","-4599","36","0","0" +"4620","224","16","1","1228","-4691","28","0","0" +"4621","224","17","1","1177","-4788","28","0","0" +"4622","224","18","1","1129","-4848","36","0","0" +"4623","224","19","1","1040","-4920","32","0","0" +"4624","224","20","1","912","-4968","26","0","0" +"4625","224","21","1","757","-4957","24","0","0" +"4626","224","22","1","632","-4866","35","0","0" +"4627","224","23","1","535","-4853","56","0","0" +"4628","224","24","1","343","-4900","26","0","0" +"4629","224","25","1","148","-4864","46","0","0" +"4630","224","26","1","-3","-4764","31","0","0" +"4631","224","27","1","-194","-4780","32","0","0" +"4632","224","28","1","-332","-4826","45","0","0" +"4633","224","29","1","-487","-4813","45","0","0" +"4634","224","30","1","-604","-4712","52","0","0" +"4635","224","31","1","-627","-4589","83","0","0" +"4636","224","32","1","-589","-4489","80","0","0" +"4637","224","33","1","-638","-4372","56","0","0" +"4638","224","34","1","-703","-4306","52","0","0" +"4639","224","35","1","-755","-4186","46","0","0" +"4640","224","36","1","-803","-4124","74","0","0" +"4641","224","37","1","-865","-3991","69","0","0" +"4642","224","38","1","-945","-3838","74","0","0" +"4643","224","39","1","-1036","-3716","99","0","0" +"4644","224","40","1","-1130","-3663","114","0","0" +"4645","224","41","1","-1248","-3646","102","0","0" +"4646","224","42","1","-1402","-3712","107","0","0" +"4647","224","43","1","-1606","-3649","106","0","0" +"4648","224","44","1","-1714","-3544","122","0","0" +"4649","224","45","1","-1784","-3350","108","0","0" +"4650","224","46","1","-1815","-3191","99","0","0" +"4651","224","47","1","-1832","-3003","98","0","0" +"4652","224","48","1","-1902","-2815","102","0","0" +"4653","224","49","1","-2114","-2653","105","0","0" +"4654","224","50","1","-2231","-2465","107","0","0" +"4655","224","51","1","-2453","-2335","101","0","0" +"4656","224","52","1","-2627","-2282","101","0","0" +"4657","224","53","1","-2904","-2132","103","0","0" +"4658","224","54","1","-3113","-2051","101","0","0" +"4659","224","55","1","-3371","-2014","107","0","0" +"4660","224","56","1","-3600","-2019","106","0","0" +"4661","224","57","1","-3832","-2066","106","0","0" +"4662","224","58","1","-4067","-2013","103","0","0" +"4663","224","59","1","-4201","-1925","112","0","0" +"4664","224","60","1","-4432","-1866","103","0","0" +"4665","224","61","1","-4621","-1875","94","0","0" +"4666","224","62","1","-4721","-1924","22","0","0" +"4667","224","63","1","-4839","-2038","8","0","0" +"4668","224","64","1","-4911","-2023","3","0","0" +"4669","224","65","1","-5066","-2055","-31","0","0" +"4670","224","66","1","-5134","-2037","-32","0","0" +"4671","224","67","1","-5223","-2101","-16","0","0" +"4672","224","68","1","-5297","-2194","-7","0","0" +"4673","224","69","1","-5367","-2321","11","0","0" +"4674","224","70","1","-5437","-2337","57","0","0" +"4675","224","71","1","-5536","-2390","59","0","0" +"4676","224","72","1","-5561","-2489","2","0","0" +"4677","224","73","1","-5512","-2633","-16","0","0" +"4678","224","74","1","-5540","-2730","-22","0","0" +"4679","224","75","1","-5561","-2842","-31","0","0" +"4680","224","76","1","-5618","-2933","-20","0","0" +"4681","224","77","1","-5610","-3066","-31","0","0" +"4682","224","78","1","-5582","-3177","-24","0","0" +"4683","224","79","1","-5607","-3265","-30","0","0" +"4684","224","80","1","-5599","-3339","-20","0","0" +"4685","224","81","1","-5638","-3465","-37","0","0" +"4686","224","82","1","-5830","-3681","-44","0","0" +"4687","224","83","1","-6003","-3800","-43","0","0" +"4688","224","84","1","-6214","-3875","-39","0","0" +"4689","224","85","1","-6392","-3885","-50","0","0" +"4690","224","86","1","-6602","-3798","-22","0","0" +"4691","224","87","1","-6807","-3787","65","0","0" +"4692","224","88","1","-6877","-3779","82","0","0" +"4693","224","89","1","-6955","-3724","59","0","0" +"9426","224","90","1","-6998","-3758","41","0","0" +"9428","224","91","1","-7048","-3780","11","0","0" +"4694","225","0","1","-4373","3338","13","0","0" +"4695","225","1","1","-4395","3329","18","0","0" +"4696","225","2","1","-4433","3292","25","0","0" +"4697","225","3","1","-4434","3205","30","0","0" +"4698","225","4","1","-4433","3061","25","0","0" +"4699","225","5","1","-4415","2810","72","0","0" +"4700","225","6","1","-4357","2528","91","0","0" +"4701","225","7","1","-4150","2212","97","0","0" +"4702","225","8","1","-4049","2110","120","0","0" +"4703","225","9","1","-3981","2090","141","0","0" +"4704","225","10","1","-3897","2073","128","0","0" +"4705","225","11","1","-3837","2016","104","0","0" +"4706","225","12","1","-3721","1982","87","0","0" +"4707","225","13","1","-3603","1959","86","0","0" +"4708","225","14","1","-3428","1916","63","0","0" +"4709","225","15","1","-3299","1928","89","0","0" +"4710","225","16","1","-3233","1886","78","0","0" +"4711","225","17","1","-3097","1953","70","0","0" +"4712","225","18","1","-2913","2092","65","0","0" +"4713","225","19","1","-2781","2161","62","0","0" +"4714","225","20","1","-2613","2191","104","0","0" +"4715","225","21","1","-2495","2304","132","0","0" +"4716","225","22","1","-2384","2360","126","0","0" +"4717","225","23","1","-2287","2384","94","0","0" +"4718","225","24","1","-2197","2433","69","0","0" +"4719","225","25","1","-2041","2471","73","0","0" +"4720","225","26","1","-1853","2461","78","0","0" +"4721","225","27","1","-1720","2439","109","0","0" +"4722","225","28","1","-1534","2406","111","0","0" +"4723","225","29","1","-1394","2418","108","0","0" +"4724","225","30","1","-1283","2387","112","0","0" +"4725","225","31","1","-1123","2380","109","0","0" +"4726","225","32","1","-928","2358","105","0","0" +"4727","225","33","1","-723","2280","96","0","0" +"4728","225","34","1","-584","2159","105","0","0" +"4729","225","35","1","-448","2004","119","0","0" +"4730","225","36","1","-352","1907","148","0","0" +"4731","225","37","1","-266","1821","174","0","0" +"4732","225","38","1","-149","1755","145","0","0" +"4733","225","39","1","2","1734","127","0","0" +"4734","225","40","1","196","1827","109","0","0" +"4735","225","41","1","352","1806","82","0","0" +"4736","225","42","1","503","1742","53","0","0" +"4737","225","43","1","676","1637","43","0","0" +"4738","225","44","1","847","1581","50","0","0" +"4739","225","45","1","1042","1542","66","0","0" +"4740","225","46","1","1161","1520","91","0","0" +"4741","225","47","1","1286","1442","126","0","0" +"4742","225","48","1","1438","1403","168","0","0" +"4743","225","49","1","1581","1302","222","0","0" +"4744","225","50","1","1717","1327","213","0","0" +"4745","225","51","1","1806","1376","197","0","0" +"4746","225","52","1","1906","1429","257","0","0" +"4747","225","53","1","2043","1415","359","0","0" +"4748","225","54","1","2279","1371","385","0","0" +"4749","225","55","1","2471","1423","376","0","0" +"4750","225","56","1","2660","1571","375","0","0" +"4751","225","57","1","2718","1663","374","0","0" +"4752","225","58","1","2707","1791","383","0","0" +"4753","225","59","1","2741","1905","374","0","0" +"4754","225","60","1","2752","2094","272","0","0" +"4755","225","61","1","2800","2241","233","0","0" +"4756","225","62","1","2877","2357","222","0","0" +"4757","225","63","1","2917","2448","166","0","0" +"4758","225","64","1","3011","2472","144","0","0" +"4759","225","65","1","3095","2404","125","0","0" +"4760","225","66","1","3167","2334","95","0","0" +"4761","225","67","1","3274","2231","22","0","0" +"4762","225","68","1","3433","2092","8","0","0" +"4763","225","69","1","3683","1746","11","0","0" +"4764","225","70","1","3992","1524","19","0","0" +"4765","225","71","1","4377","1186","18","0","0" +"4766","225","72","1","4682","982","11","0","0" +"4767","225","73","1","5173","778","14","0","0" +"4768","225","74","1","5542","714","16","0","0" +"4769","225","75","1","5868","693","10","0","0" +"4770","225","76","1","6059","607","15","0","0" +"4771","225","77","1","6202","547","25","0","0" +"4772","225","78","1","6313","519","23","0","0" +"4773","225","79","1","6342","560","17","0","0" +"4786","226","0","1","6342","558","17","0","0" +"4787","226","1","1","6352","615","29","0","0" +"4788","226","2","1","6291","657","36","0","0" +"4789","226","3","1","6001","667","30","0","0" +"4790","226","4","1","5137","773","28","0","0" +"4791","226","5","1","4506","1106","11","0","0" +"4792","226","6","1","4285","1333","8","0","0" +"4793","226","7","1","4047","1457","7","0","0" +"4794","226","8","1","3694","1566","8","0","0" +"4795","226","9","1","3496","1753","19","0","0" +"4796","226","10","1","3376","1933","26","0","0" +"4797","226","11","1","3264","2230","55","0","0" +"4798","226","12","1","3074","2432","130","0","0" +"4799","226","13","1","2909","2463","197","0","0" +"4800","226","14","1","2827","2354","247","0","0" +"4801","226","15","1","2749","2172","277","0","0" +"4802","226","16","1","2735","1995","339","0","0" +"4803","226","17","1","2715","1828","392","0","0" +"4804","226","18","1","2665","1661","392","0","0" +"4805","226","19","1","2421","1423","396","0","0" +"4806","226","20","1","2094","1401","381","0","0" +"4807","226","21","1","1875","1388","251","0","0" +"4808","226","22","1","1586","1300","226","0","0" +"4809","226","23","1","1477","1383","183","0","0" +"4810","226","24","1","1263","1431","115","0","0" +"4811","226","25","1","1176","1530","107","0","0" +"4812","226","26","1","843","1587","76","0","0" +"4813","226","27","1","592","1718","62","0","0" +"4814","226","28","1","393","1789","77","0","0" +"4815","226","29","1","245","1828","109","0","0" +"4816","226","30","1","22","1708","116","0","0" +"4817","226","31","1","-170","1673","130","0","0" +"4818","226","32","1","-355","1673","154","0","0" +"4819","226","33","1","-541","1701","124","0","0" +"4820","226","34","1","-710","1684","101","0","0" +"4821","226","35","1","-817","1705","98","0","0" +"4822","226","36","1","-1037","1694","79","0","0" +"4823","226","37","1","-1231","1836","78","0","0" +"4824","226","38","1","-1459","1812","83","0","0" +"4825","226","39","1","-1744","1851","76","0","0" +"4826","226","40","1","-1922","2005","75","0","0" +"4827","226","41","1","-2101","2160","92","0","0" +"4828","226","42","1","-2125","2297","86","0","0" +"4829","226","43","1","-2212","2381","81","0","0" +"4830","226","44","1","-2389","2362","128","0","0" +"4831","226","45","1","-2514","2298","140","0","0" +"4832","226","46","1","-2672","2297","94","0","0" +"4833","226","47","1","-2882","2299","67","0","0" +"4834","226","48","1","-3064","2252","67","0","0" +"4835","226","49","1","-3300","2199","47","0","0" +"4836","226","50","1","-3425","2148","52","0","0" +"4837","226","51","1","-3621","2154","86","0","0" +"4838","226","52","1","-3756","2136","115","0","0" +"4839","226","53","1","-3852","2109","123","0","0" +"4840","226","54","1","-3896","2082","125","0","0" +"4841","226","55","1","-3949","2082","123","0","0" +"4842","226","56","1","-3982","2089","141","0","0" +"4843","226","57","1","-4057","2118","119","0","0" +"4844","226","58","1","-4123","2179","76","0","0" +"4845","226","59","1","-4177","2321","15","0","0" +"4846","226","60","1","-4181","2499","14","0","0" +"4847","226","61","1","-4128","2713","12","0","0" +"4848","226","62","1","-4076","2909","30","0","0" +"4849","226","63","1","-4070","3136","60","0","0" +"4850","226","64","1","-4112","3307","80","0","0" +"4851","226","65","1","-4217","3375","68","0","0" +"4852","226","66","1","-4341","3358","29","0","0" +"4853","226","67","1","-4375","3337","13","0","0" +"4885","227","0","1","-4419","199","26","0","0" +"4886","227","1","1","-4422","197","26","0","0" +"4887","227","2","1","-4426","195","27","0","0" +"4888","227","3","1","-4453","168","33","0","0" +"4889","227","4","1","-4406","83","45","0","0" +"4890","227","5","1","-4386","4","81","0","0" +"4891","227","6","1","-4264","-123","70","0","0" +"4892","227","7","1","-4250","-249","65","0","0" +"4893","227","8","1","-4302","-353","58","0","0" +"4894","227","9","1","-4295","-441","41","0","0" +"4895","227","10","1","-4348","-565","16","0","0" +"4896","227","11","1","-4269","-684","-5","0","0" +"4897","227","12","1","-4325","-822","-38","0","0" +"4898","227","13","1","-4432","-944","-32","0","0" +"4899","227","14","1","-4540","-1020","-41","0","0" +"4900","227","15","1","-4598","-1076","-21","0","0" +"4901","227","16","1","-4627","-1159","-23","0","0" +"4902","227","17","1","-4608","-1282","-16","0","0" +"4903","227","18","1","-4633","-1399","-17","0","0" +"4904","227","19","1","-4767","-1511","-15","0","0" +"4905","227","20","1","-4808","-1638","-27","0","0" +"4906","227","21","1","-4801","-1751","-33","0","0" +"4907","227","22","1","-4745","-1799","11","0","0" +"4908","227","23","1","-4618","-1818","97","0","0" +"4909","227","24","1","-4429","-1888","108","0","0" +"4910","227","25","1","-4123","-1898","106","0","0" +"4911","227","26","1","-3864","-1781","104","0","0" +"4912","227","27","1","-3652","-1807","136","0","0" +"4913","227","28","1","-3430","-1932","117","0","0" +"4914","227","29","1","-3140","-2028","109","0","0" +"4915","227","30","1","-2905","-2028","110","0","0" +"4916","227","31","1","-2707","-1952","110","0","0" +"4917","227","32","1","-2532","-1831","102","0","0" +"4918","227","33","1","-2381","-1643","98","0","0" +"4919","227","34","1","-2334","-1396","40","0","0" +"4920","227","35","1","-2228","-1128","44","0","0" +"4921","227","36","1","-1935","-932","50","0","0" +"4922","227","37","1","-1707","-766","49","0","0" +"4923","227","38","1","-1333","-723","40","0","0" +"4924","227","39","1","-986","-572","62","0","0" +"4925","227","40","1","-854","-345","116","0","0" +"4926","227","41","1","-932","-134","157","0","0" +"4927","227","42","1","-1040","-21","181","0","0" +"4928","227","43","1","-1119","13","185","0","0" +"9155","227","44","1","-1167","24","183","0","0" +"9156","227","45","1","-1197","30","178","0","0" +"4929","228","0","1","-1197","30","178","0","0" +"4930","228","1","1","-1200","30","179","0","0" +"4931","228","2","1","-1226","41","182","0","0" +"4932","228","3","1","-1269","87","168","0","0" +"4933","228","4","1","-1326","121","146","0","0" +"4934","228","5","1","-1429","200","81","0","0" +"4935","228","6","1","-1577","159","34","0","0" +"4936","228","7","1","-1707","-34","10","0","0" +"4937","228","8","1","-1817","-438","6","0","0" +"4938","228","9","1","-2117","-689","0","0","0" +"4939","228","10","1","-2336","-939","0","0","0" +"4940","228","11","1","-2412","-1152","23","0","0" +"4941","228","12","1","-2365","-1435","63","0","0" +"4942","228","13","1","-2368","-1670","102","0","0" +"4943","228","14","1","-2472","-1880","108","0","0" +"4944","228","15","1","-2756","-2050","154","0","0" +"4945","228","16","1","-3158","-2046","109","0","0" +"4946","228","17","1","-3566","-1950","105","0","0" +"4947","228","18","1","-3797","-1960","103","0","0" +"4948","228","19","1","-3936","-2025","116","0","0" +"4949","228","20","1","-4248","-1906","109","0","0" +"4950","228","21","1","-4465","-1871","98","0","0" +"4951","228","22","1","-4588","-1789","95","0","0" +"4952","228","23","1","-4633","-1686","23","0","0" +"4953","228","24","1","-4669","-1521","-13","0","0" +"4954","228","25","1","-4752","-1410","-30","0","0" +"4955","228","26","1","-4777","-1267","-30","0","0" +"4956","228","27","1","-4755","-1162","-28","0","0" +"4957","228","28","1","-4684","-1100","-36","0","0" +"4958","228","29","1","-4590","-1066","-38","0","0" +"4959","228","30","1","-4529","-994","-42","0","0" +"4960","228","31","1","-4447","-961","-46","0","0" +"4961","228","32","1","-4390","-859","-39","0","0" +"4962","228","33","1","-4292","-794","-37","0","0" +"4963","228","34","1","-4273","-692","-7","0","0" +"4964","228","35","1","-4352","-581","11","0","0" +"4965","228","36","1","-4299","-438","45","0","0" +"4966","228","37","1","-4299","-338","59","0","0" +"4967","228","38","1","-4251","-269","65","0","0" +"4968","228","39","1","-4255","-135","69","0","0" +"4969","228","40","1","-4281","-49","71","0","0" +"4970","228","41","1","-4260","45","76","0","0" +"4971","228","42","1","-4280","139","75","0","0" +"4972","228","43","1","-4389","165","38","0","0" +"9512","228","44","1","-4420","198","26","0","0" +"4973","229","0","0","285","-2005","195","0","0" +"4974","229","1","0","283","-2009","195","0","0" +"4975","229","2","0","257","-2036","201","0","0" +"4976","229","3","0","182","-2075","201","0","0" +"4977","229","4","0","45","-1956","197","0","0" +"4978","229","5","0","-134","-1766","177","0","0" +"4979","229","6","0","-230","-1702","159","0","0" +"4980","229","7","0","-309","-1563","139","0","0" +"4981","229","8","0","-293","-1394","95","0","0" +"4982","229","9","0","-352","-1130","76","0","0" +"4983","229","10","0","-512","-906","79","0","0" +"4984","229","11","0","-595","-607","49","0","0" +"4985","229","12","0","-694","-554","40","0","0" +"9046","229","13","0","-713","-516","27","0","0" +"4986","230","0","0","-714","-515","26","0","0" +"4987","230","1","0","-714","-518","27","0","0" +"4988","230","2","0","-716","-533","29","0","0" +"4989","230","3","0","-728","-593","34","0","0" +"4990","230","4","0","-741","-679","19","0","0" +"4991","230","5","0","-692","-787","46","0","0" +"4992","230","6","0","-696","-893","46","0","0" +"4993","230","7","0","-598","-948","60","0","0" +"4994","230","8","0","-564","-1059","70","0","0" +"4995","230","9","0","-593","-1199","70","0","0" +"4996","230","10","0","-549","-1339","100","0","0" +"4997","230","11","0","-439","-1420","115","0","0" +"4998","230","12","0","-463","-1527","102","0","0" +"4999","230","13","0","-404","-1585","92","0","0" +"5000","230","14","0","-286","-1634","129","0","0" +"5001","230","15","0","-220","-1723","154","0","0" +"5002","230","16","0","-137","-1759","183","0","0" +"5003","230","17","0","-2","-1911","207","0","0" +"5004","230","18","0","73","-1980","211","0","0" +"5005","230","19","0","149","-1951","206","0","0" +"9461","230","20","0","237","-2016","206","0","0" +"9462","230","21","0","283","-2002","195","0","0" +"5036","241","0","1","-2031","-4966","0","0","0" +"5037","241","1","1","-1969","-4932","0","0","0" +"5038","241","2","1","-1734","-4794","0","0","0" +"5039","241","3","1","-1558","-4641","0","0","0" +"5040","241","4","1","-1441","-4431","0","0","0" +"5041","241","5","1","-1370","-4266","0","0","0" +"5042","241","6","1","-1264","-4139","0","0","0" +"5043","241","7","1","-1212","-4019","0","0","0" +"5044","241","8","1","-1154","-3887","0","0","0" +"5045","241","9","1","-1105","-3824","0","0","0" +"5046","241","10","1","-1058","-3818","0","0","0" +"5047","241","11","1","-1005","-3841","0","2","60" +"5048","241","12","1","-956","-3877","0","0","0" +"5049","241","13","1","-935","-3917","0","0","0" +"5050","241","14","1","-950","-3981","0","0","0" +"5051","241","15","1","-1026","-4049","0","0","0" +"5052","241","16","1","-1091","-4124","0","0","0" +"5053","241","17","1","-1160","-4320","0","0","0" +"5054","241","18","1","-1209","-4533","0","0","0" +"5055","241","19","1","-1312","-4778","0","0","0" +"5056","241","20","1","-1448","-4947","0","0","0" +"5057","241","21","1","-1652","-5107","0","0","0" +"5058","241","22","1","-1867","-5196","0","0","0" +"5059","241","23","0","-14335","1558","0","0","0" +"5060","241","24","0","-14366","1302","0","0","0" +"5061","241","25","0","-14338","1081","0","0","0" +"5062","241","26","0","-14366","867","0","0","0" +"5063","241","27","0","-14351","733","0","0","0" +"5064","241","28","0","-14342","635","0","0","0" +"5065","241","29","0","-14277","582","0","2","60" +"5066","241","30","0","-14171","578","0","0","0" +"5067","241","31","0","-14088","626","0","0","0" +"5068","241","32","0","-14052","732","0","0","0" +"5069","241","33","0","-14122","852","0","0","0" +"5070","241","34","0","-14351","864","0","0","0" +"5071","241","35","0","-14917","833","0","0","0" +"5072","241","36","0","-15089","808","0","0","0" +"5080","242","0","1","3661","-4390","114","0","0" +"5081","242","1","1","3664","-4390","114","0","0" +"5082","242","2","1","3695","-4397","123","0","0" +"5083","242","3","1","3722","-4466","166","0","0" +"5084","242","4","1","3665","-4583","158","0","0" +"5085","242","5","1","3502","-4619","145","0","0" +"5086","242","6","1","3361","-4561","141","0","0" +"5087","242","7","1","3302","-4440","144","0","0" +"5088","242","8","1","3210","-4367","155","0","0" +"5089","242","9","1","3175","-4246","122","0","0" +"5090","242","10","1","3195","-4121","149","0","0" +"5091","242","11","1","3127","-4039","93","0","0" +"5092","242","12","1","2966","-3942","72","0","0" +"5093","242","13","1","2881","-3866","66","0","0" +"5094","242","14","1","2818","-3788","63","0","0" +"5095","242","15","1","2737","-3746","62","0","0" +"5096","242","16","1","2611","-3736","63","0","0" +"5097","242","17","1","2456","-3698","63","0","0" +"5098","242","18","1","2292","-3649","63","0","0" +"5099","242","19","1","2090","-3653","48","0","0" +"5100","242","20","1","1871","-3709","45","0","0" +"5101","242","21","1","1739","-3794","58","0","0" +"5102","242","22","1","1701","-3898","97","0","0" +"5103","242","23","1","1736","-4027","78","0","0" +"5104","242","24","1","1617","-4116","63","0","0" +"5105","242","25","1","1582","-4200","60","0","0" +"5106","242","26","1","1604","-4273","69","0","0" +"5107","242","27","1","1592","-4359","70","0","0" +"5108","242","28","1","1622","-4404","63","0","0" +"5109","242","29","1","1674","-4402","63","0","0" +"5110","242","30","1","1706","-4364","66","0","0" +"5111","242","31","1","1703","-4327","67","0","0" +"9530","242","32","1","1677","-4314","62","0","0" +"5112","243","0","1","1678","-4315","62","0","0" +"5113","243","1","1","1676","-4313","62","0","0" +"5114","243","2","1","1658","-4300","63","0","0" +"5115","243","3","1","1626","-4273","65","0","0" +"5116","243","4","1","1579","-4200","63","0","0" +"5117","243","5","1","1602","-4127","62","0","0" +"5118","243","6","1","1716","-4078","69","0","0" +"5119","243","7","1","1734","-4006","81","0","0" +"5120","243","8","1","1697","-3916","95","0","0" +"5121","243","9","1","1703","-3830","85","0","0" +"5122","243","10","1","1827","-3733","69","0","0" +"5123","243","11","1","2070","-3644","75","0","0" +"5124","243","12","1","2331","-3655","65","0","0" +"5125","243","13","1","2540","-3721","53","0","0" +"5126","243","14","1","2818","-3790","98","0","0" +"5127","243","15","1","2879","-3996","166","0","0" +"5128","243","16","1","2944","-4113","145","0","0" +"5129","243","17","1","3031","-4141","117","0","0" +"5130","243","18","1","3084","-4207","112","0","0" +"5131","243","19","1","3152","-4243","109","0","0" +"5132","243","20","1","3279","-4269","141","0","0" +"5133","243","21","1","3460","-4339","157","0","0" +"5134","243","22","1","3548","-4357","158","0","0" +"9423","243","23","1","3618","-4379","126","0","0" +"9424","243","24","1","3661","-4390","114","0","0" +"5135","244","0","0","-11112","-3435","80","0","0" +"5136","244","1","0","-11110","-3437","80","0","0" +"5137","244","2","0","-11105","-3447","83","0","0" +"5138","244","3","0","-11084","-3467","85","0","0" +"5139","244","4","0","-11006","-3463","90","0","0" +"5140","244","5","0","-10958","-3439","95","0","0" +"5141","244","6","0","-10926","-3397","103","0","0" +"5142","244","7","0","-10902","-3257","73","0","0" +"5143","244","8","0","-10898","-3178","74","0","0" +"5144","244","9","0","-10873","-3047","60","0","0" +"5145","244","10","0","-10751","-2985","66","0","0" +"5146","244","11","0","-10605","-2968","61","0","0" +"5147","244","12","0","-10545","-2917","74","0","0" +"5148","244","13","0","-10474","-2829","81","0","0" +"5149","244","14","0","-10463","-2733","90","0","0" +"5150","244","15","0","-10530","-2634","90","0","0" +"5151","244","16","0","-10605","-2521","123","0","0" +"5152","244","17","0","-10592","-2397","144","0","0" +"5160","244","18","0","-10589","-2276","181","0","0" +"5161","244","19","0","-10570","-2147","171","0","0" +"5162","244","20","0","-10462","-2065","166","0","0" +"5163","244","21","0","-10427","-1978","163","0","0" +"5164","244","22","0","-10440","-1899","114","0","0" +"5165","244","23","0","-10432","-1798","105","0","0" +"5166","244","24","0","-10461","-1728","89","0","0" +"5167","244","25","0","-10459","-1585","79","0","0" +"5168","244","26","0","-10406","-1488","142","0","0" +"5169","244","27","0","-10541","-1317","137","0","0" +"5170","244","28","0","-10433","-1184","128","0","0" +"5171","244","29","0","-10049","-1144","96","0","0" +"5172","244","30","0","-9953","-1059","70","0","0" +"5173","244","31","0","-9949","-904","34","0","0" +"5174","244","32","0","-9902","-763","31","0","0" +"5175","244","33","0","-9723","-708","50","0","0" +"5176","244","34","0","-9641","-636","59","0","0" +"5177","244","35","0","-9596","-497","62","0","0" +"5178","244","36","0","-9619","-363","64","0","0" +"5179","244","37","0","-9595","-230","64","0","0" +"5180","244","38","0","-9544","-137","66","0","0" +"5181","244","39","0","-9476","-128","82","0","0" +"5182","244","40","0","-9317","-121","142","0","0" +"5183","244","41","0","-9155","161","143","0","0" +"5184","244","42","0","-9125","282","162","0","0" +"5185","244","43","0","-9041","382","152","0","0" +"5186","244","44","0","-8922","420","137","0","0" +"5187","244","45","0","-8834","479","112","0","0" +"5191","245","0","0","-8850","498","110","0","0" +"5192","245","1","0","-8852","496","110","0","0" +"5193","245","2","0","-8879","478","113","0","0" +"5194","245","3","0","-8924","462","117","0","0" +"5195","245","4","0","-9028","495","136","0","0" +"5196","245","5","0","-9102","477","145","0","0" +"5197","245","6","0","-9230","414","161","0","0" +"5198","245","7","0","-9264","267","148","0","0" +"5199","245","8","0","-9486","28","149","0","0" +"5200","245","9","0","-9522","-387","148","0","0" +"5201","245","10","0","-9663","-527","128","0","0" +"5202","245","11","0","-9805","-605","120","0","0" +"5203","245","12","0","-9942","-869","101","0","0" +"5204","245","13","0","-9988","-1091","112","0","0" +"5205","245","14","0","-10377","-1253","117","0","0" +"5206","245","15","0","-10449","-1412","154","0","0" +"5207","245","16","0","-10431","-1822","157","0","0" +"5208","245","17","0","-10429","-1997","116","0","0" +"5209","245","18","0","-10494","-2049","112","0","0" +"5210","245","19","0","-10586","-2139","103","0","0" +"5211","245","20","0","-10573","-2244","101","0","0" +"5212","245","21","0","-10549","-2356","100","0","0" +"5213","245","22","0","-10501","-2564","120","0","0" +"5214","245","23","0","-10493","-2767","89","0","0" +"5215","245","24","0","-10608","-2948","82","0","0" +"5216","245","25","0","-10848","-3023","72","0","0" +"5217","245","26","0","-11031","-3153","73","0","0" +"5218","245","27","0","-11131","-3287","84","0","0" +"5219","245","28","0","-11153","-3389","90","0","0" +"5220","245","29","0","-11131","-3429","86","0","0" +"9477","245","30","0","-11112","-3435","80","0","0" +"5221","248","0","0","-4822","-1157","503","0","0" +"5222","248","1","0","-4830","-1124","513","0","0" +"5223","248","2","0","-4839","-1077","543","0","0" +"5224","248","3","0","-4867","-1047","550","0","0" +"5225","248","4","0","-4889","-1032","548","0","0" +"5226","248","5","0","-4921","-1008","544","0","0" +"5227","248","6","0","-4947","-972","540","0","0" +"5228","248","7","0","-4958","-914","543","0","0" +"5229","248","8","0","-4965","-901","543","0","0" +"5230","248","9","0","-4986","-874","527","0","0" +"5231","248","10","0","-5022","-831","507","0","0" +"5232","248","11","0","-5044","-796","507","0","0" +"5233","248","12","0","-5065","-752","496","0","0" +"5234","248","13","0","-5133","-744","483","0","0" +"5235","248","14","0","-5195","-746","483","0","0" +"5236","248","15","0","-5303","-788","492","0","0" +"5237","248","16","0","-5474","-994","460","0","0" +"5238","248","17","0","-5639","-1133","456","0","0" +"5239","248","18","0","-5681","-1300","455","0","0" +"5240","248","19","0","-5537","-1506","475","0","0" +"5241","248","20","0","-5417","-1588","521","0","0" +"5242","248","21","0","-5323","-1641","547","0","0" +"5243","248","22","0","-5004","-1663","558","0","0" +"5244","248","23","0","-4867","-1644","559","0","0" +"5245","248","24","0","-4569","-1640","559","0","0" +"5246","248","25","0","-4444","-1597","520","0","0" +"5247","248","26","0","-4358","-1500","474","0","0" +"5248","248","27","0","-4318","-1352","447","0","0" +"5249","248","28","0","-4262","-1223","407","0","0" +"5250","248","29","0","-4190","-1084","307","0","0" +"5251","248","30","0","-4125","-938","200","0","0" +"5252","248","31","0","-4035","-866","103","0","0" +"5253","248","32","0","-3833","-896","23","0","0" +"5254","248","33","0","-3772","-875","25","0","0" +"5255","248","34","0","-3732","-860","14","0","0" +"5256","248","35","0","-3703","-855","14","0","0" +"5257","248","36","0","-3650","-843","17","0","0" +"5258","248","37","0","-3533","-902","17","0","0" +"5259","248","38","0","-3416","-992","16","0","0" +"5260","248","39","0","-3197","-1056","18","0","0" +"5261","248","40","0","-3128","-1131","22","0","0" +"5262","248","41","0","-3041","-1205","20","0","0" +"5263","248","42","0","-2897","-1367","21","0","0" +"5264","248","43","0","-2707","-1447","20","0","0" +"5265","248","44","0","-2557","-1647","19","0","0" +"5266","248","45","0","-2078","-1632","68","0","0" +"5267","248","46","0","-1862","-1534","79","0","0" +"5268","248","47","0","-1806","-1411","84","0","0" +"5269","248","48","0","-1593","-1168","102","0","0" +"5270","248","49","0","-1400","-1050","19","0","0" +"5271","248","50","0","-1133","-797","17","0","0" +"5272","248","51","0","-966","-596","18","0","0" +"5273","248","52","0","-888","-535","15","0","0" +"5274","248","53","0","-780","-532","28","0","0" +"5275","248","54","0","-736","-524","34","0","0" +"5276","248","55","0","-714","-517","29","0","0" +"5277","248","56","0","-714","-515","26","0","0" +"5278","248","57","0","-723","-573","33","0","0" +"5279","248","58","0","-741","-679","19","0","0" +"5280","248","59","0","-692","-787","46","0","0" +"5281","248","60","0","-696","-893","46","0","0" +"5282","248","61","0","-598","-948","60","0","0" +"5283","248","62","0","-564","-1059","70","0","0" +"5284","248","63","0","-593","-1199","70","0","0" +"5285","248","64","0","-557","-1293","88","0","0" +"5286","248","65","0","-500","-1406","95","0","0" +"5287","248","66","0","-461","-1508","92","0","0" +"5288","248","67","0","-404","-1585","92","0","0" +"5289","248","68","0","-286","-1634","129","0","0" +"5290","248","69","0","-220","-1723","154","0","0" +"5291","248","70","0","-137","-1759","183","0","0" +"5292","248","71","0","-2","-1911","207","0","0" +"5293","248","72","0","73","-1980","211","0","0" +"5294","248","73","0","193","-2040","206","0","0" +"5295","248","74","0","251","-2036","205","0","0" +"5296","248","75","0","283","-2002","195","0","0" +"5309","249","0","0","-10632","1036","34","0","0" +"5310","249","1","0","-10630","1039","35","0","0" +"5311","249","2","0","-10618","1049","39","0","0" +"5312","249","3","0","-10606","1058","43","0","0" +"5313","249","4","0","-10576","1058","56","0","0" +"5314","249","5","0","-10527","1023","73","0","0" +"5315","249","6","0","-10485","940","76","0","0" +"5316","249","7","0","-10372","866","56","0","0" +"5317","249","8","0","-10300","799","61","0","0" +"5318","249","9","0","-10264","706","43","0","0" +"5319","249","10","0","-10218","629","35","0","0" +"5320","249","11","0","-10171","550","34","0","0" +"5321","249","12","0","-10109","464","37","0","0" +"5322","249","13","0","-10080","327","37","0","0" +"5323","249","14","0","-10131","152","37","0","0" +"5324","249","15","0","-10100","-1","37","0","0" +"5325","249","16","0","-10006","-154","37","0","0" +"5326","249","17","0","-9979","-356","37","0","0" +"5327","249","18","0","-9883","-536","37","0","0" +"5328","249","19","0","-9893","-692","37","0","0" +"5329","249","20","0","-9941","-820","37","0","0" +"5330","249","21","0","-9976","-1075","43","0","0" +"5331","249","22","0","-9987","-1329","43","0","0" +"5332","249","23","0","-9970","-1472","43","0","0" +"5333","249","24","0","-9874","-1596","38","0","0" +"5334","249","25","0","-9840","-1760","80","0","0" +"5335","249","26","0","-9643","-1852","70","0","0" +"5336","249","27","0","-9571","-1977","85","0","0" +"5337","249","28","0","-9553","-2100","112","0","0" +"5338","249","29","0","-9472","-2145","102","0","0" +"9449","249","30","0","-9427","-2204","82","0","0" +"9450","249","31","0","-9433","-2238","70","0","0" +"5342","250","0","0","-10632","1036","35","0","0" +"5343","250","1","0","-10628","1039","35","0","0" +"5344","250","2","0","-10616","1050","38","0","0" +"5345","250","3","0","-10601","1074","44","0","0" +"5346","250","4","0","-10622","1129","60","0","0" +"5347","250","5","0","-10691","1162","64","0","0" +"5348","250","6","0","-10776","1112","56","0","0" +"5349","250","7","0","-10850","938","56","0","0" +"5350","250","8","0","-10873","776","65","0","0" +"5351","250","9","0","-10859","595","99","0","0" +"5352","250","10","0","-10773","283","107","0","0" +"5353","250","11","0","-10782","-61","115","0","0" +"5354","250","12","0","-10918","-364","122","0","0" +"5355","250","13","0","-10933","-715","137","0","0" +"5356","250","14","0","-10791","-976","138","0","0" +"5357","250","15","0","-10611","-1150","90","0","0" +"5358","250","16","0","-10547","-1189","64","0","0" +"9451","250","17","0","-10512","-1225","51","0","0" +"9452","250","18","0","-10515","-1262","42","0","0" +"5451","252","0","0","-10515","-1260","42","0","0" +"5450","252","1","0","-10515","-1249","45","0","0" +"5449","252","2","0","-10514","-1239","49","0","0" +"5448","252","3","0","-10514","-1209","60","0","0" +"5447","252","4","0","-10521","-1157","86","0","0" +"5446","252","5","0","-10561","-1058","119","0","0" +"5445","252","6","0","-10628","-876","145","0","0" +"5444","252","7","0","-10828","-582","146","0","0" +"5443","252","8","0","-10808","-129","113","0","0" +"5442","252","9","0","-10532","227","107","0","0" +"5441","252","10","0","-10379","671","110","0","0" +"5440","252","11","0","-10356","922","92","0","0" +"5439","252","12","0","-10416","1061","74","0","0" +"5438","252","13","0","-10520","1087","68","0","0" +"5437","252","14","0","-10595","1062","53","0","0" +"9185","252","15","0","-10632","1035","35","0","0" +"5452","253","0","0","-987","-545","0","0","0" +"5453","253","1","0","-1009","-599","0","0","0" +"5454","253","2","0","-1089","-664","0","0","0" +"5455","253","3","0","-1279","-747","0","0","0" +"5456","253","4","0","-1454","-882","0","0","0" +"5457","253","5","0","-1619","-920","0","0","0" +"5458","253","6","0","-1793","-887","0","0","0" +"5459","253","7","0","-2030","-854","0","0","0" +"5460","253","8","0","-2456","-852","0","0","0" +"5461","253","9","0","-2694","-716","0","0","0" +"5462","253","10","0","-2773","-527","0","0","0" +"5463","253","11","0","-2926","-400","0","0","0" +"5464","253","12","0","-3187","-353","0","0","0" +"5465","253","13","0","-3453","-524","0","0","0" +"5466","253","14","0","-3627","-622","0","0","0" +"5467","253","15","0","-3748","-536","0","0","0" +"5468","253","16","0","-3678","-402","0","0","0" +"5469","253","17","0","-3534","-377","0","0","0" +"5470","253","18","0","-3292","-500","0","0","0" +"5471","253","19","0","-3073","-701","0","0","0" +"5472","253","20","0","-2758","-812","0","0","0" +"5473","253","21","0","-2455","-859","0","0","0" +"5474","253","22","0","-1975","-876","0","0","0" +"5475","253","23","0","-1829","-746","0","0","0" +"5476","253","24","0","-1697","-658","0","0","0" +"5477","253","25","0","-1557","-626","0","0","0" +"5478","253","26","0","-1410","-528","0","0","0" +"5479","253","27","0","-1265","-493","0","0","0" +"5480","253","28","0","-1139","-480","0","0","0" +"5481","253","29","0","-1035","-499","0","0","0" +"5511","254","0","0","-9433","-2238","70","0","0" +"5510","254","1","0","-9436","-2239","71","0","0" +"5509","254","2","0","-9450","-2243","76","0","0" +"5508","254","3","0","-9495","-2244","87","0","0" +"5507","254","4","0","-9533","-2219","105","0","0" +"5506","254","5","0","-9574","-2105","98","0","0" +"5505","254","6","0","-9562","-1971","87","0","0" +"5504","254","7","0","-9665","-1832","89","0","0" +"5503","254","8","0","-9842","-1767","87","0","0" +"5502","254","9","0","-9895","-1557","88","0","0" +"5501","254","10","0","-9977","-1366","82","0","0" +"5500","254","11","0","-9984","-1105","81","0","0" +"5499","254","12","0","-9899","-700","102","0","0" +"5498","254","13","0","-9978","-362","79","0","0" +"5497","254","14","0","-10014","-133","70","0","0" +"5496","254","15","0","-10129","70","48","0","0" +"5495","254","16","0","-10080","327","49","0","0" +"5494","254","17","0","-10172","539","46","0","0" +"5493","254","18","0","-10184","742","42","0","0" +"5492","254","19","0","-10248","924","60","0","0" +"5491","254","20","0","-10374","1052","52","0","0" +"5490","254","21","0","-10482","1095","61","0","0" +"5489","254","22","0","-10566","1084","54","0","0" +"9395","254","23","0","-10617","1050","43","0","0" +"9396","254","24","0","-10632","1036","34","0","0" +"5512","255","0","0","-10631","1036","35","0","0" +"5513","255","1","0","-10629","1038","35","0","0" +"5514","255","2","0","-10618","1051","39","0","0" +"5515","255","3","0","-10619","1067","44","0","0" +"5516","255","4","0","-10644","1136","62","0","0" +"5517","255","5","0","-10698","1187","71","0","0" +"5518","255","6","0","-10789","1326","43","0","0" +"5519","255","7","0","-10880","1395","52","0","0" +"5520","255","8","0","-10922","1518","58","0","0" +"5521","255","9","0","-10954","1719","56","0","0" +"5522","255","10","0","-11115","1844","57","0","0" +"5523","255","11","0","-11287","1865","49","0","0" +"5524","255","12","0","-11469","1741","36","0","0" +"5525","255","13","0","-11627","1599","29","0","0" +"5526","255","14","0","-11726","1431","18","0","0" +"5527","255","15","0","-11722","1227","18","0","0" +"5528","255","16","0","-11763","1020","18","0","0" +"5529","255","17","0","-11900","867","18","0","0" +"5530","255","18","0","-12047","811","18","0","0" +"5531","255","19","0","-12190","580","18","0","0" +"5532","255","20","0","-12299","433","18","0","0" +"5533","255","21","0","-12448","354","18","0","0" +"5534","255","22","0","-12651","352","18","0","0" +"5535","255","23","0","-12881","506","18","0","0" +"5536","255","24","0","-13049","588","18","0","0" +"5537","255","25","0","-13174","749","18","0","0" +"5538","255","26","0","-13294","800","18","0","0" +"5539","255","27","0","-13523","789","17","0","0" +"5540","255","28","0","-13672","715","17","0","0" +"5541","255","29","0","-13860","687","20","0","0" +"5542","255","30","0","-14036","559","43","0","0" +"5543","255","31","0","-14158","413","102","0","0" +"5544","255","32","0","-14248","403","120","0","0" +"5545","255","33","0","-14361","417","87","0","0" +"9455","255","34","0","-14453","450","42","0","0" +"9456","255","35","0","-14473","465","37","0","0" +"5579","256","0","0","-14473","465","38","0","0" +"5578","256","1","0","-14471","462","39","0","0" +"5577","256","2","0","-14434","429","49","0","0" +"5576","256","3","0","-14367","453","70","0","0" +"5575","256","4","0","-14232","608","71","0","0" +"5574","256","5","0","-14082","632","71","0","0" +"5573","256","6","0","-13934","723","59","0","0" +"5572","256","7","0","-13663","734","34","0","0" +"5571","256","8","0","-13523","809","40","0","0" +"5570","256","9","0","-13294","800","39","0","0" +"5569","256","10","0","-13137","584","37","0","0" +"5568","256","11","0","-12872","526","38","0","0" +"5567","256","12","0","-12651","352","39","0","0" +"5566","256","13","0","-12448","354","40","0","0" +"5565","256","14","0","-12299","433","37","0","0" +"5564","256","15","0","-12136","620","31","0","0" +"5563","256","16","0","-11900","792","27","0","0" +"5562","256","17","0","-11822","1007","31","0","0" +"5561","256","18","0","-11824","1273","25","0","0" +"5560","256","19","0","-11757","1517","46","0","0" +"5559","256","20","0","-11558","1700","45","0","0" +"5558","256","21","0","-11358","1737","51","0","0" +"5557","256","22","0","-11254","1629","94","0","0" +"5556","256","23","0","-11171","1389","114","0","0" +"5555","256","24","0","-10993","1299","62","0","0" +"5554","256","25","0","-10931","1079","56","0","0" +"5553","256","26","0","-10796","1014","52","0","0" +"5552","256","27","0","-10673","1037","40","0","0" +"9109","256","28","0","-10631","1036","35","0","0" +"5580","257","0","0","-9434","-2238","70","0","0" +"5581","257","1","0","-9437","-2240","71","0","0" +"5582","257","2","0","-9452","-2248","75","0","0" +"5583","257","3","0","-9493","-2254","86","0","0" +"5584","257","4","0","-9528","-2239","99","0","0" +"5585","257","5","0","-9559","-2183","107","0","0" +"5586","257","6","0","-9591","-2090","82","0","0" +"5587","257","7","0","-9584","-1941","79","0","0" +"5588","257","8","0","-9704","-1891","62","0","0" +"5589","257","9","0","-9766","-1810","67","0","0" +"5590","257","10","0","-9923","-1697","82","0","0" +"5591","257","11","0","-10007","-1567","109","0","0" +"5592","257","12","0","-10091","-1355","108","0","0" +"5593","257","13","0","-10174","-1233","109","0","0" +"5594","257","14","0","-10293","-1170","112","0","0" +"5595","257","15","0","-10419","-1153","114","0","0" +"5596","257","16","0","-10493","-1197","73","0","0" +"9393","257","17","0","-10513","-1240","52","0","0" +"9394","257","18","0","-10515","-1262","42","0","0" +"5613","258","0","0","-10515","-1261","42","0","0" +"5612","258","1","0","-10515","-1255","43","0","0" +"5611","258","2","0","-10513","-1241","47","0","0" +"5610","258","3","0","-10507","-1204","61","0","0" +"5609","258","4","0","-10479","-1158","84","0","0" +"5608","258","5","0","-10406","-1129","100","0","0" +"5607","258","6","0","-10309","-1140","105","0","0" +"5606","258","7","0","-10165","-1215","103","0","0" +"5605","258","8","0","-10069","-1350","108","0","0" +"5604","258","9","0","-10015","-1563","109","0","0" +"5603","258","10","0","-9899","-1767","91","0","0" +"5602","258","11","0","-9739","-1954","131","0","0" +"5601","258","12","0","-9591","-2090","123","0","0" +"5600","258","13","0","-9463","-2140","105","0","0" +"9184","258","14","0","-9423","-2199","84","0","0" +"9188","258","15","0","-9434","-2238","69","0","0" +"5614","259","0","0","-10515","-1260","42","0","0" +"5615","259","1","0","-10515","-1253","44","0","0" +"5616","259","2","0","-10516","-1240","48","0","0" +"5617","259","3","0","-10532","-1204","58","0","0" +"5618","259","4","0","-10582","-1170","70","0","0" +"5619","259","5","0","-10737","-1102","104","0","0" +"5620","259","6","0","-10805","-887","121","0","0" +"5621","259","7","0","-10842","-649","121","0","0" +"5622","259","8","0","-10908","-503","119","0","0" +"5623","259","9","0","-11074","-413","121","0","0" +"5624","259","10","0","-11248","-373","124","0","0" +"5625","259","11","0","-11392","-287","119","0","0" +"5626","259","12","0","-11532","-182","85","0","0" +"5627","259","13","0","-11585","87","87","0","0" +"5628","259","14","0","-11695","222","86","0","0" +"5629","259","15","0","-11941","330","71","0","0" +"5630","259","16","0","-12152","359","24","0","0" +"5631","259","17","0","-12391","334","7","0","0" +"5632","259","18","0","-12637","395","21","0","0" +"5633","259","19","0","-12893","422","111","0","0" +"5634","259","20","0","-13454","759","83","0","0" +"5635","259","21","0","-13809","687","57","0","0" +"5636","259","22","0","-14012","690","91","0","0" +"5637","259","23","0","-14244","615","116","0","0" +"5638","259","24","0","-14376","448","88","0","0" +"5639","259","25","0","-14474","464","38","0","0" +"5677","260","0","0","-14473","465","37","0","0" +"5676","260","1","0","-14466","460","40","0","0" +"5675","260","2","0","-14401","440","63","0","0" +"5674","260","3","0","-14324","482","77","0","0" +"5673","260","4","0","-14146","679","104","0","0" +"5672","260","5","0","-13915","658","100","0","0" +"5671","260","6","0","-13385","808","45","0","0" +"5670","260","7","0","-12996","531","23","0","0" +"5669","260","8","0","-12578","580","19","0","0" +"5668","260","9","0","-12391","334","11","0","0" +"5667","260","10","0","-12152","359","46","0","0" +"5666","260","11","0","-11916","232","82","0","0" +"5665","260","12","0","-11811","12","92","0","0" +"5664","260","13","0","-11564","-212","93","0","0" +"5663","260","14","0","-11427","-263","119","0","0" +"5662","260","15","0","-11264","-396","131","0","0" +"5661","260","16","0","-11103","-462","113","0","0" +"5660","260","17","0","-11063","-669","116","0","0" +"5659","260","18","0","-10990","-854","103","0","0" +"5658","260","19","0","-11003","-1024","134","0","0" +"5657","260","20","0","-10842","-1161","115","0","0" +"5656","260","21","0","-10656","-1154","103","0","0" +"5655","260","22","0","-10561","-1183","75","0","0" +"5654","260","23","0","-10522","-1221","55","0","0" +"5653","260","24","0","-10515","-1261","42","0","0" +"5678","261","0","0","-10516","-1260","42","0","0" +"5679","261","1","0","-10516","-1252","44","0","0" +"5680","261","2","0","-10516","-1239","47","0","0" +"5681","261","3","0","-10514","-1206","56","0","0" +"5682","261","4","0","-10486","-1182","74","0","0" +"5683","261","5","0","-10418","-1222","113","0","0" +"5684","261","6","0","-10414","-1333","139","0","0" +"5685","261","7","0","-10433","-1600","159","0","0" +"5686","261","8","0","-10583","-1812","185","0","0" +"5687","261","9","0","-10466","-1982","163","0","0" +"5688","261","10","0","-10557","-2119","178","0","0" +"5689","261","11","0","-10591","-2338","166","0","0" +"5690","261","12","0","-10512","-2565","95","0","0" +"5691","261","13","0","-10488","-2777","89","0","0" +"5692","261","14","0","-10600","-2936","81","0","0" +"5693","261","15","0","-10803","-2997","70","0","0" +"5694","261","16","0","-10973","-3106","70","0","0" +"5695","261","17","0","-11133","-3305","78","0","0" +"9186","261","18","0","-11151","-3397","93","0","0" +"9195","261","19","0","-11112","-3435","80","0","0" +"5713","262","0","0","-11112","-3435","80","0","0" +"5712","262","1","0","-11110","-3437","80","0","0" +"5711","262","2","0","-11098","-3449","81","0","0" +"5710","262","3","0","-11071","-3467","83","0","0" +"5709","262","4","0","-11001","-3413","73","0","0" +"5708","262","5","0","-11013","-3285","70","0","0" +"5707","262","6","0","-10961","-3121","71","0","0" +"5706","262","7","0","-10803","-2997","75","0","0" +"5705","262","8","0","-10600","-2936","89","0","0" +"5704","262","9","0","-10483","-2789","91","0","0" +"5703","262","10","0","-10590","-2542","103","0","0" +"5702","262","11","0","-10574","-2268","181","0","0" +"5701","262","12","0","-10583","-2130","161","0","0" +"5700","262","13","0","-10422","-1942","162","0","0" +"5699","262","14","0","-10453","-1700","148","0","0" +"5698","262","15","0","-10466","-1473","156","0","0" +"5697","262","16","0","-10545","-1388","143","0","0" +"9410","262","17","0","-10555","-1316","95","0","0" +"9411","262","18","0","-10515","-1262","42","0","0" +"5715","263","0","0","-4822","-1157","503","0","0" +"5716","263","1","0","-4823","-1154","504","0","0" +"5717","263","2","0","-4826","-1144","508","0","0" +"5718","263","3","0","-4830","-1124","517","0","0" +"5719","263","4","0","-4839","-1077","543","0","0" +"5720","263","5","0","-4867","-1047","550","0","0" +"5721","263","6","0","-4889","-1032","548","0","0" +"5722","263","7","0","-4921","-1008","544","0","0" +"5723","263","8","0","-4947","-972","540","0","0" +"5724","263","9","0","-4958","-914","543","0","0" +"5725","263","10","0","-4965","-901","543","0","0" +"5726","263","11","0","-4986","-874","527","0","0" +"5727","263","12","0","-5022","-831","507","0","0" +"5728","263","13","0","-5044","-796","507","0","0" +"5729","263","14","0","-5065","-752","496","0","0" +"5730","263","15","0","-5133","-744","483","0","0" +"5731","263","16","0","-5195","-746","483","0","0" +"5732","263","17","0","-5303","-788","492","0","0" +"5733","263","18","0","-5424","-854","474","0","0" +"5734","263","19","0","-5474","-994","470","0","0" +"5735","263","20","0","-5441","-1173","478","0","0" +"5736","263","21","0","-5389","-1439","551","0","0" +"5737","263","22","0","-5323","-1641","547","0","0" +"5738","263","23","0","-5078","-1677","558","0","0" +"5739","263","24","0","-4867","-1644","559","0","0" +"5740","263","25","0","-4588","-1637","559","0","0" +"5741","263","26","0","-4444","-1597","524","0","0" +"5742","263","27","0","-4358","-1500","474","0","0" +"5743","263","28","0","-4318","-1352","447","0","0" +"5744","263","29","0","-4262","-1223","407","0","0" +"5745","263","30","0","-4190","-1084","307","0","0" +"5746","263","31","0","-4125","-938","200","0","0" +"5747","263","32","0","-4035","-866","103","0","0" +"5748","263","33","0","-3853","-900","23","0","0" +"5749","263","34","0","-3772","-875","25","0","0" +"5750","263","35","0","-3711","-857","14","0","0" +"5751","263","36","0","-3662","-836","16","0","0" +"5752","263","37","0","-3605","-866","21","0","0" +"5753","263","38","0","-3533","-902","17","0","0" +"5754","263","39","0","-3416","-992","16","0","0" +"5755","263","40","0","-3197","-1056","18","0","0" +"5756","263","41","0","-3128","-1131","22","0","0" +"5757","263","42","0","-3041","-1205","20","0","0" +"5758","263","43","0","-2897","-1367","21","0","0" +"5759","263","44","0","-2707","-1447","20","0","0" +"5760","263","45","0","-2557","-1647","19","0","0" +"5761","263","46","0","-2183","-1667","87","0","0" +"5762","263","47","0","-1889","-1581","90","0","0" +"5763","263","48","0","-1764","-1323","84","0","0" +"5764","263","49","0","-1593","-1168","102","0","0" +"5765","263","50","0","-1429","-1068","48","0","0" +"5766","263","51","0","-1261","-1009","48","0","0" +"5767","263","52","0","-984","-1223","72","0","0" +"5768","263","53","0","-639","-1307","101","0","0" +"5769","263","54","0","-523","-1505","117","0","0" +"5770","263","55","0","-283","-1636","129","0","0" +"5771","263","56","0","-220","-1723","154","0","0" +"5772","263","57","0","-137","-1759","183","0","0" +"5773","263","58","0","-2","-1911","207","0","0" +"5774","263","59","0","73","-1980","211","0","0" +"5775","263","60","0","144","-1951","206","0","0" +"9389","263","61","0","234","-2013","205","0","0" +"9390","263","62","0","283","-2002","195","0","0" +"5851","264","0","0","284","-2004","195","0","0" +"5850","264","1","0","282","-2007","196","0","0" +"5849","264","2","0","261","-2037","203","0","0" +"5848","264","3","0","200","-2067","206","0","0" +"5847","264","4","0","73","-1980","197","0","0" +"5846","264","5","0","-32","-1881","188","0","0" +"5845","264","6","0","-154","-1738","191","0","0" +"5844","264","7","0","-334","-1683","168","0","0" +"5843","264","8","0","-461","-1585","110","0","0" +"5842","264","9","0","-632","-1304","116","0","0" +"5841","264","10","0","-995","-1180","96","0","0" +"5840","264","11","0","-1261","-1009","75","0","0" +"5839","264","12","0","-1429","-1068","81","0","0" +"5838","264","13","0","-1593","-1168","125","0","0" +"5837","264","14","0","-1747","-1554","104","0","0" +"5836","264","15","0","-2016","-1692","133","0","0" +"5835","264","16","0","-2557","-1647","46","0","0" +"5834","264","17","0","-2883","-1542","20","0","0" +"5833","264","18","0","-3095","-1411","21","0","0" +"5832","264","19","0","-3273","-1257","20","0","0" +"5831","264","20","0","-3426","-1008","16","0","0" +"5830","264","21","0","-3533","-902","17","0","0" +"5829","264","22","0","-3658","-853","48","0","0" +"5828","264","23","0","-3812","-843","76","0","0" +"5827","264","24","0","-4126","-935","193","0","0" +"5826","264","25","0","-4373","-1009","508","0","0" +"5825","264","26","0","-4537","-843","654","0","0" +"5824","264","27","0","-4717","-648","681","0","0" +"5823","264","28","0","-4868","-488","618","0","0" +"5822","264","29","0","-5019","-501","609","0","0" +"5821","264","30","0","-5107","-616","559","0","0" +"5820","264","31","0","-5089","-716","524","0","0" +"5819","264","32","0","-5022","-831","507","0","0" +"5818","264","33","0","-4986","-874","527","0","0" +"5817","264","34","0","-4965","-901","544","0","0" +"5816","264","35","0","-4958","-914","543","0","0" +"5815","264","36","0","-4947","-972","540","0","0" +"5814","264","37","0","-4921","-1008","544","0","0" +"5813","264","38","0","-4889","-1032","548","0","0" +"5812","264","39","0","-4867","-1047","550","0","0" +"5811","264","40","0","-4839","-1077","541","0","0" +"5810","264","41","0","-4836","-1126","517","0","0" +"9051","264","42","0","-4822","-1157","503","0","0" +"5852","265","0","0","-5422","-2925","348","0","0" +"5853","265","1","0","-5425","-2927","350","0","0" +"5854","265","2","0","-5435","-2936","355","0","0" +"5855","265","3","0","-5464","-2966","369","0","0" +"5856","265","4","0","-5470","-3037","387","0","0" +"5857","265","5","0","-5387","-3123","371","0","0" +"5858","265","6","0","-5197","-3162","347","0","0" +"5859","265","7","0","-4893","-3189","329","0","0" +"5860","265","8","0","-4729","-3266","318","0","0" +"5861","265","9","0","-4593","-3290","245","0","0" +"5862","265","10","0","-4459","-3242","190","0","0" +"5863","265","11","0","-4261","-3135","134","0","0" +"5864","265","12","0","-4106","-3007","26","0","0" +"5865","265","13","0","-4008","-2808","34","0","0" +"5866","265","14","0","-3724","-2715","43","0","0" +"5867","265","15","0","-3542","-2556","100","0","0" +"5868","265","16","0","-3396","-2324","65","0","0" +"5869","265","17","0","-3369","-2159","69","0","0" +"5870","265","18","0","-3431","-2067","120","0","0" +"5871","265","19","0","-3412","-1958","126","0","0" +"5872","265","20","0","-3396","-1828","37","0","0" +"5873","265","21","0","-3369","-1740","75","0","0" +"5874","265","22","0","-3370","-1545","32","0","0" +"5875","265","23","0","-3459","-1397","19","0","0" +"5876","265","24","0","-3684","-1278","18","0","0" +"5877","265","25","0","-3783","-1087","39","0","0" +"5878","265","26","0","-3769","-919","33","0","0" +"5879","265","27","0","-3783","-818","17","0","0" +"9501","265","28","0","-3792","-782","10","0","0" +"5907","266","0","0","-3792","-782","10","0","0" +"5906","266","1","0","-3791","-786","11","0","0" +"5905","266","2","0","-3790","-798","14","0","0" +"5904","266","3","0","-3789","-823","20","0","0" +"5903","266","4","0","-3788","-898","36","0","0" +"5902","266","5","0","-3748","-1040","39","0","0" +"5901","266","6","0","-3627","-1201","23","0","0" +"5900","266","7","0","-3475","-1266","18","0","0" +"5899","266","8","0","-3307","-1433","19","0","0" +"5898","266","9","0","-3249","-1605","21","0","0" +"5897","266","10","0","-3171","-1758","21","0","0" +"5896","266","11","0","-3169","-1992","23","0","0" +"5895","266","12","0","-3055","-2251","20","0","0" +"5894","266","13","0","-3155","-2604","20","0","0" +"5893","266","14","0","-3340","-2756","32","0","0" +"5892","266","15","0","-3563","-2812","34","0","0" +"5891","266","16","0","-3722","-3019","29","0","0" +"5890","266","17","0","-3900","-3098","22","0","0" +"5889","266","18","0","-4092","-3115","43","0","0" +"5888","266","19","0","-4254","-3181","141","0","0" +"5887","266","20","0","-4447","-3230","202","0","0" +"5886","266","21","0","-4724","-3408","330","0","0" +"5885","266","22","0","-5028","-3317","328","0","0" +"5884","266","23","0","-5248","-3037","363","0","0" +"9403","266","24","0","-5403","-2955","355","0","0" +"9404","266","25","0","-5422","-2925","348","0","0" +"5908","267","0","0","-5423","-2926","348","0","0" +"5909","267","1","0","-5426","-2927","349","0","0" +"5910","267","2","0","-5443","-2938","356","0","0" +"5911","267","3","0","-5466","-2962","371","0","0" +"5912","267","4","0","-5471","-3050","372","0","0" +"5913","267","5","0","-5384","-3112","364","0","0" +"5914","267","6","0","-5196","-3169","364","0","0" +"5915","267","7","0","-4937","-3205","343","0","0" +"5916","267","8","0","-4808","-3297","328","0","0" +"5917","267","9","0","-4697","-3310","310","0","0" +"5918","267","10","0","-4456","-3246","217","0","0" +"5919","267","11","0","-4256","-3208","154","0","0" +"5920","267","12","0","-3977","-3157","79","0","0" +"5921","267","13","0","-3680","-3131","48","0","0" +"5922","267","14","0","-3378","-3133","38","0","0" +"5923","267","15","0","-3082","-2915","37","0","0" +"5924","267","16","0","-2996","-2626","44","0","0" +"5925","267","17","0","-2875","-2496","58","0","0" +"5926","267","18","0","-2688","-2493","80","0","0" +"5927","267","19","0","-2511","-2497","110","0","0" +"5928","267","20","0","-2370","-2501","122","0","0" +"5929","267","21","0","-2256","-2503","111","0","0" +"5930","267","22","0","-2074","-2537","97","0","0" +"5931","267","23","0","-1902","-2500","75","0","0" +"5932","267","24","0","-1716","-2490","77","0","0" +"5933","267","25","0","-1593","-2441","93","0","0" +"5934","267","26","0","-1390","-2431","71","0","0" +"9499","267","27","0","-1299","-2458","51","0","0" +"9500","267","28","0","-1244","-2515","21","0","0" +"5961","268","0","0","-1244","-2515","21","0","0" +"5960","268","1","0","-1243","-2519","22","0","0" +"5959","268","2","0","-1240","-2530","26","0","0" +"5958","268","3","0","-1231","-2571","41","0","0" +"5957","268","4","0","-1192","-2641","58","0","0" +"5956","268","5","0","-1239","-2705","62","0","0" +"5955","268","6","0","-1368","-2657","80","0","0" +"5954","268","7","0","-1487","-2561","77","0","0" +"5953","268","8","0","-1711","-2506","77","0","0" +"5952","268","9","0","-1902","-2500","75","0","0" +"5951","268","10","0","-2074","-2537","97","0","0" +"5950","268","11","0","-2256","-2503","111","0","0" +"5949","268","12","0","-2370","-2501","122","0","0" +"5948","268","13","0","-2511","-2497","110","0","0" +"5947","268","14","0","-2688","-2493","80","0","0" +"5946","268","15","0","-2875","-2496","58","0","0" +"5945","268","16","0","-2996","-2626","44","0","0" +"5944","268","17","0","-3082","-2915","37","0","0" +"5943","268","18","0","-3378","-3133","38","0","0" +"5942","268","19","0","-3680","-3131","48","0","0" +"5941","268","20","0","-3977","-3157","79","0","0" +"5940","268","21","0","-4256","-3208","162","0","0" +"5939","268","22","0","-4456","-3246","242","0","0" +"5938","268","23","0","-4692","-3292","314","0","0" +"5937","268","24","0","-4937","-3205","321","0","0" +"5936","268","25","0","-5196","-3169","338","0","0" +"5935","268","26","0","-5384","-3112","364","0","0" +"5962","268","27","0","-5471","-3050","372","0","0" +"5963","268","28","0","-5466","-2962","371","0","0" +"9443","268","29","0","-5423","-2926","348","0","0" +"5964","269","0","0","-3790","-781","10","0","0" +"5965","269","1","0","-3790","-784","11","0","0" +"5966","269","2","0","-3790","-797","13","0","0" +"5967","269","3","0","-3784","-828","20","0","0" +"5968","269","4","0","-3754","-855","26","0","0" +"5969","269","5","0","-3669","-853","41","0","0" +"5970","269","6","0","-3512","-813","11","0","0" +"5971","269","7","0","-3332","-799","5","0","0" +"5972","269","8","0","-3134","-833","5","0","0" +"5973","269","9","0","-2915","-944","11","0","0" +"5974","269","10","0","-2733","-1137","11","0","0" +"5975","269","11","0","-2459","-1294","11","0","0" +"5976","269","12","0","-2164","-1359","24","0","0" +"5977","269","13","0","-1885","-1621","52","0","0" +"5978","269","14","0","-1789","-1762","71","0","0" +"5979","269","15","0","-1756","-1940","76","0","0" +"5980","269","16","0","-1636","-2064","66","0","0" +"5981","269","17","0","-1389","-2235","75","0","0" +"5982","269","18","0","-1315","-2413","71","0","0" +"9400","269","19","0","-1266","-2494","33","0","0" +"9401","269","20","0","-1242","-2514","22","0","0" +"6001","270","0","0","-1242","-2514","22","0","0" +"6000","270","1","0","-1241","-2518","23","0","0" +"5999","270","2","0","-1240","-2527","26","0","0" +"5998","270","3","0","-1230","-2570","38","0","0" +"5997","270","4","0","-1168","-2622","69","0","0" +"5996","270","5","0","-1086","-2605","78","0","0" +"5995","270","6","0","-1060","-2475","73","0","0" +"5994","270","7","0","-1202","-2278","70","0","0" +"5993","270","8","0","-1380","-2150","75","0","0" +"5992","270","9","0","-1735","-1966","99","0","0" +"5991","270","10","0","-1821","-1712","92","0","0" +"5990","270","11","0","-2027","-1523","14","0","0" +"5989","270","12","0","-2341","-1471","12","0","0" +"5988","270","13","0","-2622","-1169","11","0","0" +"5987","270","14","0","-2928","-1026","16","0","0" +"5986","270","15","0","-3146","-933","18","0","0" +"5985","270","16","0","-3344","-889","12","0","0" +"5984","270","17","0","-3623","-793","34","0","0" +"5983","270","18","0","-3729","-752","23","0","0" +"6002","270","19","0","-3771","-757","14","0","0" +"9441","270","20","0","-3790","-781","10","0","0" +"6005","271","0","0","-3789","-780","10","0","0" +"6006","271","1","0","-3787","-798","15","0","0" +"6007","271","2","0","-3773","-844","29","0","0" +"6008","271","3","0","-3727","-858","39","0","0" +"6009","271","4","0","-3535","-797","47","0","0" +"6010","271","5","0","-3267","-631","38","0","0" +"6011","271","6","0","-2459","-474","7","0","0" +"6012","271","7","0","-1907","-429","15","0","0" +"6013","271","8","0","-1143","-520","47","0","0" +"6014","271","9","0","-928","-528","40","0","0" +"6015","271","10","0","-766","-531","35","0","0" +"6016","271","11","0","-713","-517","27","0","0" +"6036","272","0","0","-713","-517","26","0","0" +"6035","272","1","0","-717","-541","28","0","0" +"6034","272","2","0","-727","-597","42","0","0" +"6033","272","3","0","-759","-654","50","0","0" +"6032","272","4","0","-886","-652","40","0","0" +"6031","272","5","0","-1093","-652","24","0","0" +"6030","272","6","0","-1930","-620","10","0","0" +"6029","272","7","0","-2632","-598","7","0","0" +"6028","272","8","0","-3165","-538","7","0","0" +"6027","272","9","0","-3565","-652","30","0","0" +"6026","272","10","0","-3699","-659","40","0","0" +"9463","272","11","0","-3789","-716","33","0","0" +"9464","272","12","0","-3809","-754","17","0","0" +"12727","272","13","0","-3789","-785","10","0","0" +"6037","273","0","0","-1243","-2514","22","0","0" +"6038","273","1","0","-1242","-2517","22","0","0" +"6039","273","2","0","-1240","-2532","25","0","0" +"6040","273","3","0","-1231","-2575","35","0","0" +"6041","273","4","0","-1176","-2622","61","0","0" +"6042","273","5","0","-1079","-2606","71","0","0" +"6043","273","6","0","-1004","-2469","70","0","0" +"6044","273","7","0","-955","-2149","67","0","0" +"6045","273","8","0","-1001","-1823","90","0","0" +"6046","273","9","0","-1113","-1405","111","0","0" +"6047","273","10","0","-1004","-1026","114","0","0" +"6048","273","11","0","-1005","-714","66","0","0" +"9439","273","12","0","-934","-552","41","0","0" +"9440","273","13","0","-775","-527","35","0","0" +"12726","273","14","0","-711","-520","28","0","0" +"6060","274","0","0","-714","-516","26","0","0" +"6059","274","1","0","-713","-520","27","0","0" +"6058","274","2","0","-714","-537","28","0","0" +"6057","274","3","0","-727","-600","44","0","0" +"6056","274","4","0","-770","-776","60","0","0" +"6055","274","5","0","-803","-890","80","0","0" +"6054","274","6","0","-900","-1190","112","0","0" +"6053","274","7","0","-1080","-1431","119","0","0" +"6052","274","8","0","-1280","-1798","83","0","0" +"6051","274","9","0","-1382","-2072","82","0","0" +"9459","274","10","0","-1350","-2356","90","0","0" +"9460","274","11","0","-1312","-2455","55","0","0" +"11953","274","12","0","-1243","-2514","22","0","0" +"6061","275","0","0","-1242","-2515","22","0","0" +"6062","275","1","0","-1242","-2518","23","0","0" +"6063","275","2","0","-1240","-2530","27","0","0" +"6064","275","3","0","-1231","-2568","41","0","0" +"6065","275","4","0","-1159","-2624","78","0","0" +"6066","275","5","0","-1050","-2591","93","0","0" +"6067","275","6","0","-893","-2367","77","0","0" +"6068","275","7","0","-840","-2178","76","0","0" +"6069","275","8","0","-701","-1988","110","0","0" +"6070","275","9","0","-520","-1826","155","0","0" +"6071","275","10","0","-348","-1747","206","0","0" +"6072","275","11","0","-113","-1798","223","0","0" +"6073","275","12","0","65","-1969","221","0","0" +"9437","275","13","0","146","-1955","215","0","0" +"9438","275","14","0","235","-2014","196","0","0" +"12844","275","15","0","284","-2003","196","0","0" +"6086","276","0","0","286","-2006","195","0","0" +"6085","276","1","0","283","-2009","196","0","0" +"6084","276","2","0","266","-2026","199","0","0" +"6083","276","3","0","196","-2082","210","0","0" +"6082","276","4","0","133","-2041","213","0","0" +"6081","276","5","0","-25","-1900","235","0","0" +"6080","276","6","0","-287","-1729","189","0","0" +"6079","276","7","0","-481","-1723","146","0","0" +"6078","276","8","0","-892","-1866","88","0","0" +"6077","276","9","0","-1201","-2077","117","0","0" +"6076","276","10","0","-1328","-2235","108","0","0" +"9047","276","11","0","-1340","-2371","89","0","0" +"9048","276","12","0","-1293","-2468","54","0","0" +"9055","276","13","0","-1242","-2515","22","0","0" +"6138","279","0","1","-440","-2595","97","0","0" +"6139","279","1","1","-443","-2603","99","0","0" +"6140","279","2","1","-453","-2648","110","0","0" +"6141","279","3","1","-420","-2682","115","0","0" +"6142","279","4","1","-321","-2683","127","0","0" +"6143","279","5","1","-290","-2512","118","0","0" +"6144","279","6","1","-189","-2178","124","0","0" +"6145","279","7","1","-145","-1836","119","0","0" +"6146","279","8","1","-129","-1619","124","0","0" +"6147","279","9","1","-69","-1469","124","0","0" +"6148","279","10","1","-100","-1307","124","0","0" +"6149","279","11","1","-181","-1084","96","0","0" +"6150","279","12","1","-243","-840","86","0","0" +"6151","279","13","1","-182","-635","82","0","0" +"6803","279","14","1","-60","-437","78","0","0" +"6804","279","15","1","58","-181","92","0","0" +"6805","279","16","1","140","83","109","0","0" +"6806","279","17","1","318","247","126","0","0" +"6807","279","18","1","603","345","144","0","0" +"6808","279","19","1","836","544","170","0","0" +"6809","279","20","1","929","733","169","0","0" +"9165","279","21","1","929","890","140","0","0" +"9166","279","22","1","949","1004","114","0","0" +"12732","279","23","1","966","1041","107","0","0" +"6165","280","0","1","965","1041","105","0","0" +"6164","280","1","1","976","1050","109","0","0" +"6163","280","2","1","1000","1056","119","0","0" +"6162","280","3","1","1034","1039","139","0","0" +"6161","280","4","1","1041","991","153","0","0" +"6160","280","5","1","1011","948","160","0","0" +"6159","280","6","1","942","886","172","0","0" +"6158","280","7","1","927","703","175","0","0" +"6157","280","8","1","881","553","169","0","0" +"6156","280","9","1","809","452","158","0","0" +"6155","280","10","1","691","369","146","0","0" +"6154","280","11","1","555","349","147","0","0" +"6153","280","12","1","391","340","141","0","0" +"6152","280","13","1","234","255","135","0","0" +"6777","280","14","1","113","111","124","0","0" +"6778","280","15","1","50","-70","97","0","0" +"6779","280","16","1","-10","-190","81","0","0" +"6780","280","17","1","-113","-338","77","0","0" +"6781","280","18","1","-208","-568","85","0","0" +"6782","280","19","1","-199","-740","64","0","0" +"6783","280","20","1","-235","-1045","56","0","0" +"6784","280","21","1","-338","-1262","103","0","0" +"6785","280","22","1","-416","-1548","133","0","0" +"6786","280","23","1","-408","-1850","116","0","0" +"6787","280","24","1","-274","-2090","119","0","0" +"6788","280","25","1","-271","-2284","111","0","0" +"6789","280","26","1","-340","-2459","122","0","0" +"6790","280","27","1","-407","-2538","123","0","0" +"9484","280","28","1","-440","-2595","97","0","0" +"6166","281","0","1","-439","-2598","97","0","0" +"6167","281","1","1","-462","-2643","106","0","0" +"6168","281","2","1","-558","-2647","111","0","0" +"6169","281","3","1","-693","-2555","115","0","0" +"6170","281","4","1","-783","-2480","105","0","0" +"6171","281","5","1","-1050","-2454","103","0","0" +"6172","281","6","1","-1267","-2468","111","0","0" +"6173","281","7","1","-1761","-2589","113","0","0" +"6174","281","8","1","-2234","-2434","114","0","0" +"6175","281","9","1","-2481","-2222","109","0","0" +"6176","281","10","1","-2889","-2125","106","0","0" +"6177","281","11","1","-3267","-2030","119","0","0" +"6178","281","12","1","-3579","-2030","104","0","0" +"6179","281","13","1","-3789","-2044","111","0","0" +"6180","281","14","1","-4070","-2042","107","0","0" +"6181","281","15","1","-4244","-1907","116","0","0" +"6182","281","16","1","-4559","-1860","106","0","0" +"6183","281","17","1","-4769","-1873","104","0","0" +"6184","281","18","1","-5050","-1951","118","0","0" +"6185","281","19","1","-5297","-2123","116","0","0" +"6186","281","20","1","-5305","-2285","109","0","0" +"6187","281","21","1","-5387","-2395","97","0","0" +"6188","281","22","1","-5406","-2416","91","0","0" +"6213","282","0","1","-5407","-2415","91","0","0" +"6212","282","1","1","-5416","-2412","94","0","0" +"6211","282","2","1","-5449","-2403","101","0","0" +"6210","282","3","1","-5537","-2327","84","0","0" +"6209","282","4","1","-5424","-2223","64","0","0" +"6208","282","5","1","-5182","-2055","38","0","0" +"6207","282","6","1","-5028","-2036","35","0","0" +"6206","282","7","1","-4813","-1841","27","0","0" +"6205","282","8","1","-4612","-1822","104","0","0" +"6204","282","9","1","-4254","-1914","116","0","0" +"6203","282","10","1","-3907","-2051","107","0","0" +"6202","282","11","1","-3471","-2016","111","0","0" +"6201","282","12","1","-3206","-2030","119","0","0" +"6200","282","13","1","-2889","-2135","113","0","0" +"6199","282","14","1","-2387","-2157","109","0","0" +"6198","282","15","1","-1979","-2062","114","0","0" +"6197","282","16","1","-1385","-2096","106","0","0" +"6196","282","17","1","-1097","-2411","104","0","0" +"6195","282","18","1","-751","-2439","134","0","0" +"6194","282","19","1","-568","-2414","126","0","0" +"6214","282","20","1","-412","-2518","130","0","0" +"9208","282","21","1","-441","-2597","97","0","0" +"6215","283","0","1","-440","-2595","97","0","0" +"6216","283","1","1","-447","-2625","102","0","0" +"6217","283","2","1","-476","-2719","124","0","0" +"6218","283","3","1","-420","-2787","124","0","0" +"6219","283","4","1","-170","-2927","111","0","0" +"6220","283","5","1","64","-2965","108","0","0" +"6221","283","6","1","271","-3083","121","0","0" +"6222","283","7","1","499","-3293","230","0","0" +"6223","283","8","1","819","-3352","230","0","0" +"6224","283","9","1","1085","-3556","105","0","0" +"6225","283","10","1","1191","-3786","84","0","0" +"6226","283","11","1","1415","-3873","90","0","0" +"6227","283","12","1","1717","-3806","74","0","0" +"6228","283","13","1","1996","-3662","72","0","0" +"6229","283","14","1","2325","-3641","60","0","0" +"6230","283","15","1","2581","-3735","67","0","0" +"6231","283","16","1","2820","-3783","73","0","0" +"6232","283","17","1","3009","-3973","104","0","0" +"6233","283","18","1","3234","-4081","124","0","0" +"6234","283","19","1","3404","-4129","160","0","0" +"6235","283","20","1","3561","-4243","151","0","0" +"6236","283","21","1","3615","-4377","129","0","0" +"6237","283","22","1","3661","-4390","115","0","0" +"6262","284","0","1","3661","-4390","114","0","0" +"6261","284","1","1","3663","-4387","115","0","0" +"6260","284","2","1","3666","-4381","118","0","0" +"6259","284","3","1","3679","-4343","138","0","0" +"6258","284","4","1","3623","-4251","161","0","0" +"6257","284","5","1","3421","-4128","173","0","0" +"6256","284","6","1","3144","-4045","139","0","0" +"6255","284","7","1","2970","-3934","115","0","0" +"6254","284","8","1","2778","-3762","99","0","0" +"6253","284","9","1","2500","-3720","96","0","0" +"6252","284","10","1","2219","-3641","60","0","0" +"6251","284","11","1","1886","-3709","83","0","0" +"6250","284","12","1","1625","-3864","97","0","0" +"6249","284","13","1","1345","-3890","98","0","0" +"6248","284","14","1","1125","-3841","86","0","0" +"6247","284","15","1","902","-3719","66","0","0" +"6246","284","16","1","585","-3723","46","0","0" +"6245","284","17","1","330","-3649","43","0","0" +"6244","284","18","1","195","-3477","55","0","0" +"6243","284","19","1","116","-3195","106","0","0" +"6242","284","20","1","-44","-3047","101","0","0" +"6241","284","21","1","-178","-2837","108","0","0" +"6240","284","22","1","-273","-2580","119","0","0" +"6239","284","23","1","-376","-2561","120","0","0" +"9525","284","24","1","-440","-2595","97","0","0" +"6263","285","0","0","-12466","999","59","0","0" +"6264","285","1","0","-12465","931","59","0","0" +"6265","285","2","0","-12442","685","59","0","0" +"6266","285","3","0","-12428","397","53","0","0" +"6267","285","4","0","-12464","231","49","2","60" +"6268","285","5","0","-12564","141","59","0","0" +"6269","285","6","0","-12677","177","80","0","0" +"6270","285","7","0","-12730","296","85","0","0" +"6271","285","8","0","-12703","463","85","0","0" +"6272","285","9","0","-12667","633","85","0","0" +"6273","285","10","0","-12612","904","85","0","0" +"6274","285","11","0","-12602","1010","85","0","0" +"6275","285","12","1","1131","-5493","98","0","0" +"6276","285","13","1","1132","-5400","98","0","0" +"6277","285","14","1","1166","-5200","98","0","0" +"6278","285","15","1","1165","-4935","98","0","0" +"6279","285","16","1","1129","-4751","98","0","0" +"6280","285","17","1","1126","-4526","98","0","0" +"6281","285","18","1","1223","-4465","95","0","0" +"6282","285","19","1","1299","-4508","83","0","0" +"6283","285","20","1","1360","-4631","71","2","60" +"6284","285","21","1","1468","-4755","98","0","0" +"6285","285","22","1","1465","-4918","98","0","0" +"6286","285","23","1","1453","-5065","98","0","0" +"6287","285","24","1","1443","-5230","98","0","0" +"6288","285","25","1","1441","-5331","98","0","0" +"6289","285","26","1","1446","-5433","98","0","0" +"6290","286","0","1","5072","-337","368","0","0" +"6291","286","1","1","5075","-328","368","0","0" +"6292","286","2","1","5118","-287","362","0","0" +"6293","286","3","1","5181","-232","339","0","0" +"6294","286","4","1","5261","-324","329","0","0" +"6295","286","5","1","5253","-430","325","0","0" +"6296","286","6","1","5267","-561","327","0","0" +"6297","286","7","1","5277","-695","348","0","0" +"6298","286","8","1","5247","-764","360","0","0" +"6299","286","9","1","5112","-747","335","0","0" +"6300","286","10","1","5037","-747","325","0","0" +"6301","286","11","1","4925","-732","313","0","0" +"6302","286","12","1","4810","-747","306","0","0" +"6303","286","13","1","4651","-800","305","0","0" +"6304","286","14","1","4510","-911","317","0","0" +"6305","286","15","1","4416","-941","319","0","0" +"6306","286","16","1","4301","-985","315","0","0" +"6307","286","17","1","4171","-1027","302","0","0" +"6308","286","18","1","4028","-1073","303","0","0" +"6309","286","19","1","3931","-1089","295","0","0" +"6310","286","20","1","3894","-1288","267","0","0" +"6311","286","21","1","3848","-1403","260","0","0" +"6312","286","22","1","3741","-1497","245","0","0" +"6313","286","23","1","3613","-1488","224","0","0" +"6314","286","24","1","3466","-1521","178","0","0" +"6315","286","25","1","3271","-1565","177","0","0" +"6316","286","26","1","3205","-1695","173","0","0" +"6317","286","27","1","3041","-1787","173","0","0" +"6318","286","28","1","2828","-1944","169","0","0" +"6319","286","29","1","2670","-1982","165","0","0" +"6320","286","30","1","2472","-2000","144","0","0" +"6321","286","31","1","2377","-2051","139","0","0" +"6322","286","32","1","2299","-2132","125","0","0" +"6323","286","33","1","2161","-2024","114","0","0" +"6324","286","34","1","2053","-2011","110","0","0" +"6325","286","35","1","1879","-2090","123","0","0" +"6326","286","36","1","1766","-2098","122","0","0" +"6327","286","37","1","1680","-2166","105","0","0" +"6328","286","38","1","1566","-2215","102","0","0" +"6329","286","39","1","1399","-2259","105","0","0" +"9066","286","40","1","1278","-2278","149","0","0" +"12460","286","41","1","1136","-2256","155","0","0" +"12461","286","42","1","1019","-2377","155","0","0" +"12462","286","43","1","824","-2396","155","0","0" +"12463","286","44","1","447","-2449","155","0","0" +"12464","286","45","1","-29","-2536","155","0","0" +"12465","286","46","1","-154","-2526","155","0","0" +"12466","286","47","1","-285","-2515","140","0","0" +"12467","286","48","1","-398","-2526","124","0","0" +"12468","286","49","1","-440","-2596","98","0","0" +"6369","287","0","1","-442","-2594","97","0","0" +"6368","287","1","1","-450","-2636","107","0","0" +"6367","287","2","1","-418","-2678","116","0","0" +"6366","287","3","1","-323","-2656","123","0","0" +"6365","287","4","1","-219","-2428","128","0","0" +"6364","287","5","1","-145","-2360","158","0","0" +"6363","287","6","1","59","-2292","195","0","0" +"6362","287","7","1","330","-2280","258","0","0" +"6361","287","8","1","541","-2304","185","0","0" +"6360","287","9","1","799","-2379","160","0","0" +"6359","287","10","1","1149","-2385","164","0","0" +"6358","287","11","1","1309","-2314","159","0","0" +"6357","287","12","1","1405","-2331","108","0","0" +"6356","287","13","1","1525","-2243","107","0","0" +"6355","287","14","1","1655","-1992","122","0","0" +"6354","287","15","1","1708","-1871","126","0","0" +"6353","287","16","1","1812","-1892","123","0","0" +"6352","287","17","1","2036","-1991","111","0","0" +"6351","287","18","1","2147","-2072","116","0","0" +"6350","287","19","1","2304","-2121","126","0","0" +"6349","287","20","1","2426","-2017","144","0","0" +"6348","287","21","1","2591","-1980","159","0","0" +"6347","287","22","1","2726","-1984","169","0","0" +"6346","287","23","1","2833","-1945","172","0","0" +"6345","287","24","1","2964","-1830","178","0","0" +"6344","287","25","1","3160","-1729","179","0","0" +"6343","287","26","1","3277","-1580","180","0","0" +"6342","287","27","1","3505","-1508","179","0","0" +"6341","287","28","1","3706","-1399","209","0","0" +"6340","287","29","1","3834","-1348","220","0","0" +"6339","287","30","1","3903","-1271","232","0","0" +"6338","287","31","1","3915","-1109","267","0","0" +"6337","287","32","1","4094","-1055","312","0","0" +"6336","287","33","1","4335","-953","331","0","0" +"6335","287","34","1","4393","-870","307","0","0" +"6334","287","35","1","4482","-846","305","0","0" +"6333","287","36","1","4570","-855","310","0","0" +"6332","287","37","1","4690","-782","311","0","0" +"6331","287","38","1","4825","-744","305","0","0" +"6330","287","39","1","4926","-736","323","0","0" +"6370","287","40","1","5009","-749","353","0","0" +"6371","287","41","1","5129","-749","338","0","0" +"6372","287","42","1","5225","-768","356","0","0" +"6373","287","43","1","5287","-699","352","0","0" +"6374","287","44","1","5269","-580","329","0","0" +"6375","287","45","1","5254","-395","331","0","0" +"6376","287","46","1","5262","-306","341","0","0" +"6377","287","47","1","5199","-261","358","0","0" +"9173","287","48","1","5126","-273","369","0","0" +"9180","287","49","1","5068","-338","370","0","0" +"6417","289","0","1","6342","559","17","0","0" +"6416","289","1","1","6347","567","20","0","0" +"6415","289","2","1","6370","612","33","0","0" +"6414","289","3","1","6379","711","67","0","0" +"6413","289","4","1","6534","673","89","0","0" +"6412","289","5","1","6789","631","71","0","0" +"6411","289","6","1","7069","471","59","0","0" +"6410","289","7","1","7370","199","48","0","0" +"6409","289","8","1","7514","-70","69","0","0" +"6408","289","9","1","7582","-386","97","0","0" +"6407","289","10","1","7575","-770","118","0","0" +"6406","289","11","1","7407","-1119","144","0","0" +"6405","289","12","1","7416","-1379","259","0","0" +"6404","289","13","1","7405","-1657","350","0","0" +"6403","289","14","1","7504","-1794","514","0","0" +"6402","289","15","1","7561","-2000","623","0","0" +"6401","289","16","1","7675","-2166","514","0","0" +"9685","289","17","1","7688","-2264","482","0","0" +"9686","289","18","1","7713","-2362","482","0","0" +"12736","289","19","1","7659","-2463","482","0","0" +"12737","289","20","1","7565","-2471","477","0","0" +"12738","289","21","1","7489","-2487","466","0","0" +"12739","289","22","1","7458","-2488","464","0","0" +"6418","290","0","1","-1196","29","178","0","0" +"6419","290","1","1","-1207","32","180","0","0" +"6420","290","2","1","-1260","37","185","0","0" +"6421","290","3","1","-1319","-22","171","0","0" +"6422","290","4","1","-1327","-125","128","0","0" +"6423","290","5","1","-1241","-291","51","0","0" +"6424","290","6","1","-1101","-458","22","0","0" +"6425","290","7","1","-1087","-766","17","0","0" +"6426","290","8","1","-991","-1059","131","0","0" +"6427","290","9","1","-665","-1277","224","0","0" +"6428","290","10","1","-526","-1566","132","0","0" +"6429","290","11","1","-233","-1902","113","0","0" +"6430","290","12","1","-128","-2201","106","0","0" +"6431","290","13","1","32","-2365","106","0","0" +"6432","290","14","1","130","-2595","117","0","0" +"6433","290","15","1","465","-2778","103","0","0" +"6434","290","16","1","527","-3009","104","0","0" +"6435","290","17","1","418","-3231","105","0","0" +"6436","290","18","1","414","-3422","106","0","0" +"6437","290","19","1","546","-3562","122","0","0" +"6438","290","20","1","839","-3595","110","0","0" +"6439","290","21","1","988","-3737","54","0","0" +"6440","290","22","1","1320","-3851","48","0","0" +"6441","290","23","1","1607","-3854","93","0","0" +"6442","290","24","1","1952","-3677","73","0","0" +"6443","290","25","1","2305","-3645","64","0","0" +"6444","290","26","1","2589","-3738","56","0","0" +"6445","290","27","1","2800","-3766","69","0","0" +"6446","290","28","1","2971","-3933","86","0","0" +"6447","290","29","1","3208","-4068","118","0","0" +"6448","290","30","1","3398","-4124","154","0","0" +"6449","290","31","1","3529","-4210","153","0","0" +"6450","290","32","1","3608","-4370","127","0","0" +"9514","290","33","1","3661","-4390","115","0","0" +"6483","291","0","1","3661","-4390","114","0","0" +"6482","291","1","1","3662","-4387","115","0","0" +"6481","291","2","1","3662","-4377","118","0","0" +"6480","291","3","1","3658","-4306","144","0","0" +"6479","291","4","1","3558","-4202","153","0","0" +"6478","291","5","1","3398","-4124","154","0","0" +"6477","291","6","1","3137","-4035","142","0","0" +"6476","291","7","1","2938","-3909","123","0","0" +"6475","291","8","1","2788","-3790","108","0","0" +"6474","291","9","1","2535","-3719","91","0","0" +"6473","291","10","1","2228","-3682","82","0","0" +"6472","291","11","1","1825","-3731","96","0","0" +"6471","291","12","1","1613","-3892","34","0","0" +"6470","291","13","1","1340","-3787","128","0","0" +"6469","291","14","1","1198","-3554","137","0","0" +"6468","291","15","1","1069","-3069","143","0","0" +"6467","291","16","1","765","-2726","107","0","0" +"6466","291","17","1","665","-2271","106","0","0" +"6465","291","18","1","490","-2067","158","0","0" +"6464","291","19","1","247","-1717","108","0","0" +"6463","291","20","1","-29","-1527","109","0","0" +"6462","291","21","1","-427","-1456","192","0","0" +"6461","291","22","1","-653","-1306","225","0","0" +"6460","291","23","1","-806","-1075","200","0","0" +"6459","291","24","1","-774","-801","91","0","0" +"6458","291","25","1","-801","-403","103","0","0" +"6457","291","26","1","-896","-184","164","0","0" +"6456","291","27","1","-1032","-43","187","0","0" +"9528","291","28","1","-1145","14","185","0","0" +"9529","291","29","1","-1196","29","178","0","0" +"6484","292","0","0","-3609","309","0","0","0" +"6485","292","1","0","-3787","178","0","0","0" +"6486","292","2","0","-4037","15","0","0","0" +"6487","292","3","0","-4151","-165","0","0","0" +"6488","292","4","0","-4199","-372","0","0","0" +"6489","292","5","0","-4150","-531","0","0","0" +"6490","292","6","0","-4088","-599","0","0","0" +"6491","292","7","0","-3996","-611","0","0","0" +"6492","292","8","0","-3905","-585","0","2","60" +"6493","292","9","0","-3830","-528","0","0","0" +"6494","292","10","0","-3789","-421","0","0","0" +"6495","292","11","0","-3809","-232","0","0","0" +"6496","292","12","0","-3998","43","0","0","0" +"6497","292","13","0","-4025","376","0","0","0" +"6498","292","14","0","-4007","516","0","0","0" +"6499","292","15","1","-4301","-5731","0","0","0" +"6500","292","16","1","-4298","-5627","0","0","0" +"6501","292","17","1","-4284","-5067","0","0","0" +"6502","292","18","1","-4263","-4823","0","0","0" +"6503","292","19","1","-4201","-4718","0","0","0" +"6504","292","20","1","-4100","-4692","0","0","0" +"6505","292","21","1","-4016","-4740","0","2","60" +"6506","292","22","1","-3952","-4813","0","0","0" +"6507","292","23","1","-3927","-4889","0","0","0" +"6508","292","24","1","-3902","-5033","0","0","0" +"6509","292","25","1","-3816","-5148","0","0","0" +"6510","292","26","1","-3668","-5204","0","0","0" +"6511","292","27","1","-3476","-5208","0","0","0" +"6569","292","28","1","-3214","-5261","0","0","0" +"6570","292","29","1","-3157","-5280","0","0","0" +"6512","293","0","1","7685","1347","0","0","0" +"6513","293","1","1","7912","1340","0","0","0" +"6514","293","2","1","8293","1324","0","0","0" +"6515","293","3","1","8454","1251","0","0","0" +"6516","293","4","1","8519","1123","0","0","0" +"6517","293","5","1","8533","1025","0","2","60" +"6518","293","6","1","8519","935","0","0","0" +"6519","293","7","1","8460","855","0","0","0" +"6520","293","8","1","8348","803","0","0","0" +"6521","293","9","1","8138","764","0","0","0" +"6522","293","10","1","7917","752","0","0","0" +"6523","293","11","1","7612","747","0","0","0" +"6524","293","12","1","7304","650","0","0","0" +"6525","293","13","1","6968","577","0","0","0" +"6526","293","14","1","6765","564","0","0","0" +"6527","293","15","1","6655","588","0","0","0" +"6528","293","16","1","6592","672","0","0","0" +"6529","293","17","1","6594","759","0","2","60" +"6530","293","18","1","6638","840","0","0","0" +"6531","293","19","1","6716","913","0","0","0" +"6532","293","20","1","6833","991","0","0","0" +"6533","293","21","1","6983","1077","0","0","0" +"6534","293","22","1","7226","1200","0","0","0" +"6535","293","23","1","7466","1296","0","0","0" +"6536","293","24","1","7665","1346","0","0","0" +"6537","295","0","0","-2963","-92","0","0","0" +"6538","295","1","0","-3037","-222","0","0","0" +"6539","295","2","0","-3286","-481","0","0","0" +"6540","295","3","0","-3421","-588","0","0","0" +"6541","295","4","0","-3523","-628","0","0","0" +"6542","295","5","0","-3600","-643","0","0","0" +"6543","295","6","0","-3663","-625","0","0","0" +"6544","295","7","0","-3709","-575","0","2","60" +"6545","295","8","0","-3739","-494","0","0","0" +"6546","295","9","0","-3725","-388","0","0","0" +"6547","295","10","0","-3628","-291","0","0","0" +"6548","295","11","0","-3474","-273","0","0","0" +"6549","295","12","0","-3193","-369","0","0","0" +"6550","295","13","0","-2979","-392","0","0","0" +"6551","295","14","0","-2866","-390","0","0","0" +"6552","295","15","1","5808","1312","0","0","0" +"6553","295","16","1","5807","1240","0","0","0" +"6554","295","17","1","5837","1115","0","0","0" +"6555","295","18","1","5904","961","0","0","0" +"6556","295","19","1","5981","840","0","0","0" +"6557","295","20","1","6077","746","0","0","0" +"6558","295","21","1","6189","702","0","0","0" +"6559","295","22","1","6299","698","0","0","0" +"6560","295","23","1","6376","761","0","0","0" +"6561","295","24","1","6406","823","0","2","60" +"6562","295","25","1","6417","893","0","0","0" +"6563","295","26","1","6402","986","0","0","0" +"6564","295","27","1","6338","1072","0","0","0" +"6565","295","28","1","6240","1135","0","0","0" +"6566","295","29","1","6113","1173","0","0","0" +"6567","295","30","1","6009","1178","0","0","0" +"6568","295","31","1","5868","1178","0","0","0" +"6639","298","0","1","6798","-4742","702","0","0" +"6638","298","1","1","6803","-4738","703","0","0" +"6637","298","2","1","6819","-4721","704","0","0" +"6636","298","3","1","6835","-4688","712","0","0" +"6635","298","4","1","6850","-4565","749","0","0" +"6634","298","5","1","6796","-4496","764","0","0" +"6633","298","6","1","6564","-4383","768","0","0" +"6632","298","7","1","6609","-4052","701","0","0" +"6631","298","8","1","6502","-3652","752","0","0" +"6630","298","9","1","6466","-3291","692","0","0" +"6629","298","10","1","6504","-2981","655","0","0" +"6628","298","11","1","6589","-2822","639","0","0" +"6627","298","12","1","6765","-2682","641","0","0" +"6626","298","13","1","6943","-2622","693","0","0" +"6625","298","14","1","6991","-2590","695","0","0" +"6624","298","15","1","7102","-2621","698","0","0" +"6623","298","16","1","7233","-2656","654","0","0" +"6622","298","17","1","7379","-2659","559","0","0" +"6621","298","18","1","7561","-2633","517","0","0" +"9199","298","19","1","7658","-2584","495","0","0" +"9200","298","20","1","7618","-2504","485","0","0" +"9205","298","21","1","7567","-2467","479","0","0" +"9688","298","22","1","7487","-2483","464","0","0" +"9689","298","23","1","7456","-2488","464","0","0" +"6704","301","0","0","-12326","1460","-53","0","0" +"6705","301","1","0","-12332","1353","117","0","0" +"6706","301","2","0","-12311","1121","113","0","0" +"6707","301","3","0","-12318","819","153","0","0" +"6708","301","4","0","-12381","424","105","0","0" +"6709","301","5","0","-12406","211","49","2","60" +"6710","301","6","0","-12366","34","91","0","0" +"6711","301","7","0","-12302","-85","139","0","0" +"6712","301","8","0","-12184","-257","155","0","0" +"6713","301","9","0","-12007","-390","170","0","0" +"6714","301","10","0","-11704","-408","190","0","0" +"6715","301","11","0","-11440","-401","210","0","0" +"6716","301","12","0","-11372","-402","214","1","0" +"6717","301","13","0","2299","-1001","275","0","0" +"6718","301","14","0","2301","-944","266","0","0" +"6719","301","15","0","2302","-821","252","0","0" +"6720","301","16","0","2311","-510","226","0","0" +"6721","301","17","0","2298","-207","181","0","0" +"6722","301","18","0","2258","-39","150","0","0" +"6723","301","19","0","2199","102","126","0","0" +"6724","301","20","0","2130","200","118","0","0" +"6725","301","21","0","2062","235","117","2","60" +"6726","301","22","0","1998","229","115","0","0" +"6727","301","23","0","1954","158","117","0","0" +"6728","301","24","0","1937","87","120","0","0" +"6729","301","25","0","1918","-28","134","0","0" +"6730","301","26","0","1914","-217","157","0","0" +"6739","301","27","0","1820","-478","201","0","0" +"6776","301","28","0","1797","-536","211","0","0" +"6740","302","0","1","1320","-5755","71","0","0" +"6741","302","1","1","1334","-5686","71","0","0" +"6742","302","2","1","1362","-5460","71","0","0" +"6743","302","3","1","1336","-5170","71","0","0" +"6744","302","4","1","1277","-4934","71","0","0" +"6745","302","5","1","1297","-4773","71","0","0" +"6746","302","6","1","1309","-4707","71","0","0" +"6747","302","7","1","1318","-4658","71","2","60" +"6748","302","8","1","1311","-4599","71","0","0" +"6749","302","9","1","1295","-4555","71","0","0" +"6750","302","10","1","1263","-4536","71","0","0" +"6751","302","11","1","1223","-4564","71","0","0" +"6752","302","12","1","1218","-4625","71","0","0" +"6753","302","13","1","1238","-4700","71","0","0" +"6754","302","14","1","1255","-4831","71","0","0" +"6755","302","15","1","1267","-4961","71","0","0" +"6756","302","16","1","1268","-5140","71","0","0" +"6757","302","17","1","1256","-5370","71","0","0" +"6758","302","18","1","1260","-5494","71","0","0" +"6759","302","19","0","3170","1873","119","0","0" +"6760","302","20","0","3049","1769","125","0","0" +"6761","302","21","0","2731","1577","145","0","0" +"6762","302","22","0","2318","1226","153","0","0" +"6763","302","23","0","2123","1023","153","0","0" +"6764","302","24","0","1988","779","153","0","0" +"6765","302","25","0","1949","599","153","0","0" +"6766","302","26","0","1945","465","130","0","0" +"6767","302","27","0","1988","342","119","0","0" +"6768","302","28","0","2062","292","114","2","60" +"6769","302","29","0","2201","283","120","0","0" +"6770","302","30","0","2437","270","142","0","0" +"6771","302","31","0","2711","264","152","0","0" +"6772","302","32","0","2906","206","152","0","0" +"6773","302","33","0","3117","269","140","0","0" +"6774","302","34","0","3218","362","125","0","0" +"6775","302","35","0","3247","417","118","0","0" +"6816","303","0","1","-4195","3466","0","0","0" +"6817","303","1","1","-4197","3286","0","2","30" +"6818","303","2","1","-4196","3066","0","0","0" +"6819","303","3","1","-4199","2899","0","0","0" +"6820","303","4","1","-4237","2588","0","0","0" +"6821","303","5","1","-4267","2483","0","0","0" +"6822","303","6","1","-4347","2444","0","2","60" +"6823","303","7","1","-4448","2476","0","0","0" +"6824","303","8","1","-4623","2579","0","0","0" +"6825","303","9","1","-4905","2778","0","0","0" +"6826","303","10","1","-5053","2970","0","0","0" +"6827","303","11","1","-5121","3185","0","0","0" +"6828","303","12","1","-5130","3471","0","0","0" +"6829","303","13","1","-5089","3705","0","0","0" +"6830","303","14","1","-5009","3853","0","0","0" +"6831","303","15","1","-4880","3939","0","0","0" +"6832","303","16","1","-4693","3962","0","0","0" +"6833","303","17","1","-4417","3903","0","0","0" +"6834","303","18","1","-4196","3783","0","0","0" +"6835","303","19","1","-4195","3466","0","0","0" +"12892","303","20","1","-4197","3286","0","2","30" +"12893","303","21","1","-4196","3066","0","0","0" +"9088","304","0","1","-3142","-2843","35","0","0" +"9089","304","1","1","-3136","-2847","35","0","0" +"9090","304","2","1","-3128","-2855","38","0","0" +"9091","304","3","1","-3119","-2880","49","0","0" +"9092","304","4","1","-3129","-2914","63","0","0" +"9093","304","5","1","-3176","-2950","78","0","0" +"9094","304","6","1","-3315","-2948","93","0","0" +"9095","304","7","1","-3538","-2862","94","0","0" +"9096","304","8","1","-3683","-2734","94","0","0" +"9097","304","9","1","-3728","-2531","100","0","0" +"9098","304","10","1","-3608","-2251","114","0","0" +"9099","304","11","1","-3394","-2148","115","0","0" +"9100","304","12","1","-3181","-2216","114","0","0" +"9101","304","13","1","-3027","-2086","116","0","0" +"9102","304","14","1","-2765","-2012","130","0","0" +"9103","304","15","1","-2480","-2049","125","0","0" +"9104","304","16","1","-2321","-2054","125","0","0" +"9105","304","17","1","-2169","-1946","118","0","0" +"9106","304","18","1","-2032","-1920","116","0","0" +"9107","304","19","1","-1836","-1962","128","0","0" +"9108","304","20","1","-1634","-2098","119","0","0" +"9110","304","21","1","-1370","-2032","120","0","0" +"9111","304","22","1","-1182","-2254","138","0","0" +"9112","304","23","1","-726","-2418","145","0","0" +"9113","304","24","1","-514","-2451","128","0","0" +"9114","304","25","1","-429","-2520","124","0","0" +"9115","304","26","1","-415","-2551","117","0","0" +"9116","304","27","1","-439","-2599","97","0","0" +"8661","305","0","1","3373","999","6","0","0" +"8662","305","1","1","3376","998","6","0","0" +"8663","305","2","1","3390","995","8","0","0" +"8664","305","3","1","3460","975","16","0","0" +"8665","305","4","1","3530","916","22","0","0" +"8666","305","5","1","3557","828","25","0","0" +"8667","305","6","1","3503","706","23","0","0" +"8668","305","7","1","3518","579","19","0","0" +"8669","305","8","1","3496","506","15","0","0" +"8670","305","9","1","3422","419","22","0","0" +"8671","305","10","1","3327","331","18","0","0" +"8672","305","11","1","3273","223","22","0","0" +"8673","305","12","1","3202","197","26","0","0" +"8674","305","13","1","3099","222","45","0","0" +"8675","305","14","1","3015","168","72","0","0" +"8676","305","15","1","2901","188","98","0","0" +"8677","305","16","1","2830","160","111","0","0" +"8678","305","17","1","2811","94","113","0","0" +"8679","305","18","1","2859","-33","110","0","0" +"8680","305","19","1","2870","-150","113","0","0" +"8681","305","20","1","2844","-254","119","0","0" +"8682","305","21","1","2864","-363","111","0","0" +"8683","305","22","1","2839","-460","111","0","0" +"8684","305","23","1","2750","-535","117","0","0" +"8685","305","24","1","2622","-600","123","0","0" +"8686","305","25","1","2506","-632","126","0","0" +"8687","305","26","1","2475","-696","133","0","0" +"8688","305","27","1","2486","-829","147","0","0" +"8689","305","28","1","2519","-926","143","0","0" +"8690","305","29","1","2503","-1090","139","0","0" +"8691","305","30","1","2464","-1196","133","0","0" +"8692","305","31","1","2457","-1306","140","0","0" +"8693","305","32","1","2382","-1470","133","0","0" +"8694","305","33","1","2353","-1612","133","0","0" +"8695","305","34","1","2287","-1708","128","0","0" +"8696","305","35","1","2058","-1865","108","0","0" +"8697","305","36","1","1990","-1941","107","0","0" +"8698","305","37","1","1863","-1970","122","0","0" +"8699","305","38","1","1759","-1952","113","0","0" +"8700","305","39","1","1666","-1976","117","0","0" +"8728","305","40","1","1575","-2119","106","0","0" +"8729","305","41","1","1494","-2172","101","0","0" +"8730","305","42","1","1327","-2150","111","0","0" +"8731","305","43","1","1198","-2150","165","0","0" +"8732","305","44","1","1128","-2198","176","0","0" +"8733","305","45","1","986","-2256","133","0","0" +"8734","305","46","1","867","-2332","123","0","0" +"8735","305","47","1","743","-2332","108","0","0" +"8736","305","48","1","654","-2321","120","0","0" +"8737","305","49","1","565","-2304","147","0","0" +"8738","305","50","1","441","-2292","209","0","0" +"8739","305","51","1","338","-2308","248","0","0" +"8740","305","52","1","231","-2371","214","0","0" +"8741","305","53","1","106","-2520","138","0","0" +"8742","305","54","1","-91","-2578","126","0","0" +"8743","305","55","1","-238","-2502","142","0","0" +"8744","305","56","1","-338","-2493","136","0","0" +"8745","305","57","1","-410","-2535","120","0","0" +"8746","305","58","1","-442","-2599","98","0","0" +"6837","306","0","1","6812","-4611","711","0","0" +"6838","306","1","1","6829","-4571","730","0","0" +"6839","306","2","1","6893","-4484","763","0","0" +"6840","306","3","1","6905","-4299","773","0","0" +"6841","306","4","1","6873","-4144","745","0","0" +"6842","306","5","1","6883","-3926","745","0","0" +"6843","306","6","1","6818","-3772","756","0","0" +"6844","306","7","1","6565","-3533","756","0","0" +"6845","306","8","1","6483","-3276","665","0","0" +"6846","306","9","1","6475","-3015","650","0","0" +"6847","306","10","1","6379","-2824","661","0","0" +"6848","306","11","1","6453","-2563","643","0","0" +"6849","306","12","1","6418","-2370","640","0","0" +"6850","306","13","1","6460","-2253","654","0","0" +"6851","306","14","1","6409","-2138","658","0","0" +"6852","306","15","1","6416","-1997","618","0","0" +"6853","306","16","1","6487","-1891","603","0","0" +"6854","306","17","1","6430","-1734","576","0","0" +"6855","306","18","1","6427","-1589","527","0","0" +"6856","306","19","1","6520","-1414","488","0","0" +"6857","306","20","1","6546","-1248","482","0","0" +"6858","306","21","1","6495","-1068","499","0","0" +"6859","306","22","1","6395","-860","522","0","0" +"6860","306","23","1","6293","-754","511","0","0" +"6861","306","24","1","6096","-724","483","0","0" +"6862","306","25","1","5923","-668","458","0","0" +"6863","306","26","1","5716","-659","422","0","0" +"6864","306","27","1","5601","-735","424","0","0" +"6865","306","28","1","5357","-769","411","0","0" +"6866","306","29","1","5258","-693","408","0","0" +"6867","306","30","1","5241","-428","401","0","0" +"6868","306","31","1","5156","-326","391","0","0" +"6869","306","32","1","5093","-320","380","0","0" +"6870","306","33","1","5068","-338","368","0","0" +"6906","307","0","1","5071","-336","368","0","0" +"6905","307","1","1","5070","-326","368","0","0" +"6904","307","2","1","5076","-291","369","0","0" +"6903","307","3","1","5116","-233","371","0","0" +"6902","307","4","1","5182","-233","363","0","0" +"6901","307","5","1","5264","-310","341","0","0" +"6900","307","6","1","5256","-440","334","0","0" +"6899","307","7","1","5267","-569","329","0","0" +"6898","307","8","1","5276","-696","349","0","0" +"6897","307","9","1","5307","-760","378","0","0" +"6896","307","10","1","5404","-787","404","0","0" +"6895","307","11","1","5577","-974","436","0","0" +"6894","307","12","1","5623","-1099","479","0","0" +"6893","307","13","1","5775","-1217","492","0","0" +"6892","307","14","1","6023","-1246","459","0","0" +"6891","307","15","1","6262","-1430","442","0","0" +"6890","307","16","1","6347","-1579","496","0","0" +"6889","307","17","1","6484","-1690","533","0","0" +"6888","307","18","1","6535","-1788","595","0","0" +"6887","307","19","1","6519","-1949","618","0","0" +"6886","307","20","1","6621","-2086","657","0","0" +"6885","307","21","1","6636","-2161","658","0","0" +"6884","307","22","1","6683","-2287","644","0","0" +"6883","307","23","1","6690","-2488","613","0","0" +"6882","307","24","1","6768","-2806","653","0","0" +"6881","307","25","1","6663","-3097","669","0","0" +"6907","307","26","1","6515","-3247","650","0","0" +"6908","307","27","1","6458","-3662","779","0","0" +"6909","307","28","1","6540","-4017","723","0","0" +"6910","307","29","1","6566","-4391","748","0","0" +"6911","307","30","1","6570","-4556","758","0","0" +"6912","307","31","1","6719","-4598","733","0","0" +"6913","307","32","1","6809","-4606","712","0","0" +"6916","308","0","1","-5408","-2415","90","0","0" +"6917","308","1","1","-5414","-2413","91","0","0" +"6918","308","2","1","-5455","-2401","104","0","0" +"6919","308","3","1","-5526","-2395","98","0","0" +"6920","308","4","1","-5565","-2499","94","0","0" +"6921","308","5","1","-5505","-2769","65","0","0" +"6922","308","6","1","-5461","-2896","54","0","0" +"6923","308","7","1","-5474","-2991","47","0","0" +"6924","308","8","1","-5552","-3120","38","0","0" +"6925","308","9","1","-5563","-3302","18","0","0" +"6926","308","10","1","-5702","-3445","-8","0","0" +"6927","308","11","1","-5960","-3516","-36","0","0" +"6928","308","12","1","-6197","-3559","-42","0","0" +"6929","308","13","1","-6455","-3521","-39","0","0" +"6930","308","14","1","-6646","-3672","-35","0","0" +"6931","308","15","1","-6756","-3699","-2","0","0" +"6932","308","16","1","-6801","-3747","37","0","0" +"6933","308","17","1","-6882","-3760","76","0","0" +"6934","308","18","1","-6950","-3727","63","0","0" +"6935","308","19","1","-7022","-3750","30","0","0" +"6936","308","20","1","-7049","-3780","11","0","0" +"6938","309","0","1","-1198","30","180","0","0" +"6939","309","1","1","-1201","30","181","0","0" +"6940","309","2","1","-1214","34","183","0","0" +"6941","309","3","1","-1263","51","183","0","0" +"6942","309","4","1","-1309","6","164","0","0" +"6943","309","5","1","-1381","-198","69","0","0" +"6944","309","6","1","-1733","-267","6","0","0" +"6945","309","7","1","-1965","-367","9","0","0" +"6946","309","8","1","-2251","-382","35","0","0" +"6947","309","9","1","-2368","-471","29","0","0" +"6948","309","10","1","-2386","-665","4","0","0" +"6949","309","11","1","-2328","-830","8","0","0" +"6950","309","12","1","-2493","-1036","8","0","0" +"6951","309","13","1","-2523","-1303","11","0","0" +"6952","309","14","1","-2460","-1533","123","0","0" +"6953","309","15","1","-2460","-1650","135","0","0" +"6954","309","16","1","-2518","-1787","100","0","0" +"6955","309","17","1","-2737","-1955","106","0","0" +"6956","309","18","1","-2932","-2012","99","0","0" +"6957","309","19","1","-3130","-2048","100","0","0" +"6958","309","20","1","-3425","-2008","112","0","0" +"6959","309","21","1","-3753","-2053","99","0","0" +"6960","309","22","1","-3993","-2038","105","0","0" +"6961","309","23","1","-4134","-1966","100","0","0" +"6962","309","24","1","-4227","-1894","99","0","0" +"6963","309","25","1","-4383","-1890","95","0","0" +"6964","309","26","1","-4523","-1854","102","0","0" +"6965","309","27","1","-4623","-1875","93","0","0" +"6966","309","28","1","-4772","-1978","35","0","0" +"6967","309","29","1","-4864","-2109","28","0","0" +"6968","309","30","1","-5049","-2214","29","0","0" +"6969","309","31","1","-5181","-2415","55","0","0" +"6970","309","32","1","-5347","-2490","65","0","0" +"6971","309","33","1","-5444","-2564","70","0","0" +"6972","309","34","1","-5500","-2661","68","0","0" +"6973","309","35","1","-5505","-2769","65","0","0" +"6974","309","36","1","-5461","-2896","54","0","0" +"6975","309","37","1","-5474","-2991","47","0","0" +"6976","309","38","1","-5552","-3120","38","0","0" +"6977","309","39","1","-5563","-3302","18","0","0" +"6978","309","40","1","-5702","-3445","-8","0","0" +"6979","309","41","1","-5960","-3516","-36","0","0" +"6980","309","42","1","-6197","-3559","-42","0","0" +"6981","309","43","1","-6455","-3521","-39","0","0" +"6982","309","44","1","-6646","-3672","-35","0","0" +"6983","309","45","1","-6756","-3699","-2","0","0" +"6984","309","46","1","-6801","-3747","37","0","0" +"6985","309","47","1","-6882","-3760","76","0","0" +"6986","309","48","1","-6950","-3727","63","0","0" +"6987","309","49","1","-7022","-3750","30","0","0" +"9510","309","50","1","-7049","-3780","11","0","0" +"7016","310","0","1","-7049","-3781","11","0","0" +"7015","310","1","1","-7066","-3773","16","0","0" +"7014","310","2","1","-7084","-3746","23","0","0" +"7013","310","3","1","-7088","-3693","36","0","0" +"7012","310","4","1","-7038","-3648","51","0","0" +"7011","310","5","1","-6894","-3746","72","0","0" +"7010","310","6","1","-6797","-3735","27","0","0" +"7009","310","7","1","-6688","-3686","-21","0","0" +"7008","310","8","1","-6484","-3642","-38","0","0" +"7007","310","9","1","-6201","-3600","-42","0","0" +"7006","310","10","1","-5934","-3501","-36","0","0" +"7005","310","11","1","-5772","-3300","-15","0","0" +"7004","310","12","1","-5716","-3116","7","0","0" +"7003","310","13","1","-5598","-2940","18","0","0" +"7002","310","14","1","-5534","-2757","33","0","0" +"7001","310","15","1","-5456","-2530","96","0","0" +"7000","310","16","1","-5423","-2456","105","0","0" +"9211","310","17","1","-5408","-2416","92","0","0" +"7017","311","0","1","-7049","-3780","11","0","0" +"7018","311","1","1","-7067","-3771","15","0","0" +"7019","311","2","1","-7092","-3730","25","0","0" +"7020","311","3","1","-7088","-3689","36","0","0" +"7021","311","4","1","-7029","-3654","49","0","0" +"7022","311","5","1","-6894","-3746","72","0","0" +"7023","311","6","1","-6797","-3735","27","0","0" +"7024","311","7","1","-6688","-3686","-21","0","0" +"7025","311","8","1","-6484","-3642","-38","0","0" +"7026","311","9","1","-6201","-3600","-42","0","0" +"7027","311","10","1","-5934","-3501","-36","0","0" +"7028","311","11","1","-5772","-3300","-15","0","0" +"7029","311","12","1","-5716","-3116","7","0","0" +"7030","311","13","1","-5598","-2940","18","0","0" +"7031","311","14","1","-5534","-2757","33","0","0" +"7032","311","15","1","-5494","-2565","67","0","0" +"7033","311","16","1","-5369","-2437","76","0","0" +"7034","311","17","1","-5337","-2273","72","0","0" +"7035","311","18","1","-5211","-2083","66","0","0" +"7036","311","19","1","-4985","-1987","64","0","0" +"7037","311","20","1","-4852","-1832","70","0","0" +"7038","311","21","1","-4729","-1809","81","0","0" +"7039","311","22","1","-4666","-1836","122","0","0" +"7040","311","23","1","-4533","-1867","102","0","0" +"7041","311","24","1","-4335","-1882","106","0","0" +"7042","311","25","1","-4159","-1899","115","0","0" +"7043","311","26","1","-4072","-1876","126","0","0" +"7044","311","27","1","-3952","-1886","142","0","0" +"7045","311","28","1","-3665","-1899","139","0","0" +"7046","311","29","1","-3328","-1793","133","0","0" +"7047","311","30","1","-3112","-1991","129","0","0" +"7048","311","31","1","-2737","-1953","133","0","0" +"7049","311","32","1","-2544","-1819","134","0","0" +"7050","311","33","1","-2460","-1532","122","0","0" +"7051","311","34","1","-2465","-1299","10","0","0" +"7052","311","35","1","-2425","-1200","0","0","0" +"7053","311","36","1","-2416","-1033","-1","0","0" +"7054","311","37","1","-2402","-831","40","0","0" +"7055","311","38","1","-2396","-615","-1","0","0" +"7056","311","39","1","-2366","-467","18","0","0" +"7057","311","40","1","-2332","-364","37","0","0" +"7058","311","41","1","-2166","-167","29","0","0" +"7059","311","42","1","-1817","93","44","0","0" +"7060","311","43","1","-1440","263","56","0","0" +"7061","311","44","1","-1180","213","138","0","0" +"7062","311","45","1","-1119","123","171","0","0" +"7063","311","46","1","-1122","36","190","0","0" +"7064","311","47","1","-1181","27","180","0","0" +"7065","311","48","1","-1196","30","180","0","0" +"7076","312","0","30","574","-47","38","0","0" +"7077","312","1","30","566","-39","39","0","0" +"7078","312","2","30","541","-34","46","0","0" +"7079","312","3","30","443","-40","60","0","0" +"7080","312","4","30","362","-9","91","0","0" +"7081","312","5","30","286","55","132","0","0" +"7082","312","6","30","252","116","154","0","0" +"7083","312","7","0","-3938","-1564","539","0","0" +"7084","312","8","0","-3980","-1574","539","0","0" +"7085","312","9","0","-4231","-1626","539","0","0" +"7086","312","10","0","-4505","-1641","539","0","0" +"7087","312","11","0","-4719","-1647","539","0","0" +"7088","312","12","0","-4850","-1692","542","0","0" +"7089","312","13","0","-4990","-1705","542","0","0" +"7090","312","14","0","-5228","-1630","542","0","0" +"7091","312","15","0","-5400","-1575","527","0","0" +"7092","312","16","0","-5517","-1505","504","0","0" +"7093","312","17","0","-5619","-1350","464","0","0" +"7094","312","18","0","-5641","-1172","458","0","0" +"7095","312","19","0","-5507","-911","471","0","0" +"7096","312","20","0","-5290","-774","471","0","0" +"7097","312","21","0","-5150","-749","516","0","0" +"7098","312","22","0","-5028","-830","508","0","0" +"7099","312","23","0","-4964","-902","545","0","0" +"7100","312","24","0","-4952","-961","542","0","0" +"7101","312","25","0","-4925","-1002","542","0","0" +"7102","312","26","0","-4841","-1062","552","0","0" +"7103","312","27","0","-4794","-1058","553","0","0" +"7104","312","28","0","-4749","-1092","532","0","0" +"7105","312","29","0","-4767","-1142","516","0","0" +"9052","312","30","0","-4822","-1157","503","0","0" +"7070","313","0","30","-1335","-319","91","0","0" +"7071","313","1","30","-1338","-320","93","0","0" +"7072","313","2","30","-1346","-324","97","0","0" +"7073","313","3","30","-1361","-332","107","0","0" +"7074","313","4","30","-1374","-389","117","0","0" +"7075","313","5","30","-1327","-495","129","0","0" +"9369","313","6","30","-1305","-681","146","0","0" +"9370","313","7","30","-1301","-765","159","0","0" +"7136","314","0","0","-4822","-1157","503","0","0" +"7135","314","1","0","-4819","-1156","504","0","0" +"7134","314","2","0","-4799","-1153","510","0","0" +"7133","314","3","0","-4767","-1142","516","0","0" +"7132","314","4","0","-4749","-1092","532","0","0" +"7131","314","5","0","-4794","-1058","553","0","0" +"7130","314","6","0","-4841","-1062","552","0","0" +"7129","314","7","0","-4925","-1002","542","0","0" +"7128","314","8","0","-4952","-961","542","0","0" +"7127","314","9","0","-4964","-902","545","0","0" +"7126","314","10","0","-5028","-830","508","0","0" +"7125","314","11","0","-5150","-749","516","0","0" +"7124","314","12","0","-5290","-774","471","0","0" +"7123","314","13","0","-5507","-911","471","0","0" +"7122","314","14","0","-5641","-1172","458","0","0" +"7121","314","15","0","-5619","-1350","464","0","0" +"7120","314","16","0","-5517","-1505","504","0","0" +"7119","314","17","0","-5400","-1575","527","0","0" +"7118","314","18","0","-5228","-1630","542","0","0" +"7117","314","19","0","-4990","-1705","542","0","0" +"7116","314","20","0","-4850","-1692","542","0","0" +"7115","314","21","0","-4719","-1647","539","0","0" +"7114","314","22","0","-4505","-1641","539","0","0" +"7113","314","23","0","-4231","-1626","539","0","0" +"7112","314","24","0","-3980","-1574","539","0","0" +"7111","314","25","0","-3938","-1564","539","1","0" +"7110","314","26","30","252","116","154","0","0" +"7109","314","27","30","286","55","132","0","0" +"7108","314","28","30","362","-9","91","0","0" +"7107","314","29","30","443","-40","60","0","0" +"9371","314","30","30","541","-34","46","0","0" +"9373","314","31","30","574","-47","39","0","0" +"7146","315","0","1","7795","-2403","490","0","0" +"7147","315","1","1","7786","-2401","492","0","0" +"7148","315","2","1","7765","-2394","495","0","0" +"7149","315","3","1","7728","-2370","500","0","0" +"7150","315","4","1","7697","-2311","494","0","0" +"7151","315","5","1","7686","-2218","503","0","0" +"7152","315","6","1","7682","-2151","523","0","0" +"7153","315","7","1","7654","-2078","564","0","0" +"7154","315","8","1","7682","-1999","596","0","0" +"7163","315","9","1","7717","-1967","608","0","0" +"7164","315","10","1","7761","-1936","572","0","0" +"7165","315","11","1","7757","-1828","507","0","0" +"7166","315","12","1","7644","-1677","444","0","0" +"7167","315","13","1","7494","-1701","387","0","0" +"7168","315","14","1","7393","-1650","260","0","0" +"7169","315","15","1","7328","-1552","189","0","0" +"7170","315","16","1","7369","-1493","168","0","0" +"7171","315","17","1","7387","-1394","243","0","0" +"7172","315","18","1","7407","-1318","204","0","0" +"7173","315","19","1","7390","-1247","183","0","0" +"7174","315","20","1","7342","-1214","140","0","0" +"7175","315","21","1","7347","-1148","102","0","0" +"7176","315","22","1","7413","-1097","57","0","0" +"7177","315","23","1","7511","-1066","50","0","0" +"7178","315","24","1","7546","-923","35","0","0" +"7193","315","25","1","7560","-770","25","0","0" +"7194","315","26","1","7793","-654","5","0","0" +"7195","315","27","1","7915","-132","69","0","0" +"7196","315","28","1","8199","611","80","0","0" +"9425","315","29","1","8381","831","80","0","0" +"9427","315","30","1","8645","844","25","0","0" +"7137","316","0","1","7787","-2404","490","0","0" +"7138","316","1","1","7780","-2398","492","0","0" +"7139","316","2","1","7762","-2384","497","0","0" +"7140","316","3","1","7736","-2343","512","0","0" +"7141","316","4","1","7737","-2260","542","0","0" +"7142","316","5","1","7630","-2137","575","0","0" +"7143","316","6","1","7547","-1995","598","0","0" +"7144","316","7","1","7543","-1862","548","0","0" +"7145","316","8","1","7458","-1780","476","0","0" +"7155","316","9","1","7419","-1691","385","0","0" +"7156","316","10","1","7389","-1554","208","0","0" +"7157","316","11","1","7402","-1375","241","0","0" +"7158","316","12","1","7486","-1124","194","0","0" +"7159","316","13","1","7368","-984","145","0","0" +"7160","316","14","1","7282","-804","91","0","0" +"7161","316","15","1","7269","-653","74","0","0" +"7162","316","16","1","7292","-469","80","0","0" +"7179","316","17","1","7383","-275","23","0","0" +"7180","316","18","1","7399","-107","21","0","0" +"7181","316","19","1","7341","120","25","0","0" +"7182","316","20","1","7151","390","9","0","0" +"7183","316","21","1","6944","497","15","0","0" +"7184","316","22","1","6437","620","55","0","0" +"7185","316","23","1","6223","659","8","0","0" +"7186","316","24","1","5639","756","13","0","0" +"7187","316","25","1","5337","906","9","0","0" +"7188","316","26","1","5105","797","9","0","0" +"7189","316","27","1","4860","815","19","0","0" +"7190","316","28","1","4614","919","17","0","0" +"7191","316","29","1","4300","1231","23","0","0" +"7192","316","30","1","3952","1337","8","0","0" +"7197","316","31","1","3432","1565","5","0","0" +"7198","316","32","1","3418","1918","9","0","0" +"7199","316","33","1","3343","2169","52","0","0" +"7200","316","34","1","3136","2403","121","0","0" +"7201","316","35","1","2899","2445","204","0","0" +"7202","316","36","1","2749","2138","292","0","0" +"7203","316","37","1","2727","1916","389","0","0" +"7204","316","38","1","2653","1780","428","0","0" +"7205","316","39","1","2493","1703","416","0","0" +"7206","316","40","1","2354","1566","402","0","0" +"7207","316","41","1","2193","1451","384","0","0" +"7208","316","42","1","2065","1400","368","0","0" +"7209","316","43","1","1890","1364","231","0","0" +"7210","316","44","1","1715","1229","291","0","0" +"7211","316","45","1","1614","1066","227","0","0" +"7212","316","46","1","1582","937","186","0","0" +"7213","316","47","1","1505","794","183","0","0" +"7214","316","48","1","1434","732","180","0","0" +"7215","316","49","1","1301","731","227","0","0" +"7216","316","50","1","1212","686","233","0","0" +"7217","316","51","1","1085","676","219","0","0" +"7218","316","52","1","964","726","200","0","0" +"7219","316","53","1","829","647","169","0","0" +"7220","316","54","1","808","406","137","0","0" +"7221","316","55","1","623","288","123","0","0" +"7222","316","56","1","517","277","128","0","0" +"7223","316","57","1","363","309","118","0","0" +"7224","316","58","1","244","283","112","0","0" +"7225","316","59","1","176","139","88","0","0" +"7226","316","60","1","102","-59","76","0","0" +"7227","316","61","1","46","-206","77","0","0" +"7228","316","62","1","-105","-335","77","0","0" +"7229","316","63","1","-124","-653","73","0","0" +"7230","316","64","1","-293","-915","79","0","0" +"7231","316","65","1","-276","-1142","90","0","0" +"7232","316","66","1","-382","-1295","127","0","0" +"7233","316","67","1","-498","-1266","165","0","0" +"7234","316","68","1","-663","-1258","232","0","0" +"7235","316","69","1","-845","-1158","182","0","0" +"7236","316","70","1","-926","-995","102","0","0" +"7237","316","71","1","-1047","-738","19","0","0" +"7238","316","72","1","-1092","-478","26","0","0" +"7239","316","73","1","-1181","-274","108","0","0" +"7240","316","74","1","-1071","-149","159","0","0" +"7241","316","75","1","-1046","-47","186","0","0" +"9421","316","76","1","-1087","5","190","0","0" +"9422","316","77","1","-1197","29","178","0","0" +"7242","317","0","0","-6630","-2187","245","0","0" +"7243","317","1","0","-6651","-2191","249","0","0" +"7244","317","2","0","-6703","-2201","264","0","0" +"7245","317","3","0","-6777","-2215","281","0","0" +"7246","317","4","0","-6887","-2207","292","0","0" +"7247","317","5","0","-6944","-2058","303","0","0" +"7248","317","6","0","-6899","-1845","284","0","0" +"7249","317","7","0","-6825","-1664","264","0","0" +"7250","317","8","0","-6891","-1512","255","0","0" +"7251","317","9","0","-7094","-1504","274","0","0" +"7252","317","10","0","-7378","-1601","332","0","0" +"7253","317","11","0","-7606","-1584","246","0","0" +"7254","317","12","0","-7811","-1571","173","0","0" +"7255","317","13","0","-7939","-1698","154","0","0" +"7256","317","14","0","-8016","-2034","164","0","0" +"7257","317","15","0","-8075","-2308","190","0","0" +"7258","317","16","0","-8175","-2525","155","0","0" +"7259","317","17","0","-8398","-2546","153","0","0" +"7260","317","18","0","-8561","-2559","164","0","0" +"7261","317","19","0","-8872","-2613","186","0","0" +"7262","317","20","0","-9037","-2668","166","0","0" +"7263","317","21","0","-9256","-2600","134","0","0" +"7264","317","22","0","-9503","-2398","81","0","0" +"7265","317","23","0","-9570","-2187","102","0","0" +"7266","317","24","0","-9621","-2017","76","0","0" +"7267","317","25","0","-9753","-1818","60","0","0" +"7268","317","26","0","-9849","-1662","83","0","0" +"7269","317","27","0","-9979","-1470","112","0","0" +"7270","317","28","0","-10204","-1339","165","0","0" +"7271","317","29","0","-10371","-1421","166","0","0" +"7272","317","30","0","-10455","-1596","123","0","0" +"7273","317","31","0","-10435","-1878","154","0","0" +"7274","317","32","0","-10493","-2043","176","0","0" +"7275","317","33","0","-10567","-2116","143","0","0" +"7276","317","34","0","-10584","-2184","103","0","0" +"7277","317","35","0","-10554","-2317","102","0","0" +"7278","317","36","0","-10535","-2413","107","0","0" +"7279","317","37","0","-10417","-2559","72","0","0" +"7280","317","38","0","-10338","-2699","87","0","0" +"7281","317","39","0","-10214","-2963","89","0","0" +"7282","317","40","0","-10213","-3334","72","0","0" +"7283","317","41","0","-10332","-3411","72","0","0" +"7284","317","42","0","-10419","-3362","72","0","0" +"7285","317","43","0","-10435","-3290","27","0","0" +"7286","317","44","0","-10458","-3279","22","0","0" +"7339","318","0","0","-10456","-3279","22","0","0" +"7338","318","1","0","-10459","-3280","24","0","0" +"7337","318","2","0","-10475","-3282","31","0","0" +"7336","318","3","0","-10510","-3279","39","0","0" +"7335","318","4","0","-10513","-3213","31","0","0" +"7334","318","5","0","-10442","-3108","29","0","0" +"7333","318","6","0","-10351","-2982","28","0","0" +"7332","318","7","0","-10357","-2901","24","0","0" +"7331","318","8","0","-10415","-2783","27","0","0" +"7330","318","9","0","-10387","-2675","27","0","0" +"7329","318","10","0","-10386","-2596","31","0","0" +"7328","318","11","0","-10470","-2576","30","0","0" +"7327","318","12","0","-10518","-2497","57","0","0" +"7326","318","13","0","-10535","-2413","107","0","0" +"7325","318","14","0","-10554","-2317","101","0","0" +"7324","318","15","0","-10584","-2184","105","0","0" +"7323","318","16","0","-10567","-2116","143","0","0" +"7322","318","17","0","-10469","-2014","176","0","0" +"7321","318","18","0","-10435","-1878","154","0","0" +"7320","318","19","0","-10455","-1596","123","0","0" +"7319","318","20","0","-10371","-1421","166","0","0" +"7318","318","21","0","-10204","-1339","165","0","0" +"7317","318","22","0","-9979","-1470","112","0","0" +"7316","318","23","0","-9849","-1662","83","0","0" +"7315","318","24","0","-9753","-1818","60","0","0" +"7314","318","25","0","-9621","-2017","76","0","0" +"7313","318","26","0","-9570","-2187","102","0","0" +"7312","318","27","0","-9503","-2398","81","0","0" +"7311","318","28","0","-9256","-2600","134","0","0" +"7310","318","29","0","-9037","-2668","166","0","0" +"7309","318","30","0","-8872","-2613","186","0","0" +"7308","318","31","0","-8561","-2559","164","0","0" +"7307","318","32","0","-8398","-2546","153","0","0" +"7306","318","33","0","-8175","-2525","155","0","0" +"7305","318","34","0","-8075","-2308","190","0","0" +"7304","318","35","0","-8016","-2034","164","0","0" +"7303","318","36","0","-7939","-1698","154","0","0" +"7302","318","37","0","-7811","-1571","173","0","0" +"7301","318","38","0","-7606","-1584","246","0","0" +"7300","318","39","0","-7378","-1601","332","0","0" +"7299","318","40","0","-7094","-1504","274","0","0" +"7298","318","41","0","-6891","-1512","255","0","0" +"7297","318","42","0","-6825","-1664","264","0","0" +"7296","318","43","0","-6899","-1845","284","0","0" +"7295","318","44","0","-6944","-2058","303","0","0" +"7294","318","45","0","-6881","-2334","298","0","0" +"7293","318","46","0","-6782","-2452","283","0","0" +"7292","318","47","0","-6673","-2444","279","0","0" +"7291","318","48","0","-6623","-2355","273","0","0" +"9469","318","49","0","-6615","-2233","258","0","0" +"9470","318","50","0","-6633","-2179","247","0","0" +"7340","319","0","0","-6635","-2185","245","0","0" +"7341","319","1","0","-6692","-2197","255","0","0" +"7342","319","2","0","-6784","-2202","270","0","0" +"7343","319","3","0","-6900","-2290","272","0","0" +"7344","319","4","0","-6842","-2451","279","0","0" +"7345","319","5","0","-6713","-2689","270","0","0" +"7346","319","6","0","-6633","-2891","279","0","0" +"7347","319","7","0","-6517","-3132","329","0","0" +"7348","319","8","0","-6316","-3312","319","0","0" +"7349","319","9","0","-6164","-3347","301","0","0" +"7350","319","10","0","-5931","-3289","313","0","0" +"7351","319","11","0","-5806","-3389","318","0","0" +"7352","319","12","0","-5580","-3394","306","0","0" +"7353","319","13","0","-5343","-3294","303","0","0" +"7354","319","14","0","-4939","-3435","331","0","0" +"7355","319","15","0","-4744","-3364","329","0","0" +"7356","319","16","0","-4582","-3289","189","0","0" +"7357","319","17","0","-4451","-3238","189","0","0" +"7358","319","18","0","-4247","-3153","132","0","0" +"7359","319","19","0","-4104","-3006","30","0","0" +"7360","319","20","0","-3928","-2913","31","0","0" +"7361","319","21","0","-3629","-2832","31","0","0" +"7362","319","22","0","-3354","-2767","40","0","0" +"7363","319","23","0","-3214","-2690","28","0","0" +"7364","319","24","0","-3079","-2502","25","0","0" +"7365","319","25","0","-2905","-2464","60","0","0" +"7366","319","26","0","-2744","-2497","81","0","0" +"7367","319","27","0","-2607","-2487","91","0","0" +"7368","319","28","0","-2435","-2449","110","0","0" +"7369","319","29","0","-2109","-2460","107","0","0" +"7370","319","30","0","-1876","-2541","65","0","0" +"7371","319","31","0","-1749","-2616","77","0","0" +"7372","319","32","0","-1635","-2735","62","0","0" +"7373","319","33","0","-1575","-2942","48","0","0" +"7374","319","34","0","-1513","-3058","40","0","0" +"7375","319","35","0","-1337","-3186","48","0","0" +"7376","319","36","0","-1168","-3441","64","0","0" +"7377","319","37","0","-991","-3513","85","0","0" +"7378","319","38","0","-916","-3493","72","0","0" +"7417","320","0","0","-916","-3493","72","0","0" +"7416","320","1","0","-916","-3489","73","0","0" +"7415","320","2","0","-917","-3469","77","0","0" +"7414","320","3","0","-925","-3353","97","0","0" +"7413","320","4","0","-1087","-3251","70","0","0" +"7412","320","5","0","-1408","-3215","52","0","0" +"7411","320","6","0","-1537","-3101","27","0","0" +"7410","320","7","0","-1542","-2886","48","0","0" +"7409","320","8","0","-1655","-2696","62","0","0" +"7408","320","9","0","-1765","-2607","77","0","0" +"7407","320","10","0","-1872","-2545","67","0","0" +"7406","320","11","0","-2172","-2456","114","0","0" +"7405","320","12","0","-2435","-2447","108","0","0" +"7404","320","13","0","-2607","-2487","91","0","0" +"7403","320","14","0","-2744","-2497","81","0","0" +"7402","320","15","0","-2905","-2464","60","0","0" +"7401","320","16","0","-3079","-2502","25","0","0" +"7400","320","17","0","-3214","-2690","28","0","0" +"7399","320","18","0","-3354","-2767","40","0","0" +"7398","320","19","0","-3629","-2832","31","0","0" +"7397","320","20","0","-3928","-2913","31","0","0" +"7396","320","21","0","-4104","-3006","30","0","0" +"7395","320","22","0","-4247","-3153","132","0","0" +"7394","320","23","0","-4451","-3238","189","0","0" +"7393","320","24","0","-4582","-3289","189","0","0" +"7392","320","25","0","-4744","-3364","329","0","0" +"7391","320","26","0","-4939","-3435","331","0","0" +"7390","320","27","0","-5343","-3294","303","0","0" +"7389","320","28","0","-5580","-3394","306","0","0" +"7388","320","29","0","-5806","-3389","318","0","0" +"7387","320","30","0","-5931","-3289","313","0","0" +"7386","320","31","0","-6164","-3347","301","0","0" +"7385","320","32","0","-6316","-3312","319","0","0" +"7384","320","33","0","-6517","-3132","329","0","0" +"7383","320","34","0","-6633","-2891","279","0","0" +"7382","320","35","0","-6713","-2689","270","0","0" +"7381","320","36","0","-6635","-2498","279","0","0" +"7380","320","37","0","-6603","-2384","278","0","0" +"7379","320","38","0","-6604","-2284","270","0","0" +"9367","320","39","0","-6616","-2227","258","0","0" +"9368","320","40","0","-6633","-2181","247","0","0" +"7418","321","0","0","-917","-3496","72","0","0" +"7419","321","1","0","-917","-3493","72","0","0" +"7420","321","2","0","-916","-3477","75","0","0" +"7421","321","3","0","-908","-3432","85","0","0" +"7422","321","4","0","-851","-3275","113","0","0" +"7423","321","5","0","-1065","-3097","89","0","0" +"7424","321","6","0","-1137","-2886","61","0","0" +"7425","321","7","0","-1128","-2600","72","0","0" +"7426","321","8","0","-895","-2362","77","0","0" +"7427","321","9","0","-938","-2066","65","0","0" +"7428","321","10","0","-856","-1790","81","0","0" +"7429","321","11","0","-607","-1568","109","0","0" +"7430","321","12","0","-534","-1420","102","0","0" +"7431","321","13","0","-401","-1311","102","0","0" +"7432","321","14","0","-424","-1126","99","0","0" +"7433","321","15","0","-397","-910","78","0","0" +"7434","321","16","0","-294","-799","80","0","0" +"7435","321","17","0","-168","-868","78","0","0" +"9365","321","18","0","-68","-880","69","0","0" +"9366","321","19","0","0","-860","60","0","0" +"7453","322","0","0","0","-859","59","0","0" +"7452","322","1","0","-1","-857","60","0","0" +"7451","322","2","0","-6","-839","66","0","0" +"7450","322","3","0","-30","-782","77","0","0" +"7449","322","4","0","-112","-758","86","0","0" +"7448","322","5","0","-313","-906","67","0","0" +"7447","322","6","0","-285","-1096","79","0","0" +"7446","322","7","0","-366","-1203","99","0","0" +"7445","322","8","0","-401","-1311","102","0","0" +"7444","322","9","0","-534","-1420","102","0","0" +"7443","322","10","0","-607","-1568","109","0","0" +"7442","322","11","0","-848","-1788","80","0","0" +"7441","322","12","0","-928","-2058","65","0","0" +"7440","322","13","0","-895","-2362","77","0","0" +"7439","322","14","0","-1128","-2600","72","0","0" +"7438","322","15","0","-1137","-2886","61","0","0" +"7437","322","16","0","-1185","-3285","90","0","0" +"7436","322","17","0","-1110","-3464","90","0","0" +"9490","322","18","0","-987","-3510","81","0","0" +"9491","322","19","0","-921","-3496","72","0","0" +"7454","323","0","1","-7224","-3734","9","0","0" +"7455","323","1","1","-7224","-3737","10","0","0" +"7456","323","2","1","-7223","-3753","13","0","0" +"7457","323","3","1","-7210","-3836","32","0","0" +"7458","323","4","1","-7123","-3853","38","0","0" +"7459","323","5","1","-6979","-3717","56","0","0" +"7460","323","6","1","-6864","-3758","77","0","0" +"7461","323","7","1","-6720","-3693","-2","0","0" +"7462","323","8","1","-6515","-3674","-35","0","0" +"7463","323","9","1","-6241","-3793","-40","0","0" +"7464","323","10","1","-5919","-3701","-42","0","0" +"7465","323","11","1","-5732","-3550","-32","0","0" +"7466","323","12","1","-5614","-3360","-3","0","0" +"7467","323","13","1","-5581","-3258","6","0","0" +"7468","323","14","1","-5616","-3010","-12","0","0" +"7469","323","15","1","-5522","-2704","-11","0","0" +"7470","323","16","1","-5562","-2507","34","0","0" +"7471","323","17","1","-5550","-2338","8","0","0" +"7472","323","18","1","-5475","-2240","-10","0","0" +"7473","323","19","1","-5341","-2175","-11","0","0" +"7474","323","20","1","-5242","-1995","-29","0","0" +"7475","323","21","1","-5236","-1827","-45","0","0" +"7476","323","22","1","-5144","-1595","-24","0","0" +"7477","323","23","1","-4987","-1519","-34","0","0" +"7478","323","24","1","-4841","-1404","-31","0","0" +"7479","323","25","1","-4746","-1295","-25","0","0" +"7480","323","26","1","-4631","-1265","-20","0","0" +"7481","323","27","1","-4510","-1189","-12","0","0" +"7482","323","28","1","-4368","-1033","-4","0","0" +"9355","323","29","1","-4356","-940","-20","0","0" +"9356","323","30","1","-4380","-794","-8","0","0" +"12405","323","31","1","-4444","-764","-19","0","0" +"12406","323","32","1","-4491","-776","-37","0","0" +"7511","324","0","1","-4492","-776","-38","0","0" +"7510","324","1","1","-4492","-779","-38","0","0" +"7509","324","2","1","-4491","-795","-35","0","0" +"7508","324","3","1","-4486","-881","-20","0","0" +"7507","324","4","1","-4422","-1051","-8","0","0" +"7506","324","5","1","-4510","-1189","-12","0","0" +"7505","324","6","1","-4631","-1265","-20","0","0" +"7504","324","7","1","-4746","-1295","-25","0","0" +"7503","324","8","1","-4841","-1404","-31","0","0" +"7502","324","9","1","-4978","-1518","-34","0","0" +"7501","324","10","1","-5144","-1595","-24","0","0" +"7500","324","11","1","-5219","-1834","-35","0","0" +"7499","324","12","1","-5242","-1995","-29","0","0" +"7498","324","13","1","-5341","-2175","-20","0","0" +"7497","324","14","1","-5475","-2240","-12","0","0" +"7496","324","15","1","-5550","-2338","0","0","0" +"7495","324","16","1","-5569","-2475","7","0","0" +"7494","324","17","1","-5522","-2704","-11","0","0" +"7493","324","18","1","-5616","-3010","-12","0","0" +"7492","324","19","1","-5581","-3258","6","0","0" +"7491","324","20","1","-5614","-3360","-3","0","0" +"7490","324","21","1","-5732","-3550","-32","0","0" +"7489","324","22","1","-5919","-3701","-42","0","0" +"7488","324","23","1","-6241","-3793","-40","0","0" +"7487","324","24","1","-6515","-3674","-35","0","0" +"7486","324","25","1","-6688","-3690","-25","0","0" +"7485","324","26","1","-6866","-3751","71","0","0" +"7484","324","27","1","-6993","-3702","58","0","0" +"7483","324","28","1","-7119","-3824","37","0","0" +"9497","324","29","1","-7208","-3792","25","0","0" +"9498","324","30","1","-7224","-3734","10","0","0" +"7512","325","0","1","-4491","-775","-38","0","0" +"7513","325","1","1","-4499","-812","-36","0","0" +"7514","325","2","1","-4491","-857","-34","0","0" +"7515","325","3","1","-4440","-900","-29","0","0" +"7516","325","4","1","-4369","-881","-27","0","0" +"7517","325","5","1","-4298","-775","-19","0","0" +"7518","325","6","1","-4345","-573","14","0","0" +"7519","325","7","1","-4294","-443","47","0","0" +"7520","325","8","1","-4304","-284","70","0","0" +"7521","325","9","1","-4121","-105","70","0","0" +"7522","325","10","1","-4212","124","82","0","0" +"7523","325","11","1","-4230","348","78","0","0" +"7524","325","12","1","-4375","527","80","0","0" +"7525","325","13","1","-4530","653","68","0","0" +"7526","325","14","1","-4593","774","72","0","0" +"7527","325","15","1","-4599","928","84","0","0" +"7528","325","16","1","-4694","1051","131","0","0" +"7529","325","17","1","-4719","1189","112","0","0" +"7530","325","18","1","-4672","1310","112","0","0" +"7531","325","19","1","-4740","1483","110","0","0" +"7532","325","20","1","-4750","1673","105","0","0" +"7533","325","21","1","-4787","1863","72","0","0" +"7534","325","22","1","-4797","2065","34","0","0" +"7535","325","23","1","-4547","2413","65","0","0" +"7536","325","24","1","-4380","2713","85","0","0" +"7537","325","25","1","-4113","2981","72","0","0" +"7538","325","26","1","-4077","3246","63","0","0" +"7539","325","27","1","-4185","3393","56","0","0" +"7540","325","28","1","-4323","3370","22","0","0" +"12403","325","29","1","-4375","3337","13","0","0" +"7571","326","0","1","-4373","3338","13","0","0" +"7570","326","1","1","-4417","3311","30","0","0" +"7569","326","2","1","-4476","3242","58","0","0" +"7568","326","3","1","-4526","3138","61","0","0" +"7567","326","4","1","-4679","2855","57","0","0" +"7566","326","5","1","-4780","2631","88","0","0" +"7565","326","6","1","-4796","2357","67","0","0" +"7564","326","7","1","-4792","2170","46","0","0" +"7563","326","8","1","-4784","1970","45","0","0" +"7562","326","9","1","-4785","1825","80","0","0" +"7561","326","10","1","-4755","1697","105","0","0" +"7560","326","11","1","-4740","1483","110","0","0" +"7559","326","12","1","-4672","1310","112","0","0" +"7558","326","13","1","-4719","1189","112","0","0" +"7557","326","14","1","-4694","1051","131","0","0" +"7556","326","15","1","-4599","928","84","0","0" +"7555","326","16","1","-4593","774","72","0","0" +"7554","326","17","1","-4530","653","68","0","0" +"7553","326","18","1","-4375","527","80","0","0" +"7552","326","19","1","-4230","348","78","0","0" +"7551","326","20","1","-4212","124","82","0","0" +"7550","326","21","1","-4121","-105","70","0","0" +"7549","326","22","1","-4304","-284","70","0","0" +"7548","326","23","1","-4294","-443","47","0","0" +"7547","326","24","1","-4364","-593","15","0","0" +"7546","326","25","1","-4466","-683","-7","0","0" +"7545","326","26","1","-4478","-746","-15","0","0" +"7544","326","27","1","-4489","-775","-37","0","0" +"7572","327","0","1","2306","-2524","105","0","0" +"7573","327","1","1","2290","-2528","106","0","0" +"7574","327","2","1","2239","-2545","110","0","0" +"7575","327","3","1","2173","-2589","115","0","0" +"7576","327","4","1","2134","-2665","120","0","0" +"7577","327","5","1","2142","-2829","131","0","0" +"7578","327","6","1","2101","-2943","122","0","0" +"7579","327","7","1","2130","-3101","119","0","0" +"7580","327","8","1","2205","-3203","138","0","0" +"7581","327","9","1","2416","-3362","153","0","0" +"7582","327","10","1","2356","-3530","130","0","0" +"7583","327","11","1","2193","-3643","80","0","0" +"7584","327","12","1","1850","-3709","67","0","0" +"7585","327","13","1","1707","-3819","91","0","0" +"7586","327","14","1","1698","-3917","97","0","0" +"7587","327","15","1","1744","-4013","79","0","0" +"7588","327","16","1","1723","-4077","72","0","0" +"7589","327","17","1","1592","-4133","70","0","0" +"7590","327","18","1","1591","-4237","76","0","0" +"7591","327","19","1","1609","-4311","68","0","0" +"7592","327","20","1","1618","-4394","63","0","0" +"12448","327","21","1","1682","-4402","63","0","0" +"12449","327","22","1","1719","-4371","64","0","0" +"12450","327","23","1","1719","-4331","66","0","0" +"12451","327","24","1","1678","-4314","65","0","0" +"7613","328","0","1","1678","-4317","62","0","0" +"7612","328","1","1","1678","-4314","63","0","0" +"7611","328","2","1","1679","-4303","66","0","0" +"7610","328","3","1","1667","-4286","69","0","0" +"7609","328","4","1","1585","-4234","76","0","0" +"7608","328","5","1","1590","-4138","70","0","0" +"7607","328","6","1","1718","-4085","72","0","0" +"7606","328","7","1","1740","-4019","79","0","0" +"7605","328","8","1","1698","-3917","101","0","0" +"7604","328","9","1","1707","-3819","91","0","0" +"7603","328","10","1","1911","-3683","67","0","0" +"7602","328","11","1","2256","-3647","119","0","0" +"7601","328","12","1","2388","-3545","147","0","0" +"7600","328","13","1","2416","-3362","158","0","0" +"7599","328","14","1","2222","-3243","138","0","0" +"7598","328","15","1","2130","-3101","119","0","0" +"7597","328","16","1","2101","-2943","122","0","0" +"7596","328","17","1","2142","-2829","131","0","0" +"7595","328","18","1","2134","-2665","120","0","0" +"7594","328","19","1","2178","-2588","116","0","0" +"7593","328","20","1","2252","-2557","116","0","0" +"9416","328","21","1","2286","-2542","111","0","0" +"9420","328","22","1","2306","-2525","105","0","0" +"7614","329","0","1","2722","-3881","102","0","0" +"7615","329","1","1","2763","-3856","109","0","0" +"7616","329","2","1","2790","-3794","115","0","0" +"7617","329","3","1","2709","-3664","129","0","0" +"7618","329","4","1","2628","-3513","134","0","0" +"7619","329","5","1","2478","-3346","143","0","0" +"7620","329","6","1","2272","-3288","135","0","0" +"7621","329","7","1","2122","-3092","119","0","0" +"7622","329","8","1","2106","-2914","126","0","0" +"7623","329","9","1","2060","-2729","128","0","0" +"7624","329","10","1","1994","-2664","115","0","0" +"7625","329","11","1","1963","-2512","102","0","0" +"7626","329","12","1","1971","-2360","104","0","0" +"7627","329","13","1","1932","-2189","103","0","0" +"7638","329","14","1","1970","-1993","107","0","0" +"7639","329","15","1","2046","-1871","111","0","0" +"7640","329","16","1","2177","-1777","116","0","0" +"7641","329","17","1","2318","-1687","134","0","0" +"7642","329","18","1","2367","-1543","133","0","0" +"7643","329","19","1","2401","-1430","135","0","0" +"7644","329","20","1","2451","-1304","142","0","0" +"7645","329","21","1","2517","-1013","139","0","0" +"7646","329","22","1","2484","-778","148","0","0" +"7647","329","23","1","2492","-667","138","0","0" +"7648","329","24","1","2582","-571","125","0","0" +"7649","329","25","1","2777","-535","123","0","0" +"7650","329","26","1","2850","-432","122","0","0" +"7651","329","27","1","2849","-232","120","0","0" +"7652","329","28","1","2903","-93","117","0","0" +"7653","329","29","1","2825","50","113","0","0" +"7654","329","30","1","2830","169","115","0","0" +"7655","329","31","1","2909","187","105","0","0" +"7656","329","32","1","3062","133","73","0","0" +"7657","329","33","1","3190","148","43","0","0" +"7658","329","34","1","3286","235","26","0","0" +"7659","329","35","1","3338","357","22","0","0" +"7660","329","36","1","3460","448","20","0","0" +"7661","329","37","1","3519","563","21","0","0" +"7662","329","38","1","3515","702","18","0","0" +"7663","329","39","1","3581","811","13","0","0" +"7664","329","40","1","3687","840","9","0","0" +"7665","329","41","1","3826","812","23","0","0" +"7666","329","42","1","3945","847","22","0","0" +"7667","329","43","1","4073","977","20","0","0" +"7668","329","44","1","4290","990","54","0","0" +"7669","329","45","1","4478","806","22","0","0" +"7670","329","46","1","4677","730","31","0","0" +"7671","329","47","1","4927","689","5","0","0" +"7674","329","48","1","5350","587","15","0","0" +"7675","329","49","1","5739","590","17","0","0" +"7676","329","50","1","6093","538","19","0","0" +"7677","329","51","1","6309","524","25","0","0" +"7678","329","52","1","6341","559","17","0","0" +"7739","330","0","1","6342","558","17","0","0" +"7738","330","1","1","6348","624","28","0","0" +"7737","330","2","1","6254","664","39","0","0" +"7736","330","3","1","6073","636","26","0","0" +"7735","330","4","1","5635","683","8","0","0" +"7734","330","5","1","5164","742","15","0","0" +"7733","330","6","1","4927","689","34","0","0" +"7732","330","7","1","4657","745","31","0","0" +"7731","330","8","1","4501","834","22","0","0" +"7730","330","9","1","4290","990","54","0","0" +"7729","330","10","1","4058","965","20","0","0" +"7728","330","11","1","3945","847","22","0","0" +"7727","330","12","1","3826","812","23","0","0" +"7726","330","13","1","3680","843","9","0","0" +"7725","330","14","1","3593","816","13","0","0" +"7724","330","15","1","3515","702","18","0","0" +"7723","330","16","1","3521","572","21","0","0" +"7722","330","17","1","3439","419","20","0","0" +"7721","330","18","1","3338","357","22","0","0" +"7720","330","19","1","3270","226","21","0","0" +"7719","330","20","1","3171","183","30","0","0" +"7718","330","21","1","2987","151","82","0","0" +"7717","330","22","1","2904","187","105","0","0" +"7716","330","23","1","2836","177","116","0","0" +"7715","330","24","1","2816","53","113","0","0" +"7714","330","25","1","2869","-107","117","0","0" +"7713","330","26","1","2848","-258","120","0","0" +"7712","330","27","1","2854","-388","122","0","0" +"7711","330","28","1","2794","-516","123","0","0" +"7710","330","29","1","2614","-603","125","0","0" +"7709","330","30","1","2492","-667","138","0","0" +"7708","330","31","1","2484","-778","146","0","0" +"7707","330","32","1","2517","-1013","139","0","0" +"7706","330","33","1","2451","-1304","142","0","0" +"7705","330","34","1","2401","-1430","135","0","0" +"7704","330","35","1","2367","-1543","133","0","0" +"7703","330","36","1","2318","-1687","134","0","0" +"7702","330","37","1","2177","-1777","116","0","0" +"7701","330","38","1","2046","-1871","111","0","0" +"7700","330","39","1","1970","-1993","107","0","0" +"7699","330","40","1","1932","-2189","103","0","0" +"7698","330","41","1","1971","-2360","104","0","0" +"7697","330","42","1","1963","-2512","102","0","0" +"7696","330","43","1","1994","-2664","115","0","0" +"7695","330","44","1","2060","-2729","128","0","0" +"7694","330","45","1","2106","-2914","126","0","0" +"7693","330","46","1","2122","-3092","119","0","0" +"7692","330","47","1","2272","-3288","135","0","0" +"7691","330","48","1","2478","-3346","143","0","0" +"7690","330","49","1","2628","-3513","134","0","0" +"7689","330","50","1","2673","-3687","129","0","0" +"7688","330","51","1","2669","-3800","133","0","0" +"7687","330","52","1","2699","-3859","114","0","0" +"7686","330","53","1","2722","-3880","103","0","0" +"7801","332","0","1","2721","-3879","101","0","0" +"7800","332","1","1","2728","-3883","104","0","0" +"7799","332","2","1","2738","-3883","107","0","0" +"7798","332","3","1","2761","-3855","117","0","0" +"7797","332","4","1","2759","-3765","127","0","0" +"7796","332","5","1","2695","-3639","131","0","0" +"7795","332","6","1","2520","-3518","129","0","0" +"7794","332","7","1","2404","-3327","124","0","0" +"7793","332","8","1","2258","-3284","117","0","0" +"7792","332","9","1","2192","-3206","122","0","0" +"7791","332","10","1","2178","-3070","126","0","0" +"7790","332","11","1","2108","-2965","125","0","0" +"7789","332","12","1","2144","-2817","129","0","0" +"7788","332","13","1","2119","-2704","118","0","0" +"7787","332","14","1","2178","-2586","113","0","0" +"7786","332","15","1","2209","-2466","101","0","0" +"7785","332","16","1","2243","-2356","113","0","0" +"7784","332","17","1","2278","-2194","121","0","0" +"7783","332","18","1","2366","-2061","143","0","0" +"7782","332","19","1","2497","-1997","152","0","0" +"7781","332","20","1","2657","-1982","168","0","0" +"7780","332","21","1","2803","-2029","178","0","0" +"7779","332","22","1","2922","-1863","175","0","0" +"7778","332","23","1","3052","-1779","182","0","0" +"7777","332","24","1","3184","-1730","180","0","0" +"7776","332","25","1","3276","-1569","182","0","0" +"7775","332","26","1","3450","-1434","183","0","0" +"7774","332","27","1","3729","-1494","205","0","0" +"7773","332","28","1","3898","-1283","228","0","0" +"9846","332","29","1","3915","-1098","274","0","0" +"9847","332","30","1","4058","-1047","272","0","0" +"9848","332","31","1","4212","-901","295","0","0" +"9849","332","32","1","4308","-827","290","0","0" +"9850","332","33","1","4379","-868","298","0","0" +"9851","332","34","1","4502","-837","304","0","0" +"9852","332","35","1","4564","-866","315","0","0" +"9853","332","36","1","4738","-761","305","0","0" +"9854","332","37","1","4984","-735","317","0","0" +"9855","332","38","1","5239","-762","358","0","0" +"9856","332","39","1","5408","-662","356","0","0" +"9857","332","40","1","5579","-698","371","0","0" +"9858","332","41","1","5755","-648","378","0","0" +"9859","332","42","1","6025","-719","405","0","0" +"9860","332","43","1","6099","-706","436","0","0" +"9861","332","44","1","6207","-761","425","0","0" +"9862","332","45","1","6315","-999","427","0","0" +"9863","332","46","1","6530","-1132","444","0","0" +"9864","332","47","1","6639","-1452","476","0","0" +"9865","332","48","1","6518","-1659","509","0","0" +"9866","332","49","1","6536","-1831","547","0","0" +"9867","332","50","1","6400","-1948","565","0","0" +"9868","332","51","1","6260","-1915","571","0","0" +"9869","332","52","1","6209","-1948","574","0","0" +"7802","333","0","1","2306","-2524","105","0","0" +"7803","333","1","1","2294","-2527","106","0","0" +"7804","333","2","1","2226","-2539","113","0","0" +"7805","333","3","1","2177","-2584","118","0","0" +"7806","333","4","1","2134","-2698","126","0","0" +"7807","333","5","1","2169","-2887","129","0","0" +"7808","333","6","1","2225","-3002","131","0","0" +"7809","333","7","1","2190","-3118","123","0","0" +"7810","333","8","1","2259","-3197","133","0","0" +"7811","333","9","1","2264","-3285","124","0","0" +"7812","333","10","1","2136","-3462","107","0","0" +"7813","333","11","1","2059","-3557","77","0","0" +"7814","333","12","1","1959","-3659","46","0","0" +"7815","333","13","1","1814","-3730","49","0","0" +"7816","333","14","1","1734","-3795","55","0","0" +"7817","333","15","1","1683","-3875","37","0","0" +"7818","333","16","1","1595","-3897","26","0","0" +"7819","333","17","1","1449","-3885","30","0","0" +"7820","333","18","1","1256","-3823","49","0","0" +"7821","333","19","1","1143","-3705","85","0","0" +"7822","333","20","1","1092","-3574","109","0","0" +"7823","333","21","1","1126","-3352","114","0","0" +"7824","333","22","1","1107","-3197","103","0","0" +"7825","333","23","1","974","-3062","101","0","0" +"7826","333","24","1","896","-2880","115","0","0" +"7827","333","25","1","751","-2761","109","0","0" +"7828","333","26","1","530","-2718","113","0","0" +"7829","333","27","1","261","-2806","110","0","0" +"7830","333","28","1","13","-2718","113","0","0" +"7831","333","29","1","-193","-2644","116","0","0" +"7832","333","30","1","-296","-2522","122","0","0" +"7833","333","31","1","-394","-2527","124","0","0" +"7834","333","32","1","-440","-2599","97","0","0" +"7867","334","0","1","-444","-2597","97","0","0" +"7866","334","1","1","-444","-2605","99","0","0" +"7865","334","2","1","-459","-2659","115","0","0" +"7864","334","3","1","-469","-2762","126","0","0" +"7863","334","4","1","-342","-2755","126","0","0" +"7862","334","5","1","-130","-2657","126","0","0" +"7861","334","6","1","65","-2672","113","0","0" +"7860","334","7","1","237","-2806","110","0","0" +"7859","334","8","1","419","-2754","113","0","0" +"7858","334","9","1","586","-2873","109","0","0" +"7857","334","10","1","863","-2943","115","0","0" +"7856","334","11","1","974","-3062","101","0","0" +"7855","334","12","1","1107","-3197","103","0","0" +"7854","334","13","1","1126","-3352","114","0","0" +"7853","334","14","1","1092","-3574","109","0","0" +"7852","334","15","1","1143","-3705","85","0","0" +"7851","334","16","1","1256","-3823","49","0","0" +"7850","334","17","1","1449","-3885","30","0","0" +"7849","334","18","1","1595","-3897","26","0","0" +"7848","334","19","1","1683","-3875","37","0","0" +"7847","334","20","1","1734","-3795","55","0","0" +"7846","334","21","1","1814","-3730","49","0","0" +"7845","334","22","1","1959","-3659","46","0","0" +"7844","334","23","1","2059","-3557","77","0","0" +"7843","334","24","1","2136","-3462","107","0","0" +"7842","334","25","1","2264","-3285","124","0","0" +"7841","334","26","1","2259","-3197","133","0","0" +"7840","334","27","1","2190","-3118","123","0","0" +"7839","334","28","1","2225","-3002","131","0","0" +"7838","334","29","1","2169","-2887","129","0","0" +"7837","334","30","1","2125","-2744","126","0","0" +"7836","334","31","1","2144","-2638","123","0","0" +"7835","334","32","1","2197","-2573","115","0","0" +"9161","334","33","1","2267","-2536","110","0","0" +"9162","334","34","1","2307","-2525","106","0","0" +"7868","335","0","1","1678","-4315","62","0","0" +"7869","335","1","1","1677","-4313","62","0","0" +"7870","335","2","1","1673","-4300","64","0","0" +"7871","335","3","1","1664","-4284","67","0","0" +"7872","335","4","1","1617","-4261","76","0","0" +"7873","335","5","1","1576","-4212","82","0","0" +"7874","335","6","1","1596","-4127","76","0","0" +"7875","335","7","1","1723","-4078","82","0","0" +"7876","335","8","1","1743","-3979","97","0","0" +"7877","335","9","1","1683","-3906","97","0","0" +"7878","335","10","1","1510","-3861","64","0","0" +"7879","335","11","1","1262","-3938","41","0","0" +"7880","335","12","1","1128","-4075","36","0","0" +"7881","335","13","1","982","-4092","36","0","0" +"7882","335","14","1","912","-4013","0","0","0" +"7883","335","15","1","842","-4047","14","0","0" +"7884","335","16","1","766","-4028","6","0","0" +"7885","335","17","1","670","-4035","7","0","0" +"7886","335","18","1","600","-4029","17","0","0" +"7887","335","19","1","493","-4007","43","0","0" +"7888","335","20","1","372","-3968","58","0","0" +"7889","335","21","1","236","-3844","49","0","0" +"7890","335","22","1","53","-3812","39","0","0" +"7891","335","23","1","-93","-3777","39","0","0" +"7892","335","24","1","-278","-3808","37","0","0" +"7893","335","25","1","-406","-3913","24","0","0" +"7894","335","26","1","-568","-3925","33","0","0" +"7895","335","27","1","-685","-3923","33","0","0" +"7896","335","28","1","-791","-3953","38","0","0" +"7897","335","29","1","-902","-3850","22","0","0" +"7898","335","30","1","-1023","-3790","17","0","0" +"7899","335","31","1","-1163","-3808","21","0","0" +"7900","335","32","1","-1248","-3857","55","0","0" +"7901","335","33","1","-1349","-3869","26","0","0" +"7902","335","34","1","-1431","-3975","27","0","0" +"7903","335","35","1","-1529","-4027","6","0","0" +"7904","335","36","1","-1664","-3999","8","0","0" +"7905","335","37","1","-1785","-3913","6","0","0" +"7906","335","38","1","-1891","-3874","4","0","0" +"7907","335","39","1","-2005","-3910","14","0","0" +"7908","335","40","1","-2201","-4065","19","0","0" +"7909","335","41","1","-2370","-4091","31","0","0" +"7910","335","42","1","-2569","-4018","27","0","0" +"7911","335","43","1","-2703","-3935","92","0","0" +"7912","335","44","1","-2713","-3860","78","0","0" +"7913","335","45","1","-2777","-3759","48","0","0" +"7914","335","46","1","-2847","-3683","41","0","0" +"7915","335","47","1","-2818","-3599","45","0","0" +"7916","335","48","1","-2811","-3510","56","0","0" +"7917","335","49","1","-2884","-3459","74","0","0" +"7918","335","50","1","-2908","-3411","80","0","0" +"7919","335","51","1","-2873","-3291","84","0","0" +"7920","335","52","1","-2928","-3201","90","0","0" +"7921","335","53","1","-3067","-3126","90","0","0" +"7922","335","54","1","-3115","-3061","92","0","0" +"7923","335","55","1","-3090","-2942","82","0","0" +"9435","335","56","1","-3107","-2862","56","0","0" +"9436","335","57","1","-3144","-2842","36","0","0" +"7979","336","0","1","-3143","-2841","35","0","0" +"7978","336","1","1","-3136","-2846","36","0","0" +"7977","336","2","1","-3126","-2856","39","0","0" +"7976","336","3","1","-3101","-2892","63","0","0" +"7975","336","4","1","-3090","-2942","82","0","0" +"7974","336","5","1","-3115","-3061","92","0","0" +"7973","336","6","1","-3067","-3126","90","0","0" +"7972","336","7","1","-2928","-3201","90","0","0" +"7971","336","8","1","-2890","-3319","84","0","0" +"7970","336","9","1","-2912","-3409","80","0","0" +"7969","336","10","1","-2900","-3451","74","0","0" +"7968","336","11","1","-2814","-3511","56","0","0" +"7967","336","12","1","-2814","-3599","45","0","0" +"7966","336","13","1","-2850","-3684","41","0","0" +"7965","336","14","1","-2777","-3759","60","0","0" +"7964","336","15","1","-2754","-3824","78","0","0" +"7963","336","16","1","-2703","-3935","94","0","0" +"7962","336","17","1","-2569","-4018","28","0","0" +"7961","336","18","1","-2370","-4091","44","0","0" +"7960","336","19","1","-2201","-4065","14","0","0" +"7959","336","20","1","-2005","-3910","10","0","0" +"7958","336","21","1","-1876","-3896","4","0","0" +"7957","336","22","1","-1748","-3932","6","0","0" +"7956","336","23","1","-1637","-4004","8","0","0" +"7955","336","24","1","-1529","-4027","6","0","0" +"7954","336","25","1","-1431","-3975","27","0","0" +"7953","336","26","1","-1349","-3869","26","0","0" +"7952","336","27","1","-1248","-3857","55","0","0" +"7951","336","28","1","-1161","-3811","21","0","0" +"7950","336","29","1","-985","-3807","17","0","0" +"7949","336","30","1","-902","-3850","20","0","0" +"7948","336","31","1","-791","-3953","38","0","0" +"7947","336","32","1","-677","-3913","33","0","0" +"7946","336","33","1","-574","-3928","33","0","0" +"7945","336","34","1","-410","-3915","24","0","0" +"7944","336","35","1","-293","-3862","21","0","0" +"7943","336","36","1","-159","-3795","26","0","0" +"7942","336","37","1","26","-3766","33","0","0" +"7941","336","38","1","236","-3844","49","0","0" +"7940","336","39","1","372","-3968","58","0","0" +"7939","336","40","1","493","-4007","43","0","0" +"7938","336","41","1","658","-4032","11","0","0" +"7937","336","42","1","760","-4032","0","0","0" +"7936","336","43","1","832","-4032","14","0","0" +"7935","336","44","1","893","-4013","-2","0","0" +"7934","336","45","1","926","-4023","0","0","0" +"7933","336","46","1","986","-4096","44","0","0" +"7932","336","47","1","1110","-4137","52","0","0" +"7931","336","48","1","1225","-4367","61","0","0" +"7930","336","49","1","1348","-4378","39","0","0" +"7929","336","50","1","1427","-4365","29","0","0" +"7928","336","51","1","1439","-4419","29","0","0" +"7927","336","52","1","1487","-4418","29","0","0" +"7926","336","53","1","1562","-4414","46","0","0" +"7925","336","54","1","1669","-4410","60","0","0" +"7924","336","55","1","1713","-4374","67","0","0" +"9086","336","56","1","1717","-4335","67","0","0" +"9087","336","57","1","1678","-4315","62","0","0" +"8045","338","0","1","1677","-4317","62","0","0" +"8046","338","1","1","1674","-4316","62","0","0" +"8047","338","2","1","1659","-4305","64","0","0" +"8048","338","3","1","1627","-4277","72","0","0" +"8049","338","4","1","1580","-4212","75","0","0" +"8050","338","5","1","1616","-4119","69","0","0" +"8051","338","6","1","1731","-4074","65","0","0" +"8052","338","7","1","1746","-3984","80","0","0" +"8053","338","8","1","1686","-3873","103","0","0" +"8054","338","9","1","1750","-3775","90","0","0" +"8055","338","10","1","1911","-3685","67","0","0" +"8056","338","11","1","2116","-3704","80","0","0" +"8057","338","12","1","2281","-3625","111","0","0" +"8058","338","13","1","2378","-3510","135","0","0" +"8059","338","14","1","2373","-3418","137","0","0" +"8060","338","15","1","2280","-3334","120","0","0" +"8061","338","16","1","2263","-3221","132","0","0" +"8062","338","17","1","2128","-2993","127","0","0" +"8124","338","18","1","2146","-2840","127","0","0" +"8125","338","19","1","2129","-2692","122","0","0" +"8126","338","20","1","2187","-2575","115","0","0" +"8127","338","21","1","2195","-2483","101","0","0" +"8128","338","22","1","2262","-2368","115","0","0" +"8129","338","23","1","2274","-2186","119","0","0" +"8130","338","24","1","2371","-2048","139","0","0" +"8131","338","25","1","2443","-2007","150","0","0" +"8132","338","26","1","2585","-1985","161","0","0" +"8133","338","27","1","2674","-1942","175","0","0" +"8134","338","28","1","2777","-1979","176","0","0" +"8135","338","29","1","2874","-1899","184","0","0" +"8136","338","30","1","2972","-1854","182","0","0" +"8137","338","31","1","3057","-1754","187","0","0" +"8138","338","32","1","3108","-1613","196","0","0" +"8139","338","33","1","3394","-1520","185","0","0" +"8140","338","34","1","3606","-1505","188","0","0" +"8141","338","35","1","3748","-1386","219","0","0" +"8142","338","36","1","3884","-1304","228","0","0" +"8143","338","37","1","3917","-1193","247","0","0" +"8144","338","38","1","3990","-1146","276","0","0" +"8145","338","39","1","4001","-994","265","0","0" +"8146","338","40","1","4070","-908","267","0","0" +"8147","338","41","1","4083","-834","273","0","0" +"8148","338","42","1","4125","-772","286","0","0" +"8149","338","43","1","4145","-700","291","0","0" +"8150","338","44","1","4280","-723","301","0","0" +"8151","338","45","1","4343","-597","287","0","0" +"8152","338","46","1","4432","-601","291","0","0" +"8153","338","47","1","4557","-720","264","0","0" +"8154","338","48","1","4640","-788","306","0","0" +"8155","338","49","1","4716","-761","312","0","0" +"8156","338","50","1","4806","-730","343","0","0" +"8157","338","51","1","4926","-715","322","0","0" +"8158","338","52","1","5041","-736","327","0","0" +"8159","338","53","1","5134","-748","337","0","0" +"8160","338","54","1","5219","-770","356","0","0" +"8161","338","55","1","5288","-700","351","0","0" +"8162","338","56","1","5269","-598","328","0","0" +"8163","338","57","1","5254","-455","331","0","0" +"8164","338","58","1","5264","-332","334","0","0" +"8165","338","59","1","5204","-264","361","0","0" +"9433","338","60","1","5146","-260","377","0","0" +"9434","338","61","1","5099","-294","378","0","0" +"12459","338","62","1","5071","-336","369","0","0" +"8123","339","0","1","6798","-4741","702","0","0" +"8122","339","1","1","6810","-4741","702","0","0" +"8121","339","2","1","6844","-4736","706","0","0" +"8120","339","3","1","6885","-4711","716","0","0" +"8119","339","4","1","6870","-4637","726","0","0" +"8118","339","5","1","6703","-4564","737","0","0" +"8117","339","6","1","6630","-4429","735","0","0" +"8116","339","7","1","6501","-4177","686","0","0" +"8115","339","8","1","6520","-4008","678","0","0" +"8114","339","9","1","6768","-3647","748","0","0" +"8113","339","10","1","6745","-3444","714","0","0" +"8112","339","11","1","6700","-3287","676","0","0" +"8111","339","12","1","6593","-3147","628","0","0" +"8110","339","13","1","6527","-2957","642","0","0" +"8109","339","14","1","6550","-2791","617","0","0" +"8108","339","15","1","6553","-2663","597","0","0" +"8107","339","16","1","6517","-2580","596","0","0" +"8106","339","17","1","6558","-2511","594","0","0" +"8105","339","18","1","6637","-2486","555","0","0" +"8104","339","19","1","6699","-2397","562","0","0" +"8103","339","20","1","6703","-2263","644","0","0" +"8102","339","21","1","6656","-2216","655","0","0" +"8101","339","22","1","6615","-2082","655","0","0" +"8100","339","23","1","6558","-2017","633","0","0" +"8099","339","24","1","6412","-2039","601","0","0" +"8098","339","25","1","6206","-1948","573","0","0" +"8225","341","0","1","5071","-336","368","0","0" +"8224","341","1","1","5077","-327","369","0","0" +"8223","341","2","1","5099","-294","372","0","0" +"8222","341","3","1","5146","-260","367","0","0" +"8221","341","4","1","5212","-263","351","0","0" +"8220","341","5","1","5266","-321","334","0","0" +"8219","341","6","1","5254","-443","332","0","0" +"8218","341","7","1","5269","-605","331","0","0" +"8217","341","8","1","5279","-708","352","0","0" +"8216","341","9","1","5236","-762","357","0","0" +"8215","341","10","1","5045","-737","325","0","0" +"8214","341","11","1","4924","-734","312","0","0" +"8213","341","12","1","4793","-746","306","0","0" +"8212","341","13","1","4666","-795","308","0","0" +"8211","341","14","1","4605","-777","295","0","0" +"8210","341","15","1","4561","-710","265","0","0" +"8209","341","16","1","4425","-597","290","0","0" +"8208","341","17","1","4351","-594","293","0","0" +"8207","341","18","1","4280","-723","301","0","0" +"8206","341","19","1","4155","-703","291","0","0" +"8205","341","20","1","4115","-789","287","0","0" +"8204","341","21","1","4083","-834","273","0","0" +"8203","341","22","1","4070","-901","267","0","0" +"8202","341","23","1","4001","-994","265","0","0" +"8201","341","24","1","3995","-1139","276","0","0" +"8200","341","25","1","3915","-1193","247","0","0" +"8199","341","26","1","3885","-1317","228","0","0" +"8198","341","27","1","3769","-1366","223","0","0" +"8197","341","28","1","3618","-1494","188","0","0" +"8196","341","29","1","3374","-1530","182","0","0" +"8195","341","30","1","3108","-1613","196","0","0" +"8194","341","31","1","3057","-1754","187","0","0" +"8193","341","32","1","2972","-1854","182","0","0" +"8192","341","33","1","2874","-1899","184","0","0" +"8191","341","34","1","2730","-1984","173","0","0" +"8190","341","35","1","2602","-1978","164","0","0" +"8189","341","36","1","2451","-2002","152","0","0" +"8188","341","37","1","2383","-2037","142","0","0" +"8187","341","38","1","2289","-2160","126","0","0" +"8186","341","39","1","2258","-2252","119","0","0" +"8185","341","40","1","2249","-2367","116","0","0" +"8184","341","41","1","2195","-2483","101","0","0" +"8183","341","42","1","2187","-2575","115","0","0" +"8182","341","43","1","2129","-2692","122","0","0" +"8181","341","44","1","2146","-2840","127","0","0" +"8180","341","45","1","2128","-2993","127","0","0" +"8179","341","46","1","2263","-3221","132","0","0" +"8178","341","47","1","2280","-3334","120","0","0" +"8177","341","48","1","2373","-3418","137","0","0" +"8176","341","49","1","2378","-3510","135","0","0" +"8175","341","50","1","2281","-3625","111","0","0" +"8174","341","51","1","2116","-3704","80","0","0" +"8173","341","52","1","1911","-3685","67","0","0" +"8172","341","53","1","1750","-3768","87","0","0" +"8171","341","54","1","1692","-3889","103","0","0" +"8170","341","55","1","1745","-4006","83","0","0" +"8169","341","56","1","1708","-4093","73","0","0" +"8168","341","57","1","1600","-4130","76","0","0" +"8167","341","58","1","1578","-4209","77","0","0" +"8166","341","59","1","1610","-4270","71","0","0" +"9065","341","60","1","1612","-4364","64","0","0" +"12433","341","61","1","1662","-4410","64","0","0" +"12434","341","62","1","1721","-4379","64","0","0" +"12435","341","63","1","1706","-4326","64","0","0" +"12436","341","64","1","1678","-4315","64","0","0" +"8328","343","0","0","-10455","-3276","22","0","0" +"8329","343","1","0","-10455","-3274","22","0","0" +"8330","343","2","0","-10458","-3259","26","0","0" +"8331","343","3","0","-10460","-3244","30","0","0" +"8332","343","4","0","-10462","-3217","34","0","0" +"8333","343","5","0","-10457","-3140","29","0","0" +"8334","343","6","0","-10431","-3087","35","0","0" +"8335","343","7","0","-10463","-3040","31","0","0" +"8336","343","8","0","-10460","-2989","30","0","0" +"8337","343","9","0","-10517","-2930","31","0","0" +"8338","343","10","0","-10489","-2843","29","0","0" +"8339","343","11","0","-10515","-2725","39","0","0" +"8340","343","12","0","-10528","-2662","68","0","0" +"8341","343","13","0","-10575","-2585","92","0","0" +"8342","343","14","0","-10607","-2497","109","0","0" +"8343","343","15","0","-10588","-2408","113","0","0" +"8344","343","16","0","-10554","-2330","98","0","0" +"8345","343","17","0","-10584","-2210","103","0","0" +"8346","343","18","0","-10594","-2131","101","0","0" +"8347","343","19","0","-10542","-2098","100","0","0" +"8348","343","20","0","-10505","-2047","103","0","0" +"8349","343","21","0","-10432","-2026","111","0","0" +"8350","343","22","0","-10437","-1938","122","0","0" +"8351","343","23","0","-10422","-1830","142","0","0" +"8352","343","24","0","-10462","-1710","142","0","0" +"8353","343","25","0","-10453","-1585","142","0","0" +"8354","343","26","0","-10374","-1438","151","0","0" +"8355","343","27","0","-10428","-1289","132","0","0" +"8356","343","28","0","-10658","-1232","118","0","0" +"8357","343","29","0","-10858","-1097","131","0","0" +"8358","343","30","0","-10967","-882","121","0","0" +"8359","343","31","0","-11050","-777","121","0","0" +"8360","343","32","0","-11105","-656","125","0","0" +"8361","343","33","0","-11225","-481","129","0","0" +"8362","343","34","0","-11311","-399","85","0","0" +"8363","343","35","0","-11351","-336","65","0","0" +"8364","343","36","0","-11383","-290","67","0","0" +"8365","343","37","0","-11476","-287","47","0","0" +"8366","343","38","0","-11544","-322","48","0","0" +"8367","343","39","0","-11635","-279","53","0","0" +"8368","343","40","0","-11730","-342","25","0","0" +"8369","343","41","0","-11857","-398","16","0","0" +"8370","343","42","0","-11950","-414","15","0","0" +"8371","343","43","0","-12066","-369","15","0","0" +"8372","343","44","0","-12168","-347","28","0","0" +"8373","343","45","0","-12232","-328","23","0","0" +"8374","343","46","0","-12421","-293","21","0","0" +"8375","343","47","0","-12533","-182","20","0","0" +"8376","343","48","0","-12581","-29","19","0","0" +"8377","343","49","0","-12549","186","5","0","0" +"8378","343","50","0","-12446","268","8","0","0" +"8379","343","51","0","-12379","230","21","0","0" +"8380","343","52","0","-12377","169","10","0","0" +"9473","343","53","0","-12413","145","5","0","0" +"8433","344","0","0","-12410","148","4","0","0" +"8432","344","1","0","-12402","156","5","0","0" +"8431","344","2","0","-12388","192","8","0","0" +"8430","344","3","0","-12407","230","13","0","0" +"8429","344","4","0","-12452","226","15","0","0" +"8428","344","5","0","-12535","177","14","0","0" +"8427","344","6","0","-12596","87","20","0","0" +"8426","344","7","0","-12602","-38","28","0","0" +"8425","344","8","0","-12519","-202","25","0","0" +"8424","344","9","0","-12413","-300","23","0","0" +"8423","344","10","0","-12212","-334","26","0","0" +"8422","344","11","0","-12113","-363","26","0","0" +"8421","344","12","0","-12017","-399","16","0","0" +"8420","344","13","0","-11915","-408","14","0","0" +"8419","344","14","0","-11822","-383","14","0","0" +"8418","344","15","0","-11730","-342","20","0","0" +"8417","344","16","0","-11635","-279","53","0","0" +"8416","344","17","0","-11544","-322","48","0","0" +"8415","344","18","0","-11476","-287","46","0","0" +"8414","344","19","0","-11383","-290","64","0","0" +"8413","344","20","0","-11343","-339","57","0","0" +"8412","344","21","0","-11307","-418","63","0","0" +"8411","344","22","0","-11284","-455","100","0","0" +"8410","344","23","0","-11206","-512","124","0","0" +"8409","344","24","0","-11105","-656","121","0","0" +"8408","344","25","0","-11050","-777","124","0","0" +"8407","344","26","0","-10984","-897","121","0","0" +"8406","344","27","0","-10858","-1097","133","0","0" +"8405","344","28","0","-10658","-1232","118","0","0" +"8404","344","29","0","-10428","-1289","132","0","0" +"8403","344","30","0","-10374","-1438","148","0","0" +"8402","344","31","0","-10459","-1605","142","0","0" +"8401","344","32","0","-10458","-1739","143","0","0" +"8400","344","33","0","-10430","-1856","142","0","0" +"8399","344","34","0","-10441","-1951","122","0","0" +"8398","344","35","0","-10432","-2026","111","0","0" +"8397","344","36","0","-10505","-2047","103","0","0" +"8396","344","37","0","-10542","-2098","100","0","0" +"8395","344","38","0","-10594","-2131","101","0","0" +"8394","344","39","0","-10584","-2210","103","0","0" +"8393","344","40","0","-10554","-2330","98","0","0" +"8392","344","41","0","-10588","-2408","113","0","0" +"8391","344","42","0","-10607","-2497","111","0","0" +"8390","344","43","0","-10575","-2585","95","0","0" +"8389","344","44","0","-10326","-2879","82","0","0" +"8388","344","45","0","-10146","-3079","79","0","0" +"8387","344","46","0","-10157","-3276","79","0","0" +"8386","344","47","0","-10282","-3440","79","0","0" +"8385","344","48","0","-10420","-3365","75","0","0" +"8384","344","49","0","-10435","-3290","28","0","0" +"8383","344","50","0","-10455","-3276","22","0","0" +"8434","345","0","1","-1196","29","178","0","0" +"8435","345","1","1","-1199","30","179","0","0" +"8436","345","2","1","-1222","35","183","0","0" +"8437","345","3","1","-1285","45","191","0","0" +"8438","345","4","1","-1395","-70","198","0","0" +"8439","345","5","1","-1528","-265","133","0","0" +"8440","345","6","1","-1666","-666","17","0","0" +"8441","345","7","1","-2103","-735","25","0","0" +"8442","345","8","1","-2389","-950","12","0","0" +"8443","345","9","1","-2420","-1262","8","0","0" +"8444","345","10","1","-2343","-1503","76","0","0" +"8445","345","11","1","-2371","-1883","111","0","0" +"8446","345","12","1","-2230","-2071","113","0","0" +"8447","345","13","1","-2282","-2359","104","0","0" +"8448","345","14","1","-2487","-2452","124","0","0" +"8449","345","15","1","-2706","-2345","170","0","0" +"8450","345","16","1","-3062","-2039","120","0","0" +"8451","345","17","1","-3200","-1827","147","0","0" +"8452","345","18","1","-3456","-1713","184","0","0" +"8453","345","19","1","-3634","-1929","128","0","0" +"8454","345","20","1","-3731","-2423","111","0","0" +"8455","345","21","1","-3635","-2825","102","0","0" +"8456","345","22","1","-3300","-3094","133","0","0" +"8457","345","23","1","-3005","-3096","151","0","0" +"9521","345","24","1","-2904","-2871","149","0","0" +"9522","345","25","1","-3146","-2842","37","0","0" +"8458","346","0","0","930","-1429","65","0","0" +"8459","346","1","0","945","-1421","73","0","0" +"8460","346","2","0","983","-1428","90","0","0" +"8461","346","3","0","1032","-1492","111","0","0" +"8462","346","4","0","969","-1549","104","0","0" +"8463","346","5","0","898","-1488","101","0","0" +"8464","346","6","0","822","-1468","108","0","0" +"8465","346","7","0","785","-1466","119","0","0" +"8466","346","8","0","647","-1473","101","0","0" +"8467","346","9","0","512","-1541","78","0","0" +"8468","346","10","0","422","-1506","72","0","0" +"8469","346","11","0","344","-1420","56","0","0" +"8470","346","12","0","275","-1294","48","0","0" +"8471","346","13","0","174","-1191","47","0","0" +"8472","346","14","0","47","-1125","46","0","0" +"8473","346","15","0","-75","-1113","48","0","0" +"8474","346","16","0","-166","-1129","47","0","0" +"8475","346","17","0","-256","-1096","46","0","0" +"8476","346","18","0","-350","-1100","47","0","0" +"8477","346","19","0","-419","-1050","49","0","0" +"8478","346","20","0","-469","-961","49","0","0" +"8479","346","21","0","-538","-883","41","0","0" +"8480","346","22","0","-567","-827","22","0","0" +"8481","346","23","0","-642","-747","42","0","0" +"8482","346","24","0","-617","-649","56","0","0" +"8483","346","25","0","-606","-578","60","0","0" +"8484","346","26","0","-682","-559","42","0","0" +"9159","346","27","0","-713","-520","28","0","0" +"8511","347","0","0","-714","-516","26","0","0" +"8510","347","1","0","-716","-537","31","0","0" +"8509","347","2","0","-732","-601","39","0","0" +"8508","347","3","0","-726","-718","42","0","0" +"8507","347","4","0","-628","-765","33","0","0" +"8506","347","5","0","-538","-883","43","0","0" +"8505","347","6","0","-469","-961","49","0","0" +"8504","347","7","0","-419","-1050","49","0","0" +"8503","347","8","0","-350","-1100","47","0","0" +"8502","347","9","0","-256","-1096","46","0","0" +"8501","347","10","0","-166","-1129","47","0","0" +"8500","347","11","0","-75","-1113","48","0","0" +"8499","347","12","0","47","-1125","46","0","0" +"8498","347","13","0","174","-1191","47","0","0" +"8497","347","14","0","275","-1294","48","0","0" +"8496","347","15","0","344","-1420","56","0","0" +"8495","347","16","0","422","-1506","72","0","0" +"8494","347","17","0","512","-1541","78","0","0" +"8493","347","18","0","631","-1472","101","0","0" +"8492","347","19","0","827","-1471","113","0","0" +"8491","347","20","0","926","-1510","103","0","0" +"8490","347","21","0","987","-1461","86","0","0" +"8489","347","22","0","978","-1426","77","0","0" +"8488","347","23","0","948","-1421","70","0","0" +"8487","347","24","0","931","-1430","65","0","0" +"8535","348","0","1","-3142","-2843","35","0","0" +"8534","348","1","1","-3138","-2847","35","0","0" +"8533","348","2","1","-3126","-2861","40","0","0" +"8532","348","3","1","-3122","-2889","51","0","0" +"8531","348","4","1","-3139","-2936","73","0","0" +"8530","348","5","1","-3201","-2971","92","0","0" +"8529","348","6","1","-3371","-2987","112","0","0" +"8528","348","7","1","-3605","-2812","102","0","0" +"8527","348","8","1","-3731","-2423","111","0","0" +"8526","348","9","1","-3634","-1929","128","0","0" +"8525","348","10","1","-3456","-1713","184","0","0" +"8524","348","11","1","-3200","-1827","147","0","0" +"8523","348","12","1","-3062","-2039","120","0","0" +"8522","348","13","1","-2706","-2345","170","0","0" +"8521","348","14","1","-2487","-2452","124","0","0" +"8520","348","15","1","-2282","-2359","104","0","0" +"8519","348","16","1","-2230","-2071","113","0","0" +"8518","348","17","1","-2371","-1883","111","0","0" +"8517","348","18","1","-2343","-1503","76","0","0" +"8516","348","19","1","-2420","-1262","8","0","0" +"8515","348","20","1","-2389","-950","12","0","0" +"9080","348","21","1","-2106","-726","25","0","0" +"9081","348","22","1","-1643","-737","17","0","0" +"9082","348","23","1","-1148","-286","187","0","0" +"9083","348","24","1","-1072","-91","206","0","0" +"9084","348","25","1","-1116","-6","206","0","0" +"12431","348","26","1","-1158","21","189","0","0" +"12432","348","27","1","-1196","29","179","0","0" +"8536","349","0","0","284","-2003","196","0","0" +"8537","349","1","0","283","-2006","196","0","0" +"8538","349","2","0","274","-2023","197","0","0" +"8539","349","3","0","250","-2056","201","0","0" +"8540","349","4","0","183","-2187","215","0","0" +"8541","349","5","0","171","-2428","304","0","0" +"8542","349","6","0","403","-2499","321","0","0" +"8543","349","7","0","538","-2509","294","0","0" +"8544","349","8","0","601","-2493","277","0","0" +"8545","349","9","0","659","-2512","264","0","0" +"8546","349","10","0","717","-2485","236","0","0" +"8547","349","11","0","761","-2447","199","0","0" +"8548","349","12","0","791","-2410","173","0","0" +"8549","349","13","0","889","-2388","103","0","0" +"8550","349","14","0","1052","-2457","96","0","0" +"8551","349","15","0","1178","-2555","112","0","0" +"8552","349","16","0","1182","-2672","143","0","0" +"8553","349","17","0","1197","-2851","64","0","0" +"8572","349","18","0","1355","-3027","76","0","0" +"8573","349","19","0","1499","-3103","152","0","0" +"8574","349","20","0","1678","-3410","188","0","0" +"8575","349","21","0","1780","-3946","184","0","0" +"8576","349","22","0","1879","-4186","147","0","0" +"8658","349","23","0","2025","-4477","134","0","0" +"8659","349","24","0","1929","-4948","155","0","0" +"8660","349","25","0","1994","-5195","127","0","0" +"9049","349","26","0","2148","-5316","128","0","0" +"9050","349","27","0","2271","-5340","90","0","0" +"8554","350","0","1","3373","998","6","0","0" +"8555","350","1","1","3377","998","6","0","0" +"8556","350","2","1","3395","999","10","0","0" +"8557","350","3","1","3457","1000","24","0","0" +"8558","350","4","1","3534","965","29","0","0" +"8559","350","5","1","3591","905","31","0","0" +"8560","350","6","1","3591","815","31","0","0" +"8561","350","7","1","3485","685","27","0","0" +"8562","350","8","1","3405","619","27","0","0" +"8563","350","9","1","3417","503","27","0","0" +"8564","350","10","1","3401","420","27","0","0" +"8565","350","11","1","3333","370","23","0","0" +"8566","350","12","1","3297","257","18","0","0" +"8567","350","13","1","3205","225","28","0","0" +"8568","350","14","1","3087","217","47","0","0" +"8569","350","15","1","3019","152","71","0","0" +"8570","350","16","1","2909","186","95","0","0" +"8571","350","17","1","2824","157","116","0","0" +"8578","350","18","1","2819","50","112","0","0" +"8579","350","19","1","2786","-17","108","0","0" +"8580","350","20","1","2702","-60","109","0","0" +"8581","350","21","1","2662","-139","115","0","0" +"8582","350","22","1","2659","-256","115","0","0" +"8583","350","23","1","2609","-326","115","0","0" +"8584","350","24","1","2504","-351","119","0","0" +"8585","350","25","1","2423","-311","119","0","0" +"8586","350","26","1","2363","-323","115","0","0" +"8587","350","27","1","2347","-395","110","0","0" +"8588","350","28","1","2410","-467","118","0","0" +"8589","350","29","1","2441","-534","127","0","0" +"8590","350","30","1","2448","-646","130","0","0" +"8591","350","31","1","2515","-811","142","0","0" +"8592","350","32","1","2527","-936","145","0","0" +"8593","350","33","1","2485","-1140","140","0","0" +"8594","350","34","1","2575","-1265","158","0","0" +"8595","350","35","1","2572","-1437","171","0","0" +"8596","350","36","1","2523","-1595","160","0","0" +"8597","350","37","1","2503","-1720","153","0","0" +"8598","350","38","1","2537","-1850","155","0","0" +"8599","350","39","1","2600","-1935","162","0","0" +"8600","350","40","1","2565","-1989","158","0","0" +"8601","350","41","1","2451","-2006","150","0","0" +"8602","350","42","1","2377","-2042","140","0","0" +"8603","350","43","1","2286","-2164","126","0","0" +"8604","350","44","1","2267","-2315","119","0","0" +"8605","350","45","1","2214","-2445","102","0","0" +"8606","350","46","1","2196","-2511","104","0","0" +"8607","350","47","1","2221","-2549","109","0","0" +"8608","350","48","1","2269","-2543","109","0","0" +"9534","350","49","1","2307","-2525","105","0","0" +"8657","351","0","1","2307","-2525","105","0","0" +"8656","351","1","1","2294","-2529","106","0","0" +"8655","351","2","1","2221","-2549","111","0","0" +"8654","351","3","1","2196","-2511","104","0","0" +"8653","351","4","1","2214","-2445","102","0","0" +"8652","351","5","1","2267","-2315","119","0","0" +"8651","351","6","1","2286","-2164","126","0","0" +"8650","351","7","1","2377","-2042","140","0","0" +"8649","351","8","1","2451","-2006","150","0","0" +"8648","351","9","1","2565","-1989","158","0","0" +"8647","351","10","1","2600","-1935","162","0","0" +"8646","351","11","1","2537","-1850","155","0","0" +"8645","351","12","1","2503","-1720","153","0","0" +"8644","351","13","1","2523","-1595","160","0","0" +"8643","351","14","1","2572","-1437","171","0","0" +"8642","351","15","1","2575","-1265","158","0","0" +"8641","351","16","1","2485","-1140","140","0","0" +"8640","351","17","1","2527","-936","145","0","0" +"8639","351","18","1","2515","-811","142","0","0" +"8638","351","19","1","2448","-646","130","0","0" +"8637","351","20","1","2441","-534","127","0","0" +"8636","351","21","1","2410","-467","118","0","0" +"8635","351","22","1","2347","-395","110","0","0" +"8634","351","23","1","2363","-323","115","0","0" +"8633","351","24","1","2423","-311","119","0","0" +"8632","351","25","1","2504","-351","119","0","0" +"8631","351","26","1","2609","-326","115","0","0" +"8630","351","27","1","2659","-256","115","0","0" +"8629","351","28","1","2662","-139","115","0","0" +"8628","351","29","1","2702","-60","109","0","0" +"8627","351","30","1","2786","-17","108","0","0" +"8626","351","31","1","2819","50","112","0","0" +"8625","351","32","1","2824","157","116","0","0" +"8624","351","33","1","2909","186","95","0","0" +"8623","351","34","1","3019","152","71","0","0" +"8622","351","35","1","3087","217","47","0","0" +"8621","351","36","1","3205","225","28","0","0" +"8620","351","37","1","3297","257","18","0","0" +"8619","351","38","1","3333","370","23","0","0" +"8618","351","39","1","3401","420","27","0","0" +"8617","351","40","1","3417","503","27","0","0" +"8616","351","41","1","3405","619","27","0","0" +"8615","351","42","1","3485","685","27","0","0" +"8614","351","43","1","3591","815","31","0","0" +"8613","351","44","1","3550","909","31","0","0" +"8612","351","45","1","3466","931","31","0","0" +"8611","351","46","1","3409","938","26","0","0" +"8610","351","47","1","3373","974","19","0","0" +"8609","351","48","1","3373","999","5","0","0" +"8726","352","0","0","2270","-5341","88","0","0" +"8725","352","1","0","2270","-5302","100","0","0" +"8724","352","2","0","2291","-5232","108","0","0" +"8723","352","3","0","2387","-5010","125","0","0" +"8722","352","4","0","2347","-4788","145","0","0" +"8721","352","5","0","2044","-4490","134","0","0" +"8720","352","6","0","1788","-4389","147","0","0" +"8719","352","7","0","1780","-3946","184","0","0" +"8718","352","8","0","1678","-3410","188","0","0" +"8717","352","9","0","1499","-3103","152","0","0" +"8716","352","10","0","1355","-3027","76","0","0" +"8715","352","11","0","1197","-2851","64","0","0" +"8714","352","12","0","1182","-2672","143","0","0" +"8713","352","13","0","1178","-2555","112","0","0" +"8712","352","14","0","1052","-2457","96","0","0" +"8711","352","15","0","889","-2388","103","0","0" +"8710","352","16","0","791","-2410","173","0","0" +"8709","352","17","0","761","-2447","199","0","0" +"8708","352","18","0","717","-2485","236","0","0" +"8707","352","19","0","659","-2512","264","0","0" +"8706","352","20","0","601","-2493","277","0","0" +"8705","352","21","0","538","-2509","294","0","0" +"8704","352","22","0","403","-2499","321","0","0" +"8703","352","23","0","256","-2381","252","0","0" +"8702","352","24","0","257","-2128","227","0","0" +"8701","352","25","0","285","-2003","197","0","0" +"8811","353","0","1","-4417","200","25","0","0" +"8812","353","1","1","-4419","200","25","0","0" +"8813","353","2","1","-4425","199","26","0","0" +"8814","353","3","1","-4470","192","26","0","0" +"8815","353","4","1","-4484","163","23","0","0" +"8816","353","5","1","-4453","125","29","0","0" +"8817","353","6","1","-4371","70","51","0","0" +"8818","353","7","1","-4314","-22","69","0","0" +"8819","353","8","1","-4240","-186","69","0","0" +"8820","353","9","1","-4268","-294","72","0","0" +"8821","353","10","1","-4336","-414","60","0","0" +"8822","353","11","1","-4450","-561","23","0","0" +"8823","353","12","1","-4479","-680","0","0","0" +"8824","353","13","1","-4470","-802","-40","0","0" +"8825","353","14","1","-4390","-873","-35","0","0" +"8826","353","15","1","-4347","-990","-41","0","0" +"8827","353","16","1","-4401","-1079","-36","0","0" +"8828","353","17","1","-4505","-1139","-33","0","0" +"8829","353","18","1","-4613","-1313","-22","0","0" +"8830","353","19","1","-4640","-1431","-26","0","0" +"8831","353","20","1","-4812","-1533","5","0","0" +"8832","353","21","1","-4941","-1539","-6","0","0" +"8833","353","22","1","-4971","-1640","-2","0","0" +"8834","353","23","1","-4923","-1776","18","0","0" +"8835","353","24","1","-4844","-1833","38","0","0" +"8836","353","25","1","-4742","-1787","77","0","0" +"8837","353","26","1","-4665","-1838","121","0","0" +"8838","353","27","1","-4485","-1874","106","0","0" +"8839","353","28","1","-4192","-1901","113","0","0" +"8840","353","29","1","-4103","-2139","99","0","0" +"8841","353","30","1","-3696","-2193","103","0","0" +"8842","353","31","1","-3295","-2112","112","0","0" +"8843","353","32","1","-3022","-2026","111","0","0" +"8844","353","33","1","-2743","-2135","107","0","0" +"8845","353","34","1","-2449","-2157","109","0","0" +"8846","353","35","1","-2214","-2289","137","0","0" +"8847","353","36","1","-1908","-2274","114","0","0" +"8848","353","37","1","-1378","-2839","138","0","0" +"8849","353","38","1","-1064","-2792","115","0","0" +"8850","353","39","1","-707","-2443","131","0","0" +"8851","353","40","1","-494","-2446","110","0","0" +"9157","353","41","1","-413","-2522","125","0","0" +"9158","353","42","1","-443","-2589","98","0","0" +"8809","354","0","1","-442","-2599","98","0","0" +"8808","354","1","1","-447","-2634","106","0","0" +"8807","354","2","1","-434","-2673","111","0","0" +"8806","354","3","1","-375","-2688","117","0","0" +"8805","354","4","1","-235","-2700","116","0","0" +"8804","354","5","1","-36","-2654","103","0","0" +"8803","354","6","1","101","-2521","128","0","0" +"8802","354","7","1","231","-2371","211","0","0" +"8801","354","8","1","350","-2305","249","0","0" +"8800","354","9","1","441","-2292","209","0","0" +"8799","354","10","1","565","-2304","147","0","0" +"8798","354","11","1","645","-2321","120","0","0" +"8797","354","12","1","728","-2305","111","0","0" +"8796","354","13","1","809","-2251","114","0","0" +"8795","354","14","1","965","-2127","182","0","0" +"8794","354","15","1","1103","-2134","186","0","0" +"8793","354","16","1","1195","-2142","160","0","0" +"8792","354","17","1","1317","-2145","113","0","0" +"8791","354","18","1","1457","-2163","97","0","0" +"8790","354","19","1","1558","-2159","99","0","0" +"8789","354","20","1","1632","-2017","115","0","0" +"8788","354","21","1","1708","-1963","108","0","0" +"8787","354","22","1","1863","-1970","122","0","0" +"8786","354","23","1","1990","-1941","107","0","0" +"8785","354","24","1","2058","-1865","108","0","0" +"8784","354","25","1","2287","-1708","128","0","0" +"8783","354","26","1","2348","-1630","133","0","0" +"8782","354","27","1","2377","-1492","133","0","0" +"8781","354","28","1","2457","-1306","140","0","0" +"8780","354","29","1","2464","-1196","133","0","0" +"8779","354","30","1","2503","-1090","139","0","0" +"8778","354","31","1","2519","-926","143","0","0" +"8777","354","32","1","2486","-829","147","0","0" +"8776","354","33","1","2475","-696","133","0","0" +"8775","354","34","1","2506","-632","126","0","0" +"8774","354","35","1","2622","-600","123","0","0" +"8773","354","36","1","2750","-535","117","0","0" +"8772","354","37","1","2839","-460","111","0","0" +"8771","354","38","1","2864","-363","111","0","0" +"8770","354","39","1","2844","-254","119","0","0" +"8769","354","40","1","2870","-150","113","0","0" +"8768","354","41","1","2859","-33","110","0","0" +"8767","354","42","1","2811","94","113","0","0" +"8766","354","43","1","2830","160","111","0","0" +"8765","354","44","1","2901","188","98","0","0" +"8764","354","45","1","3015","168","72","0","0" +"8763","354","46","1","3099","222","45","0","0" +"8762","354","47","1","3206","195","29","0","0" +"8761","354","48","1","3276","239","22","0","0" +"8760","354","49","1","3327","331","18","0","0" +"8759","354","50","1","3422","419","22","0","0" +"8758","354","51","1","3496","506","15","0","0" +"8757","354","52","1","3518","579","19","0","0" +"8756","354","53","1","3503","706","23","0","0" +"8755","354","54","1","3557","828","27","0","0" +"8754","354","55","1","3530","916","25","0","0" +"8753","354","56","1","3490","962","22","0","0" +"8752","354","57","1","3435","990","17","0","0" +"8751","354","58","1","3373","999","8","0","0" +"8893","355","0","1","-439","-2596","97","0","0" +"8892","355","1","1","-452","-2621","103","0","0" +"8891","355","2","1","-491","-2647","108","0","0" +"8890","355","3","1","-592","-2654","103","0","0" +"8889","355","4","1","-750","-2668","113","0","0" +"8888","355","5","1","-1378","-2839","138","0","0" +"8887","355","6","1","-1971","-2315","145","0","0" +"8886","355","7","1","-2324","-2304","146","0","0" +"8885","355","8","1","-2472","-2165","119","0","0" +"8884","355","9","1","-2804","-2158","122","0","0" +"8883","355","10","1","-3031","-2035","133","0","0" +"8882","355","11","1","-3696","-2193","135","0","0" +"8881","355","12","1","-4015","-2153","113","0","0" +"8880","355","13","1","-4192","-1901","120","0","0" +"8879","355","14","1","-4665","-1838","123","0","0" +"8878","355","15","1","-4844","-1833","82","0","0" +"8877","355","16","1","-4923","-1776","42","0","0" +"8876","355","17","1","-4971","-1640","28","0","0" +"8875","355","18","1","-4941","-1539","19","0","0" +"8874","355","19","1","-4812","-1533","5","0","0" +"8873","355","20","1","-4640","-1431","-23","0","0" +"8872","355","21","1","-4613","-1313","-17","0","0" +"8871","355","22","1","-4505","-1139","-32","0","0" +"8870","355","23","1","-4401","-1079","-31","0","0" +"8869","355","24","1","-4347","-990","-37","0","0" +"8868","355","25","1","-4390","-873","-27","0","0" +"8867","355","26","1","-4470","-802","-30","0","0" +"8866","355","27","1","-4479","-680","1","0","0" +"8865","355","28","1","-4450","-561","23","0","0" +"8864","355","29","1","-4336","-414","63","0","0" +"8863","355","30","1","-4240","-186","71","0","0" +"8862","355","31","1","-4285","-78","78","0","0" +"8861","355","32","1","-4263","80","79","0","0" +"9171","355","33","1","-4309","150","75","0","0" +"12703","355","34","1","-4384","193","38","0","0" +"12704","355","35","1","-4409","201","27","0","0" +"8905","356","0","1","-1771","3265","6","0","0" +"8906","356","1","1","-1773","3268","5","0","0" +"8907","356","2","1","-1781","3283","5","0","0" +"8908","356","3","1","-1773","3303","8","0","0" +"8909","356","4","1","-1721","3332","16","0","0" +"8910","356","5","1","-1677","3285","25","0","0" +"8911","356","6","1","-1693","3180","41","0","0" +"8912","356","7","1","-1780","3044","72","0","0" +"8913","356","8","1","-1688","2905","125","0","0" +"8914","356","9","1","-1459","2852","160","0","0" +"8915","356","10","1","-1260","2872","144","0","0" +"8916","356","11","1","-1129","2733","159","0","0" +"8917","356","12","1","-1062","2516","177","0","0" +"8918","356","13","1","-951","2424","124","0","0" +"8919","356","14","1","-871","2311","126","0","0" +"8920","356","15","1","-655","2293","117","0","0" +"8928","356","16","1","-499","2159","116","0","0" +"8929","356","17","1","-399","1959","141","0","0" +"8930","356","18","1","-241","1811","177","0","0" +"8931","356","19","1","-85","1717","125","0","0" +"8932","356","20","1","96","1733","111","0","0" +"8933","356","21","1","245","1833","111","0","0" +"8934","356","22","1","414","1780","65","0","0" +"8935","356","23","1","534","1766","49","0","0" +"8936","356","24","1","634","1722","43","0","0" +"8937","356","25","1","757","1716","46","0","0" +"8938","356","26","1","882","1554","57","0","0" +"8939","356","27","1","1142","1529","71","0","0" +"8940","356","28","1","1293","1433","122","0","0" +"8941","356","29","1","1497","1386","168","0","0" +"8942","356","30","1","1521","1142","195","0","0" +"8956","356","31","1","1408","1009","212","0","0" +"8957","356","32","1","1387","844","239","0","0" +"8958","356","33","1","1266","775","253","0","0" +"8959","356","34","1","1121","806","232","0","0" +"8960","356","35","1","1025","728","189","0","0" +"8961","356","36","1","955","775","162","0","0" +"8962","356","37","1","929","884","143","0","0" +"8963","356","38","1","946","991","118","0","0" +"9457","356","39","1","965","1038","105","0","0" +"8896","357","0","0","1570","267","-42","0","0" +"8897","357","1","0","1564","252","-39","0","0" +"8898","357","2","0","1564","230","-34","0","0" +"8899","357","3","0","1595","214","-28","0","0" +"8900","357","4","0","1637","239","-30","0","0" +"8901","357","5","0","1742","242","-43","0","0" +"8902","357","6","0","1741","297","-43","0","0" +"8903","357","7","0","1690","362","-34","0","0" +"8904","357","8","0","1686","393","5","0","0" +"8921","357","9","0","1727","469","3","0","0" +"8922","357","10","0","1701","526","-5","0","0" +"8923","357","11","0","1670","559","-7","0","0" +"8924","357","12","0","1690","604","10","0","0" +"8925","357","13","0","1673","642","24","0","0" +"8926","357","14","0","1620","643","45","0","0" +"8927","357","15","0","1589","678","58","0","0" +"8943","357","16","0","1600","716","80","0","0" +"8944","357","17","0","1643","731","87","0","0" +"8945","357","18","0","1767","718","94","0","0" +"8946","357","19","0","1818","634","87","0","0" +"8947","357","20","0","1805","542","90","0","0" +"8948","357","21","0","1901","433","79","0","0" +"8949","357","22","0","1950","280","52","0","0" +"8950","357","23","0","1905","-198","55","0","0" +"8951","357","24","0","1716","-472","56","0","0" +"8952","357","25","0","1663","-704","64","0","0" +"8953","357","26","0","1717","-812","126","0","0" +"8954","357","27","0","1738","-1125","162","0","0" +"8955","357","28","0","1481","-1484","129","0","0" +"8964","357","29","0","1705","-1767","164","0","0" +"8965","357","30","0","1921","-2543","158","0","0" +"8966","357","31","0","1728","-3468","158","0","0" +"8967","357","32","0","1827","-3751","181","0","0" +"8968","357","33","0","1719","-4582","182","0","0" +"8969","357","34","0","1775","-5053","132","0","0" +"9520","357","35","0","2206","-5130","139","0","0" +"12198","357","36","0","2328","-5285","83","0","0" +"9008","358","0","1","960","1038","106","0","0" +"9007","358","1","1","953","1043","110","0","0" +"9006","358","2","1","930","1055","128","0","0" +"9005","358","3","1","852","1074","162","0","0" +"9004","358","4","1","791","1117","210","0","0" +"9003","358","5","1","760","1190","184","0","0" +"9002","358","6","1","747","1284","142","0","0" +"9001","358","7","1","651","1480","89","0","0" +"9000","358","8","1","534","1766","49","0","0" +"8999","358","9","1","414","1780","65","0","0" +"8998","358","10","1","245","1833","111","0","0" +"8997","358","11","1","96","1733","111","0","0" +"8996","358","12","1","-85","1717","125","0","0" +"8995","358","13","1","-241","1811","177","0","0" +"8994","358","14","1","-399","1959","141","0","0" +"8993","358","15","1","-499","2159","116","0","0" +"8992","358","16","1","-655","2293","117","0","0" +"8991","358","17","1","-871","2311","126","0","0" +"8990","358","18","1","-951","2424","124","0","0" +"8989","358","19","1","-1062","2516","177","0","0" +"8988","358","20","1","-1129","2733","159","0","0" +"8987","358","21","1","-1260","2872","144","0","0" +"8986","358","22","1","-1473","2862","160","0","0" +"8985","358","23","1","-1685","2900","125","0","0" +"8984","358","24","1","-1824","3075","72","0","0" +"8983","358","25","1","-1736","3163","45","0","0" +"8982","358","26","1","-1725","3219","26","0","0" +"8981","358","27","1","-1751","3256","17","0","0" +"8980","358","28","1","-1771","3265","8","0","0" +"9044","359","0","0","2327","-5285","83","0","0" +"9043","359","1","0","2316","-5265","86","0","0" +"9042","359","2","0","2303","-5235","92","0","0" +"9041","359","3","0","2239","-5093","122","0","0" +"9040","359","4","0","2088","-4937","165","0","0" +"9039","359","5","0","1815","-4852","166","0","0" +"9038","359","6","0","1719","-4582","182","0","0" +"9037","359","7","0","1827","-3751","181","0","0" +"9036","359","8","0","1728","-3468","158","0","0" +"9035","359","9","0","1921","-2543","158","0","0" +"9034","359","10","0","1705","-1767","164","0","0" +"9033","359","11","0","1481","-1484","129","0","0" +"9032","359","12","0","1738","-1125","162","0","0" +"9031","359","13","0","1717","-812","126","0","0" +"9030","359","14","0","1663","-704","64","0","0" +"9029","359","15","0","1716","-472","56","0","0" +"9028","359","16","0","1905","-198","55","0","0" +"9027","359","17","0","1950","280","52","0","0" +"9026","359","18","0","2018","452","86","0","0" +"9025","359","19","0","1951","613","102","0","0" +"9024","359","20","0","1877","717","100","0","0" +"9023","359","21","0","1755","742","104","0","0" +"9022","359","22","0","1643","731","87","0","0" +"9021","359","23","0","1600","716","80","0","0" +"9020","359","24","0","1589","678","58","0","0" +"9019","359","25","0","1620","643","45","0","0" +"9018","359","26","0","1673","642","24","0","0" +"9017","359","27","0","1690","604","10","0","0" +"9016","359","28","0","1670","559","-7","0","0" +"9015","359","29","0","1701","526","-5","0","0" +"9014","359","30","0","1727","469","3","0","0" +"9013","359","31","0","1686","393","5","0","0" +"9012","359","32","0","1690","362","-34","0","0" +"9011","359","33","0","1741","297","-43","0","0" +"9010","359","34","0","1742","243","-33","0","0" +"9045","359","35","0","1637","239","-29","0","0" +"9399","359","36","0","1595","214","-28","0","0" +"9402","359","37","0","1568","236","-34","0","0" +"12189","359","38","0","1569","269","-41","0","0" +"9150","360","0","1","-439","-2599","97","0","0" +"9149","360","1","1","-460","-2641","105","0","0" +"9148","360","2","1","-511","-2657","112","0","0" +"9147","360","3","1","-617","-2629","119","0","0" +"9146","360","4","1","-872","-2434","130","0","0" +"9145","360","5","1","-1009","-2210","123","0","0" +"9144","360","6","1","-1186","-2031","120","0","0" +"9143","360","7","1","-1370","-2032","120","0","0" +"9142","360","8","1","-1634","-2098","119","0","0" +"9141","360","9","1","-1845","-1963","128","0","0" +"9140","360","10","1","-2003","-1916","116","0","0" +"9139","360","11","1","-2166","-1951","118","0","0" +"9138","360","12","1","-2296","-2045","125","0","0" +"9137","360","13","1","-2421","-2053","125","0","0" +"9136","360","14","1","-2765","-2012","130","0","0" +"9135","360","15","1","-3027","-2086","116","0","0" +"9134","360","16","1","-3181","-2216","114","0","0" +"9133","360","17","1","-3394","-2148","115","0","0" +"9132","360","18","1","-3608","-2251","114","0","0" +"9131","360","19","1","-3728","-2531","100","0","0" +"9130","360","20","1","-3678","-2725","94","0","0" +"9129","360","21","1","-3526","-2844","94","0","0" +"9128","360","22","1","-3315","-2948","93","0","0" +"9127","360","23","1","-3199","-2968","81","0","0" +"9126","360","24","1","-3134","-2919","69","0","0" +"9125","360","25","1","-3121","-2883","57","0","0" +"9124","360","26","1","-3129","-2857","44","0","0" +"9123","360","27","1","-3142","-2843","35","0","0" +"9216","361","0","0","-12415","144","4","0","0" +"9217","361","1","0","-12406","150","5","0","0" +"9218","361","2","0","-12396","161","6","0","0" +"9219","361","3","0","-12378","198","13","0","0" +"9220","361","4","0","-12378","234","18","0","0" +"9221","361","5","0","-12399","262","12","0","0" +"9222","361","6","0","-12448","264","11","0","0" +"9223","361","7","0","-12506","231","7","0","0" +"9224","361","8","0","-12586","135","4","0","0" +"9225","361","9","0","-12612","33","6","0","0" +"9226","361","10","0","-12600","-36","23","0","0" +"9227","361","11","0","-12536","-176","18","0","0" +"9228","361","12","0","-12457","-284","18","0","0" +"9229","361","13","0","-12308","-304","16","0","0" +"9230","361","14","0","-12186","-337","29","0","0" +"9231","361","15","0","-12037","-404","15","0","0" +"9232","361","16","0","-11901","-404","15","0","0" +"9233","361","17","0","-11765","-361","20","0","0" +"9234","361","18","0","-11687","-302","17","0","0" +"9235","361","19","0","-11623","-212","23","0","0" +"9236","361","20","0","-11546","-177","46","0","0" +"9237","361","21","0","-11492","-237","65","0","0" +"9238","361","22","0","-11441","-286","60","0","0" +"9239","361","23","0","-11375","-280","76","0","0" +"9240","361","24","0","-11316","-287","113","0","0" +"9241","361","25","0","-11255","-325","123","0","0" +"9242","361","26","0","-11138","-468","123","0","0" +"9243","361","27","0","-10973","-586","123","0","0" +"9244","361","28","0","-10977","-816","123","0","0" +"9245","361","29","0","-10887","-1053","133","0","0" +"9246","361","30","0","-10656","-1123","116","0","0" +"9247","361","31","0","-10495","-1214","116","0","0" +"9248","361","32","0","-10288","-1208","129","0","0" +"9249","361","33","0","-10142","-1251","125","0","0" +"9250","361","34","0","-9999","-1367","109","0","0" +"9251","361","35","0","-9928","-1511","58","0","0" +"9252","361","36","0","-9891","-1619","42","0","0" +"9253","361","37","0","-9857","-1749","75","0","0" +"9254","361","38","0","-9669","-1832","72","0","0" +"9255","361","39","0","-9582","-1950","79","0","0" +"9256","361","40","0","-9522","-2131","113","0","0" +"9257","361","41","0","-9375","-2364","107","0","0" +"9258","361","42","0","-9218","-2489","122","0","0" +"9259","361","43","0","-9096","-2556","134","0","0" +"9260","361","44","0","-8968","-2604","143","0","0" +"9261","361","45","0","-8848","-2569","152","0","0" +"9262","361","46","0","-8756","-2583","157","0","0" +"9263","361","47","0","-8632","-2574","144","0","0" +"9264","361","48","0","-8549","-2562","165","0","0" +"9265","361","49","0","-8382","-2532","150","0","0" +"9266","361","50","0","-8189","-2614","159","0","0" +"9267","361","51","0","-8024","-2577","180","0","0" +"9268","361","52","0","-7917","-2495","185","0","0" +"9269","361","53","0","-7865","-2278","182","0","0" +"9270","361","54","0","-7905","-1990","152","0","0" +"9271","361","55","0","-7808","-1834","166","0","0" +"9272","361","56","0","-7582","-1741","239","0","0" +"9273","361","57","0","-7498","-1632","291","0","0" +"9274","361","58","0","-7381","-1628","335","0","0" +"9275","361","59","0","-7196","-1673","263","0","0" +"9276","361","60","0","-7001","-1662","271","0","0" +"9277","361","61","0","-6899","-1785","269","0","0" +"9278","361","62","0","-6922","-1928","294","0","0" +"9279","361","63","0","-6946","-2042","305","0","0" +"9280","361","64","0","-6892","-2198","301","0","0" +"9281","361","65","0","-6778","-2460","292","0","0" +"9282","361","66","0","-6680","-2460","283","0","0" +"9283","361","67","0","-6623","-2340","268","0","0" +"12413","361","68","0","-6623","-2233","259","0","0" +"12414","361","69","0","-6633","-2179","247","0","0" +"9351","362","0","0","-6638","-2186","245","0","0" +"9350","362","1","0","-6648","-2190","247","0","0" +"9349","362","2","0","-6672","-2198","253","0","0" +"9348","362","3","0","-6737","-2211","270","0","0" +"9347","362","4","0","-6831","-2211","287","0","0" +"9346","362","5","0","-6909","-2158","301","0","0" +"9345","362","6","0","-6946","-2042","305","0","0" +"9344","362","7","0","-6922","-1928","294","0","0" +"9343","362","8","0","-6899","-1785","269","0","0" +"9342","362","9","0","-7001","-1662","271","0","0" +"9341","362","10","0","-7196","-1673","263","0","0" +"9340","362","11","0","-7381","-1628","335","0","0" +"9339","362","12","0","-7498","-1632","291","0","0" +"9338","362","13","0","-7582","-1741","239","0","0" +"9337","362","14","0","-7808","-1834","166","0","0" +"9336","362","15","0","-7905","-1990","152","0","0" +"9335","362","16","0","-7865","-2278","182","0","0" +"9334","362","17","0","-7917","-2495","185","0","0" +"9333","362","18","0","-8024","-2577","180","0","0" +"9332","362","19","0","-8189","-2614","159","0","0" +"9331","362","20","0","-8382","-2532","150","0","0" +"9330","362","21","0","-8549","-2562","165","0","0" +"9329","362","22","0","-8632","-2574","144","0","0" +"9328","362","23","0","-8756","-2583","157","0","0" +"9327","362","24","0","-8848","-2569","152","0","0" +"9326","362","25","0","-8968","-2604","143","0","0" +"9325","362","26","0","-9096","-2556","134","0","0" +"9324","362","27","0","-9218","-2489","122","0","0" +"9323","362","28","0","-9375","-2364","107","0","0" +"9322","362","29","0","-9522","-2131","113","0","0" +"9321","362","30","0","-9582","-1950","79","0","0" +"9320","362","31","0","-9669","-1832","72","0","0" +"9319","362","32","0","-9857","-1749","75","0","0" +"9318","362","33","0","-9891","-1619","42","0","0" +"9317","362","34","0","-9928","-1511","58","0","0" +"9316","362","35","0","-9999","-1367","109","0","0" +"9315","362","36","0","-10142","-1251","125","0","0" +"9314","362","37","0","-10288","-1208","129","0","0" +"9313","362","38","0","-10495","-1214","116","0","0" +"9312","362","39","0","-10656","-1123","116","0","0" +"9311","362","40","0","-10887","-1053","133","0","0" +"9310","362","41","0","-10977","-816","123","0","0" +"9309","362","42","0","-10973","-586","123","0","0" +"9308","362","43","0","-11138","-468","123","0","0" +"9307","362","44","0","-11255","-325","123","0","0" +"9306","362","45","0","-11316","-287","113","0","0" +"9305","362","46","0","-11375","-280","76","0","0" +"9304","362","47","0","-11441","-286","60","0","0" +"9303","362","48","0","-11492","-237","65","0","0" +"9302","362","49","0","-11546","-177","46","0","0" +"9301","362","50","0","-11623","-212","23","0","0" +"9300","362","51","0","-11687","-302","17","0","0" +"9299","362","52","0","-11765","-361","20","0","0" +"9298","362","53","0","-11901","-404","15","0","0" +"9297","362","54","0","-12037","-404","15","0","0" +"9296","362","55","0","-12186","-337","29","0","0" +"9295","362","56","0","-12308","-304","16","0","0" +"9294","362","57","0","-12457","-284","18","0","0" +"9293","362","58","0","-12536","-176","18","0","0" +"9292","362","59","0","-12600","-36","23","0","0" +"9291","362","60","0","-12612","33","6","0","0" +"9290","362","61","0","-12586","135","4","0","0" +"9289","362","62","0","-12506","231","7","0","0" +"9288","362","63","0","-12448","264","11","0","0" +"9287","362","64","0","-12399","262","12","0","0" +"9286","362","65","0","-12378","234","18","0","0" +"9285","362","66","0","-12378","198","15","0","0" +"9284","362","67","0","-12395","157","5","0","0" +"9352","362","68","0","-12405","148","3","0","0" +"9372","362","69","0","-12415","144","4","0","0" +"9535","363","0","1","6812","-4607","711","0","0" +"9536","363","1","1","6814","-4603","713","0","0" +"9537","363","2","1","6829","-4579","722","0","0" +"9538","363","3","1","6908","-4442","758","0","0" +"9539","363","4","1","6905","-4299","769","0","0" +"9540","363","5","1","6827","-4099","754","0","0" +"9541","363","6","1","6718","-3824","716","0","0" +"9564","363","7","1","6675","-3699","722","0","0" +"9565","363","8","1","6656","-3533","694","0","0" +"9566","363","9","1","6619","-3226","621","0","0" +"9567","363","10","1","6543","-3016","607","0","0" +"9568","363","11","1","6550","-2749","582","0","0" +"9569","363","12","1","6534","-2516","585","0","0" +"9570","363","13","1","6710","-2482","592","0","0" +"9571","363","14","1","6896","-2316","613","0","0" +"9572","363","15","1","6990","-2348","684","0","0" +"9573","363","16","1","7098","-2269","729","0","0" +"9574","363","17","1","7183","-2335","661","0","0" +"9575","363","18","1","7225","-2466","648","0","0" +"9588","363","19","1","7417","-2451","487","0","0" +"9589","363","20","1","7562","-2361","467","0","0" +"9590","363","21","1","7641","-2231","472","0","0" +"9591","363","22","1","7637","-2115","490","0","0" +"9592","363","23","1","7518","-2124","495","0","0" +"9658","363","24","1","7471","-2123","494","0","0" +"9548","364","0","1","7469","-2122","493","0","0" +"9549","364","1","1","7476","-2123","494","0","0" +"9550","364","2","1","7537","-2135","496","0","0" +"9551","364","3","1","7575","-2205","491","0","0" +"9552","364","4","1","7519","-2248","505","0","0" +"9553","364","5","1","7433","-2202","554","0","0" +"9561","364","6","1","7360","-2196","586","0","0" +"9562","364","7","1","7250","-2254","645","0","0" +"9563","364","8","1","7198","-2311","669","0","0" +"9576","364","9","1","7116","-2309","710","0","0" +"9577","364","10","1","6951","-2272","654","0","0" +"9578","364","11","1","6874","-2338","599","0","0" +"9579","364","12","1","6743","-2365","596","0","0" +"9580","364","13","1","6627","-2440","607","0","0" +"9581","364","14","1","6437","-2366","645","0","0" +"9582","364","15","1","6458","-2242","654","0","0" +"9583","364","16","1","6428","-2155","661","0","0" +"9584","364","17","1","6409","-2043","631","0","0" +"9585","364","18","1","6445","-1936","601","0","0" +"9586","364","19","1","6536","-1823","585","0","0" +"9587","364","20","1","6507","-1714","552","0","0" +"9593","364","21","1","6313","-1538","464","0","0" +"9594","364","22","1","6225","-1390","398","0","0" +"9595","364","23","1","6136","-1298","390","0","0" +"9596","364","24","1","6020","-1195","398","0","0" +"9597","364","25","1","5908","-1232","428","0","0" +"9598","364","26","1","5756","-1237","473","0","0" +"9599","364","27","1","5657","-1111","472","0","0" +"9600","364","28","1","5565","-986","427","0","0" +"9601","364","29","1","5569","-867","427","0","0" +"9602","364","30","1","5486","-747","398","0","0" +"9603","364","31","1","5389","-752","398","0","0" +"9604","364","32","1","5314","-777","408","0","0" +"9605","364","33","1","5290","-696","352","0","0" +"9606","364","34","1","5270","-611","329","0","0" +"9607","364","35","1","5265","-530","328","0","0" +"9608","364","36","1","5251","-388","326","0","0" +"9609","364","37","1","5244","-294","326","0","0" +"9610","364","38","1","5198","-275","337","0","0" +"9611","364","39","1","5143","-277","357","0","0" +"9612","364","40","1","5098","-309","369","0","0" +"9613","364","41","1","5081","-325","369","0","0" +"9614","364","42","1","5073","-335","369","0","0" +"9657","365","0","1","5073","-335","369","0","0" +"9656","365","1","1","5081","-325","369","0","0" +"9655","365","2","1","5098","-309","369","0","0" +"9654","365","3","1","5143","-277","357","0","0" +"9653","365","4","1","5198","-275","337","0","0" +"9652","365","5","1","5244","-294","326","0","0" +"9651","365","6","1","5262","-336","326","0","0" +"9650","365","7","1","5260","-497","335","0","0" +"9649","365","8","1","5269","-594","331","0","0" +"9648","365","9","1","5286","-702","354","0","0" +"9647","365","10","1","5345","-764","393","0","0" +"9646","365","11","1","5750","-652","422","0","0" +"9645","365","12","1","5899","-681","428","0","0" +"9644","365","13","1","6026","-709","404","0","0" +"9643","365","14","1","6086","-717","423","0","0" +"9642","365","15","1","6200","-730","425","0","0" +"9641","365","16","1","6256","-805","435","0","0" +"9640","365","17","1","6281","-1015","427","0","0" +"9639","365","18","1","6258","-1138","379","0","0" +"9638","365","19","1","6274","-1241","379","0","0" +"9637","365","20","1","6321","-1341","403","0","0" +"9636","365","21","1","6313","-1538","464","0","0" +"9635","365","22","1","6507","-1714","552","0","0" +"9634","365","23","1","6541","-1820","581","0","0" +"9633","365","24","1","6445","-1936","598","0","0" +"9632","365","25","1","6409","-2043","627","0","0" +"9631","365","26","1","6428","-2155","661","0","0" +"9630","365","27","1","6458","-2242","654","0","0" +"9629","365","28","1","6437","-2366","645","0","0" +"9628","365","29","1","6627","-2440","607","0","0" +"9627","365","30","1","6743","-2365","596","0","0" +"9626","365","31","1","6874","-2338","599","0","0" +"9625","365","32","1","6951","-2272","654","0","0" +"9624","365","33","1","7116","-2309","710","0","0" +"9623","365","34","1","7198","-2311","669","0","0" +"9622","365","35","1","7250","-2254","645","0","0" +"9621","365","36","1","7360","-2196","586","0","0" +"9620","365","37","1","7433","-2202","554","0","0" +"9619","365","38","1","7519","-2248","505","0","0" +"9618","365","39","1","7575","-2205","491","0","0" +"9617","365","40","1","7537","-2135","496","0","0" +"9616","365","41","1","7471","-2123","494","0","0" +"9683","366","0","1","7470","-2122","494","0","0" +"9682","366","1","1","7474","-2123","494","0","0" +"9681","366","2","1","7518","-2124","495","0","0" +"9680","366","3","1","7637","-2115","490","0","0" +"9679","366","4","1","7641","-2231","472","0","0" +"9678","366","5","1","7562","-2361","467","0","0" +"9677","366","6","1","7417","-2451","487","0","0" +"9676","366","7","1","7225","-2466","648","0","0" +"9675","366","8","1","7183","-2335","661","0","0" +"9674","366","9","1","7098","-2269","729","0","0" +"9673","366","10","1","6990","-2348","684","0","0" +"9672","366","11","1","6896","-2316","613","0","0" +"9671","366","12","1","6710","-2482","592","0","0" +"9670","366","13","1","6534","-2516","585","0","0" +"9669","366","14","1","6550","-2749","582","0","0" +"9668","366","15","1","6543","-3016","607","0","0" +"9667","366","16","1","6619","-3226","621","0","0" +"9666","366","17","1","6656","-3533","694","0","0" +"9665","366","18","1","6769","-3585","736","0","0" +"9664","366","19","1","6698","-3829","713","0","0" +"9663","366","20","1","6500","-4054","686","0","0" +"9662","366","21","1","6556","-4344","698","0","0" +"9661","366","22","1","6636","-4535","741","0","0" +"9660","366","23","1","6698","-4592","737","0","0" +"9659","366","24","1","6810","-4605","712","0","0" +"9717","367","0","1","7459","-2484","463","0","0" +"9716","367","1","1","7458","-2470","465","0","0" +"9715","367","2","1","7456","-2391","475","0","0" +"9714","367","3","1","7475","-2339","478","0","0" +"9713","367","4","1","7542","-2307","481","0","0" +"9712","367","5","1","7671","-2334","487","0","0" +"9711","367","6","1","7699","-2401","495","0","0" +"9710","367","7","1","7640","-2523","509","0","0" +"9709","367","8","1","7561","-2593","538","0","0" +"9708","367","9","1","7379","-2659","559","0","0" +"9707","367","10","1","7233","-2656","654","0","0" +"9706","367","11","1","7102","-2621","698","0","0" +"9705","367","12","1","6991","-2590","695","0","0" +"9704","367","13","1","6943","-2622","693","0","0" +"9703","367","14","1","6765","-2682","641","0","0" +"9702","367","15","1","6589","-2822","639","0","0" +"9701","367","16","1","6504","-2981","655","0","0" +"9700","367","17","1","6466","-3291","692","0","0" +"9699","367","18","1","6502","-3652","752","0","0" +"9698","367","19","1","6609","-4052","701","0","0" +"9697","367","20","1","6564","-4383","768","0","0" +"9696","367","21","1","6622","-4646","731","0","0" +"9695","367","22","1","6678","-4740","731","0","0" +"9694","367","23","1","6794","-4742","704","0","0" +"9737","368","0","1","7457","-2483","463","0","0" +"9736","368","1","1","7457","-2445","475","0","0" +"9735","368","2","1","7465","-2370","503","0","0" +"9734","368","3","1","7500","-2268","546","0","0" +"9733","368","4","1","7596","-2198","567","0","0" +"9732","368","5","1","7609","-2098","581","0","0" +"9731","368","6","1","7538","-1969","600","0","0" +"9730","368","7","1","7504","-1794","514","0","0" +"9729","368","8","1","7405","-1657","350","0","0" +"9728","368","9","1","7416","-1379","259","0","0" +"9727","368","10","1","7407","-1119","144","0","0" +"9726","368","11","1","7575","-770","118","0","0" +"9725","368","12","1","7582","-386","97","0","0" +"9724","368","13","1","7514","-70","69","0","0" +"9723","368","14","1","7370","199","48","0","0" +"9722","368","15","1","7069","471","59","0","0" +"9721","368","16","1","6628","600","71","0","0" +"9720","368","17","1","6448","490","34","0","0" +"9719","368","18","1","6361","506","27","0","0" +"10042","368","19","1","6335","556","18","0","0" +"9844","369","0","1","6208","-1951","572","0","0" +"9843","369","1","1","6221","-1960","575","0","0" +"9842","369","2","1","6255","-1968","579","0","0" +"9841","369","3","1","6323","-1932","576","0","0" +"9840","369","4","1","6493","-1910","588","0","0" +"9839","369","5","1","6543","-1793","585","0","0" +"9838","369","6","1","6517","-1679","541","0","0" +"9837","369","7","1","6594","-1543","495","0","0" +"9836","369","8","1","6617","-1386","505","0","0" +"9835","369","9","1","6566","-1244","461","0","0" +"9834","369","10","1","6367","-1193","416","0","0" +"9833","369","11","1","6370","-951","460","0","0" +"9832","369","12","1","6250","-856","425","0","0" +"9831","369","13","1","6192","-754","423","0","0" +"9830","369","14","1","6084","-715","423","0","0" +"9829","369","15","1","6006","-708","399","0","0" +"9828","369","16","1","5878","-684","385","0","0" +"9827","369","17","1","5771","-733","390","0","0" +"9826","369","18","1","5658","-740","389","0","0" +"9825","369","19","1","5487","-733","395","0","0" +"9824","369","20","1","5361","-766","389","0","0" +"9823","369","21","1","5297","-736","358","0","0" +"9822","369","22","1","5268","-618","333","0","0" +"9821","369","23","1","5266","-474","324","0","0" +"9820","369","24","1","5247","-400","323","0","0" +"9819","369","25","1","5261","-294","325","0","0" +"9818","369","26","1","5148","-216","251","0","0" +"9817","369","27","1","5217","-126","169","0","0" +"9816","369","28","1","5185","-60","115","0","0" +"9815","369","29","1","5063","-1","89","0","0" +"9814","369","30","1","4975","115","72","0","0" +"9813","369","31","1","4976","209","51","0","0" +"9812","369","32","1","5123","250","35","0","0" +"9811","369","33","1","5133","382","38","0","0" +"9810","369","34","1","5257","602","19","0","0" +"10351","369","35","1","5615","735","34","0","0" +"10352","369","36","1","6068","553","29","0","0" +"10353","369","37","1","6304","519","25","0","0" +"12194","369","38","1","6341","558","17","0","0" +"9897","371","0","1","6206","-1948","572","0","0" +"9896","371","1","1","6209","-1949","572","0","0" +"9895","371","2","1","6243","-1964","577","0","0" +"9894","371","3","1","6412","-2039","601","0","0" +"9893","371","4","1","6534","-2011","633","0","0" +"9892","371","5","1","6615","-2082","655","0","0" +"9891","371","6","1","6656","-2216","655","0","0" +"9890","371","7","1","6703","-2263","644","0","0" +"9889","371","8","1","6699","-2397","562","0","0" +"9888","371","9","1","6637","-2486","555","0","0" +"9887","371","10","1","6558","-2511","594","0","0" +"9886","371","11","1","6517","-2580","596","0","0" +"9885","371","12","1","6553","-2663","597","0","0" +"9884","371","13","1","6550","-2791","617","0","0" +"9883","371","14","1","6527","-2957","642","0","0" +"9882","371","15","1","6593","-3147","628","0","0" +"9881","371","16","1","6700","-3287","676","0","0" +"9880","371","17","1","6745","-3444","714","0","0" +"9879","371","18","1","6768","-3647","748","0","0" +"9878","371","19","1","6520","-4008","678","0","0" +"9877","371","20","1","6501","-4177","686","0","0" +"9876","371","21","1","6590","-4360","720","0","0" +"9875","371","22","1","6617","-4477","735","0","0" +"9874","371","23","1","6631","-4681","730","0","0" +"9873","371","24","1","6699","-4749","718","0","0" +"12845","371","25","1","6795","-4742","704","0","0" +"9950","372","0","1","6209","-1948","572","0","0" +"9949","372","1","1","6211","-1946","572","0","0" +"9948","372","2","1","6260","-1915","571","0","0" +"9947","372","3","1","6400","-1948","565","0","0" +"9946","372","4","1","6536","-1831","540","0","0" +"9945","372","5","1","6518","-1659","509","0","0" +"9944","372","6","1","6639","-1452","476","0","0" +"9943","372","7","1","6530","-1132","444","0","0" +"9942","372","8","1","6315","-999","427","0","0" +"9941","372","9","1","6207","-761","425","0","0" +"9940","372","10","1","6099","-706","436","0","0" +"9939","372","11","1","6025","-719","405","0","0" +"9938","372","12","1","5755","-648","378","0","0" +"9937","372","13","1","5579","-698","371","0","0" +"9936","372","14","1","5408","-662","356","0","0" +"9935","372","15","1","5239","-762","358","0","0" +"9934","372","16","1","4984","-735","317","0","0" +"9933","372","17","1","4738","-761","305","0","0" +"9932","372","18","1","4564","-866","315","0","0" +"9931","372","19","1","4502","-837","304","0","0" +"9930","372","20","1","4379","-868","298","0","0" +"9929","372","21","1","4308","-827","290","0","0" +"9928","372","22","1","4212","-901","295","0","0" +"9927","372","23","1","4058","-1047","272","0","0" +"9926","372","24","1","3915","-1098","274","0","0" +"9925","372","25","1","3898","-1283","228","0","0" +"9924","372","26","1","3729","-1494","205","0","0" +"9923","372","27","1","3450","-1434","183","0","0" +"9922","372","28","1","3276","-1569","182","0","0" +"9921","372","29","1","3184","-1730","180","0","0" +"9920","372","30","1","3052","-1779","182","0","0" +"9919","372","31","1","2922","-1863","175","0","0" +"9918","372","32","1","2803","-2029","178","0","0" +"9917","372","33","1","2657","-1982","168","0","0" +"9916","372","34","1","2497","-1997","152","0","0" +"9915","372","35","1","2366","-2061","143","0","0" +"9914","372","36","1","2278","-2194","121","0","0" +"9913","372","37","1","2243","-2356","113","0","0" +"9912","372","38","1","2209","-2466","101","0","0" +"9911","372","39","1","2178","-2586","113","0","0" +"9910","372","40","1","2119","-2704","118","0","0" +"9909","372","41","1","2144","-2817","129","0","0" +"9908","372","42","1","2108","-2965","125","0","0" +"9907","372","43","1","2178","-3070","126","0","0" +"9906","372","44","1","2192","-3206","122","0","0" +"9905","372","45","1","2258","-3284","117","0","0" +"9904","372","46","1","2404","-3327","124","0","0" +"9903","372","47","1","2520","-3518","129","0","0" +"9902","372","48","1","2695","-3639","131","0","0" +"9901","372","49","1","2709","-3713","126","0","0" +"9900","372","50","1","2699","-3844","117","0","0" +"9899","372","51","1","2722","-3880","102","0","0" +"9955","373","0","1","132","1325","194","0","0" +"9956","373","1","1","114","1347","199","0","0" +"9957","373","2","1","78","1380","200","0","0" +"9958","373","3","1","35","1382","169","0","0" +"9959","373","4","1","-53","1334","127","0","0" +"9960","373","5","1","-147","1254","107","0","0" +"9961","373","6","1","-423","1250","103","0","0" +"9962","373","7","1","-646","1082","110","0","0" +"9963","373","8","1","-854","1118","115","0","0" +"9964","373","9","1","-1046","1306","105","0","0" +"9965","373","10","1","-1248","1426","82","0","0" +"9966","373","11","1","-1619","1549","84","0","0" +"9967","373","12","1","-1790","1870","90","0","0" +"9968","373","13","1","-1909","1999","90","0","0" +"9969","373","14","1","-1946","2130","112","0","0" +"9970","373","15","1","-2032","2314","125","0","0" +"9971","373","16","1","-2224","2389","111","0","0" +"9972","373","17","1","-2407","2355","135","0","0" +"9973","373","18","1","-2578","2276","126","0","0" +"9974","373","19","1","-2950","2482","76","0","0" +"9975","373","20","1","-3191","2511","82","0","0" +"9976","373","21","1","-3503","2380","83","0","0" +"9977","373","22","1","-3655","2026","96","0","0" +"9978","373","23","1","-3851","1983","108","0","0" +"9979","373","24","1","-4152","2073","110","0","0" +"9980","373","25","1","-4228","2196","82","0","0" +"9981","373","26","1","-4194","2431","35","0","0" +"9982","373","27","1","-4249","2693","59","0","0" +"9983","373","28","1","-4086","3096","72","0","0" +"9984","373","29","1","-4207","3336","59","0","0" +"9985","373","30","1","-4304","3365","30","0","0" +"12404","373","31","1","-4378","3337","14","0","0" +"10016","374","0","1","-4378","3337","13","0","0" +"10015","374","1","1","-4396","3323","19","0","0" +"10014","374","2","1","-4430","3276","27","0","0" +"10013","374","3","1","-4435","3176","36","0","0" +"10012","374","4","1","-4396","3013","43","0","0" +"10011","374","5","1","-4237","2684","68","0","0" +"10010","374","6","1","-4188","2441","35","0","0" +"10009","374","7","1","-4228","2196","82","0","0" +"10008","374","8","1","-4152","2073","110","0","0" +"10007","374","9","1","-3851","1983","108","0","0" +"10006","374","10","1","-3655","2026","96","0","0" +"10005","374","11","1","-3503","2380","83","0","0" +"10004","374","12","1","-3191","2511","82","0","0" +"10003","374","13","1","-2950","2482","76","0","0" +"10002","374","14","1","-2578","2276","126","0","0" +"10001","374","15","1","-2407","2355","135","0","0" +"10000","374","16","1","-2224","2389","111","0","0" +"9999","374","17","1","-2032","2314","125","0","0" +"9998","374","18","1","-1946","2130","112","0","0" +"9997","374","19","1","-1909","1999","90","0","0" +"9996","374","20","1","-1790","1870","90","0","0" +"9995","374","21","1","-1619","1549","84","0","0" +"9994","374","22","1","-1248","1426","82","0","0" +"9993","374","23","1","-1046","1306","105","0","0" +"9992","374","24","1","-854","1118","115","0","0" +"9991","374","25","1","-646","1082","110","0","0" +"9990","374","26","1","-423","1250","103","0","0" +"9989","374","27","1","-147","1254","107","0","0" +"9988","374","28","1","54","1217","181","0","0" +"9987","374","29","1","138","1255","199","0","0" +"9986","374","30","1","154","1300","201","0","0" +"10017","374","31","1","132","1325","194","0","0" +"10020","375","0","1","-4417","200","26","0","0" +"10021","375","1","1","-4423","197","29","0","0" +"10022","375","2","1","-4461","187","33","0","0" +"10023","375","3","1","-4498","197","34","0","0" +"10024","375","4","1","-4615","257","19","0","0" +"10025","375","5","1","-4713","352","26","0","0" +"10026","375","6","1","-4718","464","45","0","0" +"10027","375","7","1","-4661","623","65","0","0" +"10028","375","8","1","-4570","850","77","0","0" +"10029","375","9","1","-4666","1021","126","0","0" +"10030","375","10","1","-4671","1182","111","0","0" +"10031","375","11","1","-4755","1388","110","0","0" +"10032","375","12","1","-4751","1570","110","0","0" +"10033","375","13","1","-4756","1744","96","0","0" +"10034","375","14","1","-4789","1937","55","0","0" +"10035","375","15","1","-4681","2076","20","0","0" +"10036","375","16","1","-4465","2175","23","0","0" +"10037","375","17","1","-4244","2192","76","0","0" +"10038","375","18","1","-4114","2141","106","0","0" +"10039","375","19","1","-4004","2030","112","0","0" +"10040","375","20","1","-3730","1991","94","0","0" +"10041","375","21","1","-3473","1924","71","0","0" +"10043","375","22","1","-3242","1883","70","0","0" +"10044","375","23","1","-3058","1963","67","0","0" +"10045","375","24","1","-2906","2140","60","0","0" +"10046","375","25","1","-2623","2179","103","0","0" +"10047","375","26","1","-2446","2334","142","0","0" +"10048","375","27","1","-2252","2402","81","0","0" +"10049","375","28","1","-2216","2549","71","0","0" +"10050","375","29","1","-2055","2589","76","0","0" +"10051","375","30","1","-1963","2698","81","0","0" +"10052","375","31","1","-1798","3069","36","0","0" +"10053","375","32","1","-1734","3220","13","0","0" +"10054","375","33","1","-1767","3265","7","0","0" +"10092","376","0","1","-1767","3265","6","0","0" +"10091","376","1","1","-1781","3271","6","0","0" +"10090","376","2","1","-1820","3266","10","0","0" +"10089","376","3","1","-1857","3222","15","0","0" +"10088","376","4","1","-1894","3074","33","0","0" +"10087","376","5","1","-1882","2864","64","0","0" +"10086","376","6","1","-1984","2700","84","0","0" +"10085","376","7","1","-2192","2434","89","0","0" +"10084","376","8","1","-2446","2334","142","0","0" +"10083","376","9","1","-2623","2179","103","0","0" +"10082","376","10","1","-2906","2140","60","0","0" +"10081","376","11","1","-3058","1963","67","0","0" +"10080","376","12","1","-3242","1883","70","0","0" +"10079","376","13","1","-3473","1924","71","0","0" +"10078","376","14","1","-3730","1991","94","0","0" +"10077","376","15","1","-4004","2030","112","0","0" +"10076","376","16","1","-4114","2141","106","0","0" +"10075","376","17","1","-4244","2192","76","0","0" +"10074","376","18","1","-4465","2175","23","0","0" +"10073","376","19","1","-4681","2076","20","0","0" +"10072","376","20","1","-4789","1937","55","0","0" +"10071","376","21","1","-4756","1744","96","0","0" +"10070","376","22","1","-4751","1570","110","0","0" +"10069","376","23","1","-4755","1388","110","0","0" +"10068","376","24","1","-4671","1182","111","0","0" +"10067","376","25","1","-4666","1021","126","0","0" +"10066","376","26","1","-4570","850","77","0","0" +"10065","376","27","1","-4583","726","64","0","0" +"10064","376","28","1","-4523","641","66","0","0" +"10063","376","29","1","-4416","567","68","0","0" +"10062","376","30","1","-4359","443","64","0","0" +"10061","376","31","1","-4364","325","58","0","0" +"10060","376","32","1","-4396","217","39","0","0" +"10059","376","33","1","-4415","199","27","0","0" +"10094","377","0","0","-7505","-2186","166","0","0" +"10095","377","1","0","-7525","-2197","171","0","0" +"10096","377","2","0","-7566","-2209","177","0","0" +"10097","377","3","0","-7639","-2208","175","0","0" +"10098","377","4","0","-7734","-2158","158","0","0" +"10099","377","5","0","-7809","-2053","150","0","0" +"10100","377","6","0","-7817","-1894","158","0","0" +"10101","377","7","0","-7887","-1701","159","0","0" +"10102","377","8","0","-7809","-1609","172","0","0" +"10103","377","9","0","-7629","-1656","223","0","0" +"10104","377","10","0","-7389","-1614","333","0","0" +"10105","377","11","0","-7248","-1651","292","0","0" +"10106","377","12","0","-7098","-1626","264","0","0" +"10107","377","13","0","-6959","-1683","259","0","0" +"10108","377","14","0","-6898","-1810","279","0","0" +"10109","377","15","0","-6946","-2053","309","0","0" +"10110","377","16","0","-6893","-2196","294","0","0" +"10111","377","17","0","-6793","-2427","288","0","0" +"10112","377","18","0","-6683","-2465","282","0","0" +"10113","377","19","0","-6624","-2296","264","0","0" +"10114","377","20","0","-6619","-2233","255","0","0" +"12419","377","21","0","-6634","-2180","246","0","0" +"10135","378","0","0","-6634","-2181","245","0","0" +"10134","378","1","0","-6647","-2192","250","0","0" +"10133","378","2","0","-6675","-2199","257","0","0" +"10132","378","3","0","-6742","-2195","269","0","0" +"10131","378","4","0","-6818","-2229","274","0","0" +"10130","378","5","0","-6893","-2196","292","0","0" +"10129","378","6","0","-6946","-2053","309","0","0" +"10128","378","7","0","-6898","-1810","279","0","0" +"10127","378","8","0","-6959","-1683","259","0","0" +"10126","378","9","0","-7098","-1626","264","0","0" +"10125","378","10","0","-7248","-1651","292","0","0" +"10124","378","11","0","-7389","-1614","333","0","0" +"10123","378","12","0","-7629","-1656","223","0","0" +"10122","378","13","0","-7809","-1609","172","0","0" +"10121","378","14","0","-7887","-1701","161","0","0" +"10120","378","15","0","-7880","-1897","161","0","0" +"10119","378","16","0","-7784","-2009","152","0","0" +"10118","378","17","0","-7734","-2131","158","0","0" +"10117","378","18","0","-7653","-2181","175","0","0" +"10116","378","19","0","-7572","-2200","177","0","0" +"10115","378","20","0","-7524","-2197","171","0","0" +"10136","378","21","0","-7505","-2186","167","0","0" +"10137","379","0","0","-7505","-2187","166","0","0" +"10138","379","1","0","-7524","-2197","170","0","0" +"10139","379","2","0","-7578","-2228","173","0","0" +"10140","379","3","0","-7570","-2316","174","0","0" +"10141","379","4","0","-7698","-2432","183","0","0" +"10142","379","5","0","-7764","-2554","203","0","0" +"10143","379","6","0","-7950","-2601","241","0","0" +"10144","379","7","0","-8104","-2546","174","0","0" +"10145","379","8","0","-8306","-2517","160","0","0" +"10146","379","9","0","-8539","-2558","169","0","0" +"10147","379","10","0","-8703","-2573","168","0","0" +"10148","379","11","0","-8867","-2611","198","0","0" +"10149","379","12","0","-9049","-2587","180","0","0" +"10150","379","13","0","-9316","-2478","87","0","0" +"10151","379","14","0","-9435","-2346","96","0","0" +"10152","379","15","0","-9491","-2098","137","0","0" +"10153","379","16","0","-9683","-1855","105","0","0" +"10154","379","17","0","-9874","-1756","76","0","0" +"10155","379","18","0","-9937","-1550","105","0","0" +"10156","379","19","0","-10087","-1387","138","0","0" +"10157","379","20","0","-10275","-1313","158","0","0" +"10158","379","21","0","-10437","-1438","150","0","0" +"10159","379","22","0","-10464","-1657","161","0","0" +"10160","379","23","0","-10567","-1777","180","0","0" +"10161","379","24","0","-10590","-1881","188","0","0" +"10162","379","25","0","-10652","-2027","191","0","0" +"10163","379","26","0","-10591","-2168","186","0","0" +"10164","379","27","0","-10567","-2294","172","0","0" +"10165","379","28","0","-10589","-2406","129","0","0" +"10166","379","29","0","-10518","-2609","84","0","0" +"10167","379","30","0","-10401","-2774","79","0","0" +"10168","379","31","0","-10353","-2930","74","0","0" +"10169","379","32","0","-10225","-3167","74","0","0" +"10170","379","33","0","-10217","-3357","72","0","0" +"10171","379","34","0","-10333","-3422","73","0","0" +"10172","379","35","0","-10418","-3362","67","0","0" +"10173","379","36","0","-10434","-3290","26","0","0" +"10174","379","37","0","-10454","-3276","23","0","0" +"10214","380","0","0","-10454","-3276","22","0","0" +"10213","380","1","0","-10452","-3269","24","0","0" +"10212","380","2","0","-10455","-3249","30","0","0" +"10211","380","3","0","-10462","-3219","35","0","0" +"10210","380","4","0","-10459","-3139","27","0","0" +"10209","380","5","0","-10488","-3058","27","0","0" +"10208","380","6","0","-10427","-2971","32","0","0" +"10207","380","7","0","-10455","-2919","30","0","0" +"10206","380","8","0","-10465","-2860","30","0","0" +"10205","380","9","0","-10511","-2771","32","0","0" +"10204","380","10","0","-10518","-2609","76","0","0" +"10203","380","11","0","-10589","-2406","129","0","0" +"10202","380","12","0","-10567","-2294","172","0","0" +"10201","380","13","0","-10591","-2168","186","0","0" +"10200","380","14","0","-10652","-2027","191","0","0" +"10199","380","15","0","-10590","-1881","188","0","0" +"10198","380","16","0","-10567","-1777","180","0","0" +"10197","380","17","0","-10464","-1657","161","0","0" +"10196","380","18","0","-10437","-1438","150","0","0" +"10195","380","19","0","-10275","-1313","158","0","0" +"10194","380","20","0","-10087","-1387","138","0","0" +"10193","380","21","0","-9937","-1550","105","0","0" +"10192","380","22","0","-9874","-1756","76","0","0" +"10191","380","23","0","-9683","-1855","105","0","0" +"10190","380","24","0","-9491","-2098","137","0","0" +"10189","380","25","0","-9435","-2346","96","0","0" +"10188","380","26","0","-9316","-2478","87","0","0" +"10187","380","27","0","-9049","-2587","180","0","0" +"10186","380","28","0","-8867","-2611","198","0","0" +"10185","380","29","0","-8703","-2573","168","0","0" +"10184","380","30","0","-8539","-2558","169","0","0" +"10183","380","31","0","-8306","-2517","160","0","0" +"10182","380","32","0","-8104","-2546","174","0","0" +"10181","380","33","0","-7950","-2601","241","0","0" +"10180","380","34","0","-7764","-2554","203","0","0" +"10179","380","35","0","-7698","-2432","183","0","0" +"10178","380","36","0","-7600","-2324","176","0","0" +"10177","380","37","0","-7581","-2225","177","0","0" +"10176","380","38","0","-7540","-2190","172","0","0" +"10215","380","39","0","-7506","-2187","166","0","0" +"10216","381","0","0","-8364","-2739","186","0","0" +"10217","381","1","0","-8360","-2743","189","0","0" +"10218","381","2","0","-8312","-2774","209","0","0" +"10219","381","3","0","-8224","-2814","209","0","0" +"10220","381","4","0","-8055","-2730","210","0","0" +"10221","381","5","0","-8080","-2564","201","0","0" +"10222","381","6","0","-8366","-2534","202","0","0" +"10223","381","7","0","-8844","-2593","178","0","0" +"10224","381","8","0","-9336","-2463","169","0","0" +"10225","381","9","0","-9641","-1859","80","0","0" +"10226","381","10","0","-9838","-1793","52","0","0" +"10227","381","11","0","-10076","-1488","132","0","0" +"10228","381","12","0","-10283","-1404","189","0","0" +"10229","381","13","0","-10440","-1491","159","0","0" +"10230","381","14","0","-10440","-1941","173","0","0" +"10231","381","15","0","-10587","-2163","193","0","0" +"10232","381","16","0","-10517","-2944","160","0","0" +"10233","381","17","0","-11177","-2928","56","0","0" +"10234","381","18","0","-11294","-3267","125","0","0" +"10235","381","19","0","-11112","-3435","81","0","0" +"10261","382","0","0","-11114","-3436","80","0","0" +"10260","382","1","0","-11112","-3439","81","0","0" +"10259","382","2","0","-11062","-3487","85","0","0" +"10258","382","3","0","-10993","-3410","84","0","0" +"10257","382","4","0","-11019","-3118","82","0","0" +"10256","382","5","0","-10528","-2843","160","0","0" +"10255","382","6","0","-10587","-2163","193","0","0" +"10254","382","7","0","-10440","-1941","173","0","0" +"10253","382","8","0","-10440","-1491","159","0","0" +"10252","382","9","0","-10548","-1334","127","0","0" +"10251","382","10","0","-10410","-1130","109","0","0" +"10250","382","11","0","-10178","-1226","149","0","0" +"10249","382","12","0","-10076","-1488","132","0","0" +"10248","382","13","0","-9838","-1793","52","0","0" +"10247","382","14","0","-9641","-1859","80","0","0" +"10246","382","15","0","-9336","-2463","169","0","0" +"10245","382","16","0","-8844","-2593","178","0","0" +"10244","382","17","0","-8372","-2542","202","0","0" +"10243","382","18","0","-8188","-2600","202","0","0" +"10262","382","19","0","-8153","-2703","202","0","0" +"10263","382","20","0","-8244","-2794","217","0","0" +"12733","382","21","0","-8364","-2741","188","0","0" +"10271","383","0","30","-1301","-765","159","0","0" +"10270","383","1","30","-1305","-681","146","0","0" +"10269","383","2","30","-1327","-495","129","0","0" +"10268","383","3","30","-1374","-389","117","0","0" +"10267","383","4","30","-1361","-332","107","0","0" +"10266","383","5","30","-1346","-324","97","0","0" +"10265","383","6","30","-1338","-320","93","0","0" +"10264","383","7","30","-1335","-319","91","0","0" +"10281","384","0","1","136","1323","194","0","0" +"10282","384","1","1","119","1333","198","0","0" +"10283","384","2","1","99","1348","200","0","0" +"10284","384","3","1","72","1380","185","0","0" +"10285","384","4","1","35","1474","155","0","0" +"10286","384","5","1","47","1582","141","0","0" +"10287","384","6","1","142","1761","113","0","0" +"10288","384","7","1","304","1824","104","0","0" +"10289","384","8","1","535","1724","71","0","0" +"10290","384","9","1","830","1575","70","0","0" +"10291","384","10","1","1124","1542","87","0","0" +"10292","384","11","1","1273","1431","137","0","0" +"10293","384","12","1","1440","1415","192","0","0" +"10294","384","13","1","1569","1300","224","0","0" +"10295","384","14","1","1804","1358","227","0","0" +"10296","384","15","1","2063","1404","359","0","0" +"10297","384","16","1","2243","1493","403","0","0" +"10298","384","17","1","2395","1671","421","0","0" +"10299","384","18","1","2667","1796","423","0","0" +"10300","384","19","1","2752","2105","280","0","0" +"10301","384","20","1","2937","2461","185","0","0" +"10302","384","21","1","3130","2376","107","0","0" +"10303","384","22","1","3316","2119","41","0","0" +"10304","384","23","1","3436","1874","16","0","0" +"10305","384","24","1","3776","1502","12","0","0" +"10306","384","25","1","4107","1222","16","0","0" +"10307","384","26","1","4676","1015","16","0","0" +"10308","384","27","1","4960","687","8","0","0" +"10309","384","28","1","5199","540","24","0","0" +"10310","384","29","1","5594","545","24","0","0" +"10311","384","30","1","5952","443","28","0","0" +"10312","384","31","1","6103","571","35","0","0" +"10313","384","32","1","6311","520","24","0","0" +"10314","384","33","1","6341","558","17","0","0" +"10350","385","0","1","6341","558","17","0","0" +"10349","385","1","1","6350","600","31","0","0" +"10348","385","2","1","6301","633","33","0","0" +"10347","385","3","1","6104","634","18","0","0" +"10346","385","4","1","5399","587","18","0","0" +"10345","385","5","1","4793","721","27","0","0" +"10344","385","6","1","4629","935","39","0","0" +"10343","385","7","1","4058","1204","26","0","0" +"10342","385","8","1","3685","1402","12","0","0" +"10341","385","9","1","3436","1874","16","0","0" +"10340","385","10","1","3316","2119","41","0","0" +"10339","385","11","1","3107","2416","140","0","0" +"10338","385","12","1","2933","2448","192","0","0" +"10337","385","13","1","2757","2121","280","0","0" +"10336","385","14","1","2667","1796","423","0","0" +"10335","385","15","1","2395","1671","421","0","0" +"10334","385","16","1","2243","1493","403","0","0" +"10333","385","17","1","2063","1404","359","0","0" +"10332","385","18","1","1804","1358","227","0","0" +"10331","385","19","1","1569","1300","224","0","0" +"10330","385","20","1","1440","1415","192","0","0" +"10329","385","21","1","1273","1431","137","0","0" +"10328","385","22","1","1124","1542","87","0","0" +"10327","385","23","1","830","1575","70","0","0" +"10326","385","24","1","535","1724","71","0","0" +"10325","385","25","1","304","1824","104","0","0" +"10324","385","26","1","142","1761","113","0","0" +"10323","385","27","1","47","1582","141","0","0" +"10322","385","28","1","-4","1422","156","0","0" +"10321","385","29","1","6","1251","194","0","0" +"10320","385","30","1","109","1221","199","0","0" +"10319","385","31","1","154","1290","197","0","0" +"10318","385","32","1","136","1323","195","0","0" +"10391","386","0","1","6341","558","17","0","0" +"10390","386","1","1","6352","598","27","0","0" +"10389","386","2","1","6322","632","30","0","0" +"10388","386","3","1","6234","633","31","0","0" +"10387","386","4","1","5966","631","31","0","0" +"10386","386","5","1","5669","622","31","0","0" +"10385","386","6","1","5200","653","30","0","0" +"10384","386","7","1","4935","392","50","0","0" +"10383","386","8","1","4922","247","57","0","0" +"10382","386","9","1","4969","186","72","0","0" +"10381","386","10","1","5031","41","80","0","0" +"10380","386","11","1","5185","-60","115","0","0" +"10379","386","12","1","5217","-126","169","0","0" +"10378","386","13","1","5148","-216","251","0","0" +"10377","386","14","1","5261","-294","325","0","0" +"10376","386","15","1","5247","-400","323","0","0" +"10375","386","16","1","5266","-474","324","0","0" +"10374","386","17","1","5268","-618","333","0","0" +"10373","386","18","1","5297","-736","358","0","0" +"10372","386","19","1","5361","-766","389","0","0" +"10371","386","20","1","5487","-733","395","0","0" +"10370","386","21","1","5658","-740","389","0","0" +"10369","386","22","1","5771","-733","390","0","0" +"10368","386","23","1","5878","-684","385","0","0" +"10367","386","24","1","6006","-708","399","0","0" +"10366","386","25","1","6084","-715","423","0","0" +"10365","386","26","1","6192","-754","423","0","0" +"10364","386","27","1","6250","-856","425","0","0" +"10363","386","28","1","6370","-951","460","0","0" +"10362","386","29","1","6367","-1193","416","0","0" +"10361","386","30","1","6566","-1244","461","0","0" +"10360","386","31","1","6617","-1386","505","0","0" +"10359","386","32","1","6594","-1543","495","0","0" +"10358","386","33","1","6517","-1679","541","0","0" +"10357","386","34","1","6543","-1793","585","0","0" +"10356","386","35","1","6493","-1910","588","0","0" +"10355","386","36","1","6309","-1929","576","0","0" +"10354","386","37","1","6208","-1951","573","0","0" +"10439","387","0","1","-1196","29","177","0","0" +"10438","387","1","1","-1244","40","184","0","0" +"10437","387","2","1","-1313","41","183","0","0" +"10436","387","3","1","-1333","-111","174","0","0" +"10435","387","4","1","-1203","-496","89","0","0" +"10434","387","5","1","-1103","-966","74","0","0" +"10433","387","6","1","-774","-1217","197","0","0" +"10432","387","7","1","-640","-1291","228","0","0" +"10431","387","8","1","-400","-1945","182","0","0" +"10430","387","9","1","1098","-3239","152","0","0" +"10429","387","10","1","1190","-3752","126","0","0" +"10428","387","11","1","1687","-3918","101","0","0" +"10427","387","12","1","1736","-4042","71","0","0" +"10426","387","13","1","1598","-4181","63","0","0" +"10425","387","14","1","1615","-4255","65","0","0" +"10424","387","15","1","1601","-4336","63","0","0" +"12452","387","16","1","1629","-4396","63","0","0" +"12453","387","17","1","1694","-4392","63","0","0" +"12454","387","18","1","1722","-4344","63","0","0" +"12455","387","19","1","1679","-4314","63","0","0" +"10442","388","0","1","-7048","-3779","11","0","0" +"10443","388","1","1","-7054","-3783","13","0","0" +"10444","388","2","1","-7072","-3792","20","0","0" +"10445","388","3","1","-7094","-3829","22","0","0" +"10446","388","4","1","-7096","-3915","22","0","0" +"10447","388","5","1","-7026","-4182","46","0","0" +"10448","388","6","1","-6902","-4595","64","0","0" +"10449","388","7","1","-6480","-4878","25","0","0" +"10450","388","8","1","-5296","-5006","29","0","0" +"10451","388","9","1","-4306","-4810","103","0","0" +"10452","388","10","1","-3543","-4282","93","0","0" +"10453","388","11","1","-2790","-3342","104","0","0" +"10454","388","12","1","-2697","-2938","148","0","0" +"10455","388","13","1","-2845","-2807","150","0","0" +"12422","388","14","1","-3144","-2842","37","0","0" +"10456","389","0","1","-7049","-3780","11","0","0" +"10457","389","1","1","-7080","-3754","22","0","0" +"10458","389","2","1","-7094","-3699","36","0","0" +"10459","389","3","1","-7031","-3684","49","0","0" +"10460","389","4","1","-6891","-3746","77","0","0" +"10461","389","5","1","-6833","-3757","52","0","0" +"10462","389","6","1","-6728","-3699","-1","0","0" +"10463","389","7","1","-6539","-3667","-36","0","0" +"10464","389","8","1","-6218","-3700","-47","0","0" +"10465","389","9","1","-5915","-3642","-46","0","0" +"10466","389","10","1","-5689","-3507","-27","0","0" +"10467","389","11","1","-5600","-3258","-3","0","0" +"10468","389","12","1","-5528","-3082","15","0","0" +"10469","389","13","1","-5410","-2890","39","0","0" +"10470","389","14","1","-5391","-2741","60","0","0" +"10471","389","15","1","-5475","-2637","77","0","0" +"10472","389","16","1","-5455","-2443","107","0","0" +"10473","389","17","1","-5458","-2298","91","0","0" +"10474","389","18","1","-5427","-2123","45","0","0" +"10475","389","19","1","-5492","-1920","14","0","0" +"10476","389","20","1","-5471","-1745","-6","0","0" +"10477","389","21","1","-5378","-1606","-23","0","0" +"10494","389","22","1","-5236","-1471","-23","0","0" +"10495","389","23","1","-5076","-1224","-24","0","0" +"10496","389","24","1","-4944","-1103","-28","0","0" +"10497","389","25","1","-4721","-971","-30","0","0" +"10498","389","26","1","-4564","-852","-22","0","0" +"10499","389","27","1","-4479","-716","-3","0","0" +"10500","389","28","1","-4473","-441","49","0","0" +"10501","389","29","1","-4415","-230","70","0","0" +"10502","389","30","1","-4395","-158","65","0","0" +"10503","389","31","1","-4319","-94","77","0","0" +"12424","389","32","1","-4329","-34","88","0","0" +"12425","389","33","1","-4340","72","86","0","0" +"12426","389","34","1","-4350","136","63","0","0" +"12427","389","35","1","-4372","186","39","0","0" +"12428","389","36","1","-4416","200","27","0","0" +"10491","390","0","1","-3144","-2842","35","0","0" +"10490","390","1","1","-3141","-2842","36","0","0" +"10489","390","2","1","-3099","-2837","58","0","0" +"10488","390","3","1","-2845","-2807","150","0","0" +"10487","390","4","1","-2697","-2938","148","0","0" +"10486","390","5","1","-2790","-3342","104","0","0" +"10485","390","6","1","-3543","-4282","93","0","0" +"10484","390","7","1","-4306","-4810","103","0","0" +"10483","390","8","1","-5296","-5006","29","0","0" +"10482","390","9","1","-6480","-4878","31","0","0" +"10492","390","10","1","-6902","-4595","64","0","0" +"10493","390","11","1","-7062","-4128","37","0","0" +"12407","390","12","1","-7022","-3956","31","0","0" +"12408","390","13","1","-7003","-3810","32","0","0" +"12423","390","14","1","-7051","-3779","12","0","0" +"10504","391","0","1","-4418","199","26","0","0" +"10505","391","1","1","-4438","165","32","0","0" +"10506","391","2","1","-4416","84","48","0","0" +"10507","391","3","1","-4321","-26","75","0","0" +"10508","391","4","1","-4208","-99","73","0","0" +"10509","391","5","1","-4206","-240","67","0","0" +"10510","391","6","1","-4289","-361","63","0","0" +"10511","391","7","1","-4298","-536","20","0","0" +"10512","391","8","1","-4283","-786","-22","0","0" +"10513","391","9","1","-4496","-954","-16","0","0" +"10514","391","10","1","-4608","-1072","-15","0","0" +"10515","391","11","1","-4733","-1141","14","0","0" +"10516","391","12","1","-4823","-1385","35","0","0" +"10517","391","13","1","-5105","-1591","45","0","0" +"10518","391","14","1","-5194","-1926","84","0","0" +"10519","391","15","1","-5120","-2139","95","0","0" +"10520","391","16","1","-5144","-2503","40","0","0" +"10521","391","17","1","-5313","-2848","3","0","0" +"10522","391","18","1","-5343","-3202","11","0","0" +"10523","391","19","1","-5522","-3457","-10","0","0" +"10551","391","20","1","-5877","-3742","-24","0","0" +"10552","391","21","1","-6276","-3797","-24","0","0" +"10553","391","22","1","-6638","-3709","-5","0","0" +"10554","391","23","1","-6890","-3753","89","0","0" +"10555","391","24","1","-6967","-3722","66","0","0" +"10556","391","25","1","-7017","-3752","32","0","0" +"10557","391","26","1","-7051","-3780","12","0","0" +"10524","392","0","1","-7048","-3779","11","0","0" +"10525","392","1","1","-7069","-3769","16","0","0" +"10526","392","2","1","-7096","-3732","28","0","0" +"10527","392","3","1","-7083","-3667","38","0","0" +"10528","392","4","1","-7023","-3637","56","0","0" +"10529","392","5","1","-6848","-3768","75","0","0" +"10530","392","6","1","-6205","-3907","-34","0","0" +"10531","392","7","1","-5819","-3908","-24","0","0" +"10532","392","8","1","-5588","-3312","-20","0","0" +"10533","392","9","1","-5356","-3228","-19","0","0" +"10534","392","10","1","-5315","-2836","-31","0","0" +"10535","392","11","1","-5181","-2600","-30","0","0" +"10536","392","12","1","-5071","-2226","-39","0","0" +"10537","392","13","1","-5151","-2059","-3","0","0" +"10538","392","14","1","-5222","-1899","-33","0","0" +"10539","392","15","1","-5105","-1777","-9","0","0" +"10540","392","16","1","-4620","-1846","135","0","0" +"10541","392","17","1","-4400","-1875","110","0","0" +"10542","392","18","1","-3949","-1896","147","0","0" +"10543","392","19","1","-3171","-1906","148","0","0" +"10544","392","20","1","-1816","-1922","159","0","0" +"10545","392","21","1","-930","-2017","117","0","0" +"10546","392","22","1","-697","-2199","213","0","0" +"10547","392","23","1","-626","-2294","217","0","0" +"10548","392","24","1","-541","-2429","154","0","0" +"10561","392","25","1","-414","-2553","118","0","0" +"10562","392","26","1","-440","-2599","98","0","0" +"10592","393","0","1","-440","-2599","97","0","0" +"10591","393","1","1","-441","-2601","97","0","0" +"10590","393","2","1","-452","-2628","99","0","0" +"10589","393","3","1","-492","-2724","105","0","0" +"10588","393","4","1","-582","-2706","107","0","0" +"10587","393","5","1","-612","-2544","132","0","0" +"10586","393","6","1","-626","-2294","217","0","0" +"10585","393","7","1","-697","-2199","213","0","0" +"10584","393","8","1","-930","-2017","117","0","0" +"10583","393","9","1","-1816","-1922","159","0","0" +"10582","393","10","1","-3171","-1906","148","0","0" +"10581","393","11","1","-3949","-1896","147","0","0" +"10580","393","12","1","-4400","-1875","110","0","0" +"10579","393","13","1","-4620","-1846","135","0","0" +"10578","393","14","1","-5105","-1777","-9","0","0" +"10577","393","15","1","-5222","-1899","-33","0","0" +"10576","393","16","1","-5151","-2059","-3","0","0" +"10575","393","17","1","-5071","-2226","-39","0","0" +"10574","393","18","1","-5181","-2600","-30","0","0" +"10573","393","19","1","-5315","-2836","-31","0","0" +"10572","393","20","1","-5356","-3228","-19","0","0" +"10571","393","21","1","-5588","-3312","-20","0","0" +"10570","393","22","1","-5819","-3908","-41","0","0" +"10569","393","23","1","-6649","-3802","4","0","0" +"10568","393","24","1","-6873","-3772","83","0","0" +"10567","393","25","1","-6966","-3710","56","0","0" +"10566","393","26","1","-7013","-3752","32","0","0" +"10565","393","27","1","-7052","-3781","12","0","0" +"10595","394","0","1","-7223","-3735","9","0","0" +"10596","394","1","1","-7221","-3731","9","0","0" +"10597","394","2","1","-7207","-3699","13","0","0" +"10598","394","3","1","-7134","-3546","31","0","0" +"10599","394","4","1","-7002","-3032","39","0","0" +"10600","394","5","1","-7150","-2576","47","0","0" +"10601","394","6","1","-7422","-2391","-166","0","0" +"10602","394","7","1","-7573","-2092","-260","0","0" +"10603","394","8","1","-7535","-1888","-261","0","0" +"10604","394","9","1","-7600","-1746","-255","0","0" +"10605","394","10","1","-7345","-1565","-257","0","0" +"10606","394","11","1","-7266","-1429","-213","0","0" +"10607","394","12","1","-7260","-1212","-200","0","0" +"10626","394","13","1","-6909","-722","-240","0","0" +"10627","394","14","1","-6577","-599","-229","0","0" +"10628","394","15","1","-6453","-481","-159","0","0" +"10629","394","16","1","-6367","-434","10","0","0" +"10630","394","17","1","-6277","-398","46","0","0" +"10631","394","18","1","-6322","-241","33","0","0" +"10644","394","19","1","-6672","-38","30","0","0" +"11356","394","20","1","-6779","126","46","0","0" +"11357","394","21","1","-6833","401","46","0","0" +"11358","394","22","1","-6832","563","86","0","0" +"11359","394","23","1","-6756","681","104","0","0" +"11360","394","24","1","-6761","772","91","0","0" +"10608","395","0","1","-7048","-3780","11","0","0" +"10609","395","1","1","-7066","-3772","19","0","0" +"10610","395","2","1","-7108","-3749","32","0","0" +"10611","395","3","1","-7182","-3713","33","0","0" +"10612","395","4","1","-7364","-3615","34","0","0" +"10613","395","5","1","-7599","-3398","70","0","0" +"10614","395","6","1","-7744","-3251","94","0","0" +"10615","395","7","1","-7845","-3092","84","0","0" +"10616","395","8","1","-7932","-2839","55","0","0" +"10617","395","9","1","-8108","-2604","40","0","0" +"10618","395","10","1","-8310","-2378","46","0","0" +"10619","395","11","1","-8351","-2154","46","0","0" +"10620","395","12","1","-8204","-1938","-3","0","0" +"10621","395","13","1","-8117","-1550","-199","0","0" +"10622","395","14","1","-7889","-1268","-232","0","0" +"10623","395","15","1","-7437","-1069","-237","0","0" +"10624","395","16","1","-7242","-922","-232","0","0" +"10625","395","17","1","-7061","-681","-232","0","0" +"10632","395","18","1","-6795","-787","-243","0","0" +"10633","395","19","1","-6578","-736","-226","0","0" +"10634","395","20","1","-6381","-573","-158","0","0" +"10635","395","21","1","-6236","-574","-92","0","0" +"10636","395","22","1","-6218","-490","-26","0","0" +"10637","395","23","1","-6310","-378","21","0","0" +"10638","395","24","1","-6342","-298","12","0","0" +"10639","395","25","1","-6523","-127","21","0","0" +"10640","395","26","1","-6733","-24","21","0","0" +"10641","395","27","1","-6857","182","21","0","0" +"11361","395","28","1","-6872","404","33","0","0" +"11362","395","29","1","-6837","570","33","0","0" +"11363","395","30","1","-6866","713","84","0","0" +"11364","395","31","1","-6812","835","53","0","0" +"10696","398","0","1","6811","-4608","711","0","0" +"10697","398","1","1","6815","-4613","713","0","0" +"10698","398","2","1","6839","-4662","723","0","0" +"10699","398","3","1","6821","-4730","722","0","0" +"10700","398","4","1","6740","-4751","715","0","0" +"10701","398","5","1","6562","-4797","715","0","0" +"10702","398","6","1","6428","-4899","717","0","0" +"10703","398","7","1","6269","-4887","734","0","0" +"10704","398","8","1","6108","-4923","754","0","0" +"10705","398","9","1","5793","-4865","837","0","0" +"10706","398","10","1","5667","-4842","860","0","0" +"10707","398","11","1","5394","-4758","818","0","0" +"10708","398","12","1","5127","-4914","908","0","0" +"10709","398","13","1","5093","-5061","929","0","0" +"10710","398","14","1","5085","-5126","937","0","0" +"10711","398","15","1","5128","-5216","848","0","0" +"10712","398","16","1","5485","-5438","501","0","0" +"10713","398","17","1","5407","-5708","342","0","0" +"10714","398","18","1","5184","-5740","336","0","0" +"10715","398","19","1","5003","-5426","206","0","0" +"10716","398","20","1","4725","-5407","141","0","0" +"10717","398","21","1","4525","-5499","125","0","0" +"10718","398","22","1","4282","-5471","84","0","0" +"10719","398","23","1","4099","-5410","122","0","0" +"10720","398","24","1","3996","-5334","130","0","0" +"10721","398","25","1","3849","-5276","151","0","0" +"10722","398","26","1","3544","-5149","113","0","0" +"10723","398","27","1","3471","-4908","153","0","0" +"10724","398","28","1","3264","-4562","111","0","0" +"10725","398","29","1","3215","-4390","114","0","0" +"10726","398","30","1","3110","-4305","106","0","0" +"10727","398","31","1","2889","-4184","104","0","0" +"10728","398","32","1","2789","-4077","105","0","0" +"10729","398","33","1","2748","-3922","99","0","0" +"10730","398","34","1","2791","-3766","96","0","0" +"10731","398","35","1","2637","-3702","88","0","0" +"10732","398","36","1","2256","-3713","79","0","0" +"10733","398","37","1","1859","-3730","75","0","0" +"10734","398","38","1","1726","-3805","60","0","0" +"10735","398","39","1","1695","-3916","97","0","0" +"10736","398","40","1","1750","-4057","73","0","0" +"10737","398","41","1","1560","-4165","78","0","0" +"10738","398","42","1","1627","-4274","61","0","0" +"12437","398","43","1","1600","-4353","60","0","0" +"12438","398","44","1","1632","-4402","60","0","0" +"12439","398","45","1","1686","-4400","64","0","0" +"12440","398","46","1","1724","-4365","65","0","0" +"12441","398","47","1","1713","-4321","64","0","0" +"12442","398","48","1","1678","-4315","64","0","0" +"10781","399","0","1","1676","-4316","62","0","0" +"10780","399","1","1","1672","-4313","62","0","0" +"10779","399","2","1","1616","-4265","63","0","0" +"10778","399","3","1","1573","-4164","78","0","0" +"10777","399","4","1","1750","-4057","73","0","0" +"10776","399","5","1","1695","-3916","97","0","0" +"10775","399","6","1","1726","-3805","84","0","0" +"10774","399","7","1","1859","-3730","75","0","0" +"10773","399","8","1","2256","-3713","79","0","0" +"10772","399","9","1","2637","-3702","88","0","0" +"10771","399","10","1","2791","-3766","96","0","0" +"10770","399","11","1","2748","-3922","99","0","0" +"10769","399","12","1","2789","-4077","105","0","0" +"10768","399","13","1","2889","-4184","104","0","0" +"10767","399","14","1","3110","-4305","106","0","0" +"10766","399","15","1","3215","-4390","114","0","0" +"10765","399","16","1","3264","-4562","111","0","0" +"10764","399","17","1","3471","-4908","153","0","0" +"10763","399","18","1","3544","-5149","113","0","0" +"10762","399","19","1","3849","-5276","151","0","0" +"10761","399","20","1","3996","-5334","130","0","0" +"10760","399","21","1","4099","-5410","122","0","0" +"10759","399","22","1","4282","-5471","84","0","0" +"10758","399","23","1","4525","-5499","125","0","0" +"10757","399","24","1","4725","-5407","141","0","0" +"10756","399","25","1","4960","-5466","111","0","0" +"10755","399","26","1","5539","-6064","197","0","0" +"10754","399","27","1","5818","-5858","287","0","0" +"10753","399","28","1","5515","-5546","479","0","0" +"10752","399","29","1","5275","-5256","681","0","0" +"10751","399","30","1","5128","-5216","848","0","0" +"10750","399","31","1","5085","-5126","937","0","0" +"10749","399","32","1","5093","-5061","929","0","0" +"10748","399","33","1","5127","-4914","908","0","0" +"10747","399","34","1","5394","-4758","818","0","0" +"10746","399","35","1","5667","-4842","860","0","0" +"10745","399","36","1","5793","-4865","837","0","0" +"10744","399","37","1","6108","-4923","754","0","0" +"10743","399","38","1","6269","-4887","734","0","0" +"10784","399","39","1","6439","-4891","717","0","0" +"10785","399","40","1","6632","-4634","738","0","0" +"10786","399","41","1","6733","-4597","731","0","0" +"12849","399","42","1","6808","-4606","713","0","0" +"10787","400","0","1","3661","-4389","114","0","0" +"10788","400","1","1","3665","-4383","118","0","0" +"10789","400","2","1","3676","-4347","119","0","0" +"10790","400","3","1","3636","-4266","119","0","0" +"10791","400","4","1","3557","-4181","119","0","0" +"10792","400","5","1","3427","-4135","149","0","0" +"10793","400","6","1","3172","-4071","110","0","0" +"10794","400","7","1","2866","-3865","115","0","0" +"10795","400","8","1","2867","-3731","102","0","0" +"10796","400","9","1","2908","-3567","111","0","0" +"10797","400","10","1","2984","-3422","147","0","0" +"10798","400","11","1","2971","-3272","180","0","0" +"10799","400","12","1","2836","-3129","195","0","0" +"10800","400","13","1","2876","-3029","212","0","0" +"10801","400","14","1","2874","-2918","207","0","0" +"10802","400","15","1","2901","-2819","219","0","0" +"10803","400","16","1","2845","-2537","229","0","0" +"10804","400","17","1","2739","-2384","210","0","0" +"10805","400","18","1","2725","-2201","208","0","0" +"10806","400","19","1","2883","-2137","212","0","0" +"10807","400","20","1","2993","-2050","208","0","0" +"10808","400","21","1","2967","-1847","181","0","0" +"10809","400","22","1","3172","-1731","181","0","0" +"10810","400","23","1","3291","-1561","175","0","0" +"10811","400","24","1","3745","-1474","201","0","0" +"10812","400","25","1","3905","-1254","233","0","0" +"10813","400","26","1","3908","-1116","260","0","0" +"10814","400","27","1","4066","-1042","274","0","0" +"10817","400","28","1","4283","-844","293","0","0" +"10818","400","29","1","4395","-850","300","0","0" +"10819","400","30","1","4570","-847","310","0","0" +"10820","400","31","1","4778","-752","306","0","0" +"10822","400","32","1","4933","-733","311","0","0" +"10823","400","33","1","5069","-751","329","0","0" +"10824","400","34","1","5167","-750","346","0","0" +"10826","400","35","1","5246","-765","352","0","0" +"10827","400","36","1","5287","-700","347","0","0" +"10828","400","37","1","5269","-610","331","0","0" +"10829","400","38","1","5270","-522","337","0","0" +"10830","400","39","1","5253","-433","333","0","0" +"10831","400","40","1","5268","-353","333","0","0" +"10832","400","41","1","5245","-253","340","0","0" +"10833","400","42","1","5160","-200","366","0","0" +"10834","400","43","1","5085","-233","372","0","0" +"10835","400","44","1","5067","-337","369","0","0" +"10880","401","0","1","5067","-337","368","0","0" +"10879","401","1","1","5067","-335","368","0","0" +"10878","401","2","1","5070","-320","369","0","0" +"10877","401","3","1","5085","-226","372","0","0" +"10876","401","4","1","5162","-136","366","0","0" +"10875","401","5","1","5228","-149","358","0","0" +"10874","401","6","1","5261","-330","341","0","0" +"10873","401","7","1","5251","-450","337","0","0" +"10872","401","8","1","5271","-588","331","0","0" +"10871","401","9","1","5281","-694","351","0","0" +"10870","401","10","1","5242","-766","358","0","0" +"10869","401","11","1","5172","-753","347","0","0" +"10868","401","12","1","5082","-753","333","0","0" +"10867","401","13","1","4981","-733","317","0","0" +"10866","401","14","1","4778","-752","306","0","0" +"10865","401","15","1","4570","-847","309","0","0" +"10864","401","16","1","4395","-850","300","0","0" +"10863","401","17","1","4283","-844","293","0","0" +"10862","401","18","1","4066","-1042","274","0","0" +"10861","401","19","1","3908","-1116","260","0","0" +"10860","401","20","1","3905","-1254","233","0","0" +"10859","401","21","1","3745","-1474","201","0","0" +"10858","401","22","1","3291","-1561","175","0","0" +"10857","401","23","1","3172","-1731","181","0","0" +"10856","401","24","1","2967","-1847","181","0","0" +"10855","401","25","1","2993","-2050","208","0","0" +"10854","401","26","1","2883","-2137","212","0","0" +"10853","401","27","1","2725","-2201","208","0","0" +"10852","401","28","1","2739","-2384","210","0","0" +"10851","401","29","1","2845","-2537","229","0","0" +"10850","401","30","1","2901","-2819","219","0","0" +"10849","401","31","1","2874","-2918","207","0","0" +"10848","401","32","1","2876","-3029","212","0","0" +"10847","401","33","1","2836","-3129","195","0","0" +"10846","401","34","1","2971","-3272","180","0","0" +"10845","401","35","1","2984","-3422","147","0","0" +"10844","401","36","1","2908","-3567","111","0","0" +"10843","401","37","1","2867","-3731","102","0","0" +"10842","401","38","1","2795","-3815","90","0","0" +"10841","401","39","1","2745","-3952","104","0","0" +"10840","401","40","1","2774","-4045","108","0","0" +"10839","401","41","1","2855","-4081","120","0","0" +"10838","401","42","1","2966","-4171","111","0","0" +"10837","401","43","1","3314","-4285","143","0","0" +"12456","401","44","1","3476","-4342","142","0","0" +"12457","401","45","1","3550","-4372","129","0","0" +"12458","401","46","1","3661","-4389","115","0","0" +"10883","402","0","0","-6556","-1169","310","0","0" +"10884","402","1","0","-6558","-1169","310","0","0" +"10885","402","2","0","-6576","-1166","314","0","0" +"10886","402","3","0","-6642","-1148","311","0","0" +"10887","402","4","0","-6683","-1065","301","0","0" +"10888","402","5","0","-6682","-949","286","0","0" +"10889","402","6","0","-6535","-884","317","0","0" +"10890","402","7","0","-6363","-820","401","0","0" +"10891","402","8","0","-6283","-807","432","0","0" +"10892","402","9","0","-6097","-708","496","0","0" +"10893","402","10","0","-5831","-542","436","0","0" +"10894","402","11","0","-5596","-484","469","0","0" +"10895","402","12","0","-5305","-521","482","0","0" +"10896","402","13","0","-5175","-734","497","0","0" +"10897","402","14","0","-5077","-783","503","0","0" +"10898","402","15","0","-4994","-866","517","0","0" +"10899","402","16","0","-4971","-894","543","0","0" +"10900","402","17","0","-4921","-938","541","0","0" +"10901","402","18","0","-4874","-959","542","0","0" +"10902","402","19","0","-4831","-1055","555","0","0" +"10903","402","20","0","-4791","-1060","542","0","0" +"10904","402","21","0","-4741","-1116","527","0","0" +"10905","402","22","0","-4755","-1152","515","0","0" +"12741","402","23","0","-4822","-1156","505","0","0" +"10928","403","0","0","-4822","-1155","503","0","0" +"10927","403","1","0","-4755","-1152","520","0","0" +"10926","403","2","0","-4741","-1116","534","0","0" +"10925","403","3","0","-4791","-1060","542","0","0" +"10924","403","4","0","-4831","-1055","555","0","0" +"10923","403","5","0","-4874","-959","542","0","0" +"10922","403","6","0","-4921","-938","541","0","0" +"10921","403","7","0","-4971","-894","543","0","0" +"10920","403","8","0","-4994","-866","517","0","0" +"10919","403","9","0","-5063","-793","502","0","0" +"10918","403","10","0","-5153","-749","496","0","0" +"10917","403","11","0","-5602","-564","467","0","0" +"10916","403","12","0","-5831","-542","436","0","0" +"10915","403","13","0","-6097","-708","496","0","0" +"10914","403","14","0","-6283","-807","432","0","0" +"10913","403","15","0","-6363","-820","401","0","0" +"10912","403","16","0","-6535","-884","317","0","0" +"10911","403","17","0","-6682","-949","286","0","0" +"10910","403","18","0","-6683","-1065","301","0","0" +"10909","403","19","0","-6642","-1148","311","0","0" +"10908","403","20","0","-6576","-1166","314","0","0" +"10907","403","21","0","-6558","-1169","310","0","0" +"10906","403","22","0","-6556","-1169","310","0","0" +"10951","404","0","0","-4822","-1156","503","0","0" +"10950","404","1","0","-4823","-1154","504","0","0" +"10949","404","2","0","-4846","-1118","518","0","0" +"10948","404","3","0","-4847","-1066","550","0","0" +"10947","404","4","0","-4931","-996","541","0","0" +"10946","404","5","0","-4950","-924","542","0","0" +"10945","404","6","0","-4971","-894","543","0","0" +"10944","404","7","0","-4994","-866","517","0","0" +"10943","404","8","0","-5101","-769","503","0","0" +"10942","404","9","0","-5364","-666","497","0","0" +"10941","404","10","0","-5599","-612","472","0","0" +"10940","404","11","0","-5868","-574","436","0","0" +"10939","404","12","0","-6097","-708","496","0","0" +"10938","404","13","0","-6283","-807","432","0","0" +"10937","404","14","0","-6361","-824","401","0","0" +"10936","404","15","0","-6535","-885","317","0","0" +"10935","404","16","0","-6682","-949","286","0","0" +"10934","404","17","0","-6720","-1073","302","0","0" +"10933","404","18","0","-6642","-1148","322","0","0" +"10932","404","19","0","-6553","-1168","312","0","0" +"10983","406","0","0","-6634","-2178","245","0","0" +"10984","406","1","0","-6636","-2179","245","0","0" +"10985","406","2","0","-6669","-2186","251","0","0" +"10986","406","3","0","-6839","-2225","283","0","0" +"10987","406","4","0","-6912","-2187","293","0","0" +"10988","406","5","0","-6941","-2030","302","0","0" +"10989","406","6","0","-6867","-1716","271","0","0" +"10990","406","7","0","-6876","-1289","263","0","0" +"10991","406","8","0","-6729","-1042","269","0","0" +"10992","406","9","0","-6557","-1099","313","0","0" +"11002","407","0","0","-6557","-1099","310","0","0" +"11001","407","1","0","-6559","-1098","311","0","0" +"11000","407","2","0","-6602","-1081","309","0","0" +"10999","407","3","0","-6729","-1042","267","0","0" +"10998","407","4","0","-6876","-1289","263","0","0" +"10997","407","5","0","-6867","-1716","271","0","0" +"10996","407","6","0","-6941","-2030","302","0","0" +"10995","407","7","0","-6912","-2187","293","0","0" +"10994","407","8","0","-6799","-2456","288","0","0" +"10993","407","9","0","-6684","-2460","284","0","0" +"12410","407","10","0","-6635","-2381","284","0","0" +"12411","407","11","0","-6630","-2243","265","0","0" +"12412","407","12","0","-6633","-2182","247","0","0" +"11005","408","0","0","-7505","-2188","166","0","0" +"11006","408","1","0","-7507","-2187","166","0","0" +"11007","408","2","0","-7553","-2141","178","0","0" +"11008","408","3","0","-7683","-2009","211","0","0" +"11009","408","4","0","-7649","-1781","244","0","0" +"11010","408","5","0","-7477","-1608","308","0","0" +"11011","408","6","0","-7383","-1630","347","0","0" +"11012","408","7","0","-7135","-1694","286","0","0" +"11013","408","8","0","-6867","-1358","277","0","0" +"11014","408","9","0","-6887","-1176","276","0","0" +"11015","408","10","0","-6814","-1057","260","0","0" +"11016","408","11","0","-6704","-1021","296","0","0" +"11017","408","12","0","-6555","-1100","312","0","0" +"11030","409","0","0","-6555","-1100","310","0","0" +"11029","409","1","0","-6557","-1099","311","0","0" +"11028","409","2","0","-6613","-1086","309","0","0" +"11027","409","3","0","-6814","-1057","295","0","0" +"11026","409","4","0","-6925","-1212","245","0","0" +"11025","409","5","0","-6921","-1485","280","0","0" +"11024","409","6","0","-7153","-1673","286","0","0" +"11023","409","7","0","-7381","-1627","331","0","0" +"11022","409","8","0","-7647","-1543","285","0","0" +"11021","409","9","0","-7613","-1818","244","0","0" +"11020","409","10","0","-7683","-2009","211","0","0" +"11019","409","11","0","-7505","-2188","168","0","0" +"11032","410","0","0","-8362","-2738","186","0","0" +"11033","410","1","0","-8360","-2740","187","0","0" +"11034","410","2","0","-8324","-2765","199","0","0" +"11035","410","3","0","-8228","-2828","218","0","0" +"11036","410","4","0","-8099","-2860","218","0","0" +"11037","410","5","0","-7852","-2863","218","0","0" +"11038","410","6","0","-7721","-2535","198","0","0" +"11039","410","7","0","-7780","-1868","214","0","0" +"11040","410","8","0","-7377","-1618","339","0","0" +"11041","410","9","0","-7020","-1368","279","0","0" +"11042","410","10","0","-6817","-1123","273","0","0" +"11043","410","11","0","-6611","-1167","315","0","0" +"12851","410","12","0","-6552","-1169","312","0","0" +"11055","411","0","0","-6554","-1169","310","0","0" +"11054","411","1","0","-6557","-1169","311","0","0" +"11053","411","2","0","-6592","-1169","312","0","0" +"11052","411","3","0","-6725","-1165","307","0","0" +"11051","411","4","0","-6897","-1236","274","0","0" +"11050","411","5","0","-7066","-1500","279","0","0" +"11049","411","6","0","-7377","-1618","339","0","0" +"11048","411","7","0","-7801","-1899","214","0","0" +"11047","411","8","0","-8166","-2142","201","0","0" +"11046","411","9","0","-8241","-2478","201","0","0" +"11045","411","10","0","-8112","-2637","202","0","0" +"11044","411","11","0","-8252","-2797","220","0","0" +"12643","411","12","0","-8362","-2738","188","0","0" +"11058","412","0","0","-634","-4720","6","0","0" +"11059","412","1","0","-632","-4721","7","0","0" +"11060","412","2","0","-611","-4731","10","0","0" +"11061","412","3","0","-503","-4778","28","0","0" +"11062","412","4","0","-354","-4703","59","0","0" +"11063","412","5","0","-225","-4355","128","0","0" +"11064","412","6","0","-87","-4265","160","0","0" +"11065","412","7","0","65","-4103","183","0","0" +"11066","412","8","0","157","-3797","201","0","0" +"11068","412","9","0","-40","-3242","188","0","0" +"11069","412","10","0","140","-2719","198","0","0" +"11070","412","11","0","103","-2036","228","0","0" +"11071","412","12","0","-262","-1719","190","0","0" +"11072","412","13","0","-327","-1229","117","0","0" +"11073","412","14","0","-271","-1038","99","0","0" +"11074","412","15","0","-223","-936","89","0","0" +"11075","412","16","0","-74","-894","69","0","0" +"11957","412","17","0","0","-860","62","0","0" +"11092","413","0","0","-1","-860","60","0","0" +"11091","413","1","0","-3","-847","62","0","0" +"11090","413","2","0","-34","-783","74","0","0" +"11089","413","3","0","-144","-767","95","0","0" +"11088","413","4","0","-342","-997","100","0","0" +"11087","413","5","0","-306","-1349","128","0","0" +"11086","413","6","0","-256","-1719","180","0","0" +"11085","413","7","0","111","-2036","236","0","0" +"11084","413","8","0","219","-2729","211","0","0" +"11083","413","9","0","-175","-3338","194","0","0" +"11082","413","10","0","332","-3775","207","0","0" +"11081","413","11","0","102","-4125","191","0","0" +"11080","413","12","0","274","-4640","134","0","0" +"11079","413","13","0","-114","-4928","38","0","0" +"11078","413","14","0","-634","-4720","8","0","0" +"11095","414","0","0","1570","266","-42","0","0" +"11096","414","1","0","1568","263","-41","0","0" +"11097","414","2","0","1563","251","-37","0","0" +"11098","414","3","0","1568","229","-33","0","0" +"11099","414","4","0","1592","212","-31","0","0" +"11100","414","5","0","1614","213","-31","0","0" +"11101","414","6","0","1633","239","-31","0","0" +"11102","414","7","0","1740","241","-42","0","0" +"11103","414","8","0","1749","277","-47","0","0" +"11104","414","9","0","1720","338","-58","0","0" +"11105","414","10","0","1687","361","-32","0","0" +"11106","414","11","0","1687","396","4","0","0" +"11107","414","12","0","1711","436","5","0","0" +"11108","414","13","0","1726","468","2","0","0" +"11109","414","14","0","1727","494","-1","0","0" +"11110","414","15","0","1693","534","-6","0","0" +"11111","414","16","0","1674","557","-5","0","0" +"11112","414","17","0","1682","587","0","0","0" +"11113","414","18","0","1688","618","11","0","0" +"11114","414","19","0","1679","638","20","0","0" +"11115","414","20","0","1652","644","31","0","0" +"11116","414","21","0","1618","646","42","0","0" +"11117","414","22","0","1601","655","48","0","0" +"11118","414","23","0","1589","678","57","0","0" +"11119","414","24","0","1596","713","70","0","0" +"11120","414","25","0","1614","728","78","0","0" +"11121","414","26","0","1640","733","86","0","0" +"11122","414","27","0","1681","729","91","0","0" +"11123","414","28","0","1736","736","82","0","0" +"11124","414","29","0","1797","756","70","0","0" +"11125","414","30","0","1835","724","63","0","0" +"11126","414","31","0","1814","643","67","0","0" +"11127","414","32","0","1812","528","83","0","0" +"11128","414","33","0","1950","290","51","0","0" +"11129","414","34","0","1898","-213","45","0","0" +"11130","414","35","0","1710","-475","43","0","0" +"11131","414","36","0","1672","-618","52","0","0" +"11132","414","37","0","1711","-704","70","0","0" +"11133","414","38","0","1716","-870","70","0","0" +"11134","414","39","0","1639","-998","79","0","0" +"11135","414","40","0","1637","-1185","68","0","0" +"11136","414","41","0","1643","-1266","74","0","0" +"11137","414","42","0","1673","-1346","75","0","0" +"11138","414","43","0","1638","-1395","77","0","0" +"11139","414","44","0","1531","-1445","86","0","0" +"11140","414","45","0","1414","-1630","79","0","0" +"11141","414","46","0","1295","-1690","89","0","0" +"11142","414","47","0","1164","-2251","71","0","0" +"11164","414","48","0","953","-2393","81","0","0" +"11165","414","49","0","862","-2391","115","0","0" +"11166","414","50","0","821","-2400","143","0","0" +"11167","414","51","0","787","-2414","171","0","0" +"11168","414","52","0","762","-2446","200","0","0" +"11169","414","53","0","726","-2482","229","0","0" +"11170","414","54","0","658","-2512","263","0","0" +"11171","414","55","0","612","-2493","271","0","0" +"11172","414","56","0","574","-2498","273","0","0" +"11173","414","57","0","538","-2519","265","0","0" +"11174","414","58","0","498","-2498","257","0","0" +"11175","414","59","0","421","-2505","232","0","0" +"11176","414","60","0","181","-2617","206","0","0" +"11177","414","61","0","31","-2946","202","0","0" +"11178","414","62","0","369","-3640","220","0","0" +"11179","414","63","0","-129","-4369","182","0","0" +"11180","414","64","0","-256","-4791","69","0","0" +"11181","414","65","0","-440","-4854","31","0","0" +"11182","414","66","0","-634","-4720","8","0","0" +"11249","415","0","0","-634","-4720","6","0","0" +"11248","415","1","0","-631","-4722","7","0","0" +"11247","415","2","0","-571","-4765","15","0","0" +"11246","415","3","0","-440","-4854","31","0","0" +"11245","415","4","0","-256","-4791","69","0","0" +"11244","415","5","0","-129","-4369","182","0","0" +"11243","415","6","0","369","-3640","220","0","0" +"11242","415","7","0","31","-2946","202","0","0" +"11241","415","8","0","181","-2617","206","0","0" +"11240","415","9","0","421","-2505","232","0","0" +"11239","415","10","0","498","-2498","257","0","0" +"11238","415","11","0","538","-2519","265","0","0" +"11237","415","12","0","574","-2498","273","0","0" +"11236","415","13","0","612","-2493","271","0","0" +"11235","415","14","0","658","-2512","263","0","0" +"11234","415","15","0","726","-2482","229","0","0" +"11233","415","16","0","762","-2446","200","0","0" +"11232","415","17","0","787","-2414","171","0","0" +"11231","415","18","0","821","-2400","143","0","0" +"11230","415","19","0","862","-2391","115","0","0" +"11229","415","20","0","953","-2393","81","0","0" +"11228","415","21","0","1164","-2251","71","0","0" +"11227","415","22","0","1295","-1690","89","0","0" +"11226","415","23","0","1414","-1630","79","0","0" +"11225","415","24","0","1531","-1445","86","0","0" +"11224","415","25","0","1638","-1395","77","0","0" +"11223","415","26","0","1673","-1346","75","0","0" +"11222","415","27","0","1643","-1266","74","0","0" +"11221","415","28","0","1637","-1185","68","0","0" +"11220","415","29","0","1639","-998","79","0","0" +"11219","415","30","0","1716","-870","70","0","0" +"11218","415","31","0","1711","-704","70","0","0" +"11217","415","32","0","1672","-618","52","0","0" +"11216","415","33","0","1710","-475","43","0","0" +"11215","415","34","0","1898","-213","45","0","0" +"11214","415","35","0","1950","290","48","0","0" +"11213","415","36","0","1940","480","52","0","0" +"11212","415","37","0","1953","599","62","0","0" +"11211","415","38","0","1908","678","57","0","0" +"11210","415","39","0","1813","748","70","0","0" +"11209","415","40","0","1737","727","82","0","0" +"11208","415","41","0","1681","729","91","0","0" +"11207","415","42","0","1640","733","86","0","0" +"11206","415","43","0","1614","728","78","0","0" +"11205","415","44","0","1596","713","70","0","0" +"11204","415","45","0","1589","678","57","0","0" +"11203","415","46","0","1601","655","48","0","0" +"11202","415","47","0","1618","646","42","0","0" +"11201","415","48","0","1652","644","31","0","0" +"11200","415","49","0","1679","638","20","0","0" +"11199","415","50","0","1688","618","11","0","0" +"11198","415","51","0","1682","587","0","0","0" +"11197","415","52","0","1674","557","-5","0","0" +"11196","415","53","0","1693","534","-6","0","0" +"11195","415","54","0","1727","494","-1","0","0" +"11194","415","55","0","1726","468","2","0","0" +"11193","415","56","0","1711","436","5","0","0" +"11192","415","57","0","1687","396","4","0","0" +"11191","415","58","0","1687","361","-32","0","0" +"11190","415","59","0","1720","338","-58","0","0" +"11189","415","60","0","1749","277","-47","0","0" +"11188","415","61","0","1740","241","-42","0","0" +"11187","415","62","0","1633","239","-31","0","0" +"11186","415","63","0","1614","213","-31","0","0" +"11185","415","64","0","1592","212","-31","0","0" +"11184","415","65","0","1568","229","-33","0","0" +"11183","415","66","0","1563","251","-37","0","0" +"11250","415","67","0","1570","266","-39","0","0" +"11252","416","0","1","-2381","-1882","96","0","0" +"11253","416","1","1","-2378","-1882","97","0","0" +"11254","416","2","1","-2348","-1890","100","0","0" +"11255","416","3","1","-2256","-1915","107","0","0" +"11256","416","4","1","-2078","-1849","106","0","0" +"11257","416","5","1","-1812","-1923","158","0","0" +"11258","416","6","1","-1430","-1892","127","0","0" +"11259","416","7","1","-957","-2168","132","0","0" +"11260","416","8","1","-601","-2218","239","0","0" +"11261","416","9","1","-430","-2421","150","0","0" +"11262","416","10","1","-410","-2533","125","0","0" +"11263","416","11","1","-442","-2597","99","0","0" +"11277","417","0","1","-440","-2597","96","0","0" +"11276","417","1","1","-441","-2600","97","0","0" +"11275","417","2","1","-464","-2648","101","0","0" +"11274","417","3","1","-536","-2840","117","0","0" +"11273","417","4","1","-884","-2842","155","0","0" +"11272","417","5","1","-1289","-2225","132","0","0" +"11271","417","6","1","-1595","-1901","123","0","0" +"11270","417","7","1","-1870","-2028","112","0","0" +"11269","417","8","1","-2089","-1817","139","0","0" +"11268","417","9","1","-2379","-1881","100","0","0" +"11297","419","0","1","-1196","28","179","0","0" +"11296","419","1","1","-1202","30","180","0","0" +"11295","419","2","1","-1267","35","186","0","0" +"11294","419","3","1","-1322","-60","159","0","0" +"11293","419","4","1","-1452","-408","65","0","0" +"11292","419","5","1","-1881","-730","39","0","0" +"11291","419","6","1","-2435","-1131","11","0","0" +"11290","419","7","1","-2279","-1534","125","0","0" +"11289","419","8","1","-2379","-1882","100","0","0" +"11300","420","0","1","-2381","-1880","96","0","0" +"11301","420","1","1","-2378","-1878","97","0","0" +"11302","420","2","1","-2353","-1860","102","0","0" +"11303","420","3","1","-2294","-1815","115","0","0" +"11304","420","4","1","-2339","-1666","119","0","0" +"11305","420","5","1","-2279","-1252","25","0","0" +"11306","420","6","1","-2291","-813","8","0","0" +"11307","420","7","1","-1860","-527","10","0","0" +"11308","420","8","1","-1075","-675","4","0","0" +"11309","420","9","1","-858","-359","57","0","0" +"11310","420","10","1","-957","-113","168","0","0" +"11311","420","11","1","-1100","0","179","0","0" +"12429","420","12","1","-1172","24","181","0","0" +"12430","420","13","1","-1197","29","179","0","0" +"11312","421","0","1","-2381","-1881","96","0","0" +"11313","421","1","1","-2378","-1879","97","0","0" +"11314","421","2","1","-2362","-1867","99","0","0" +"11315","421","3","1","-2303","-1829","105","0","0" +"11316","421","4","1","-2306","-1759","105","0","0" +"11317","421","5","1","-2395","-1717","108","0","0" +"11318","421","6","1","-2487","-1800","115","0","0" +"11319","421","7","1","-2754","-1973","109","0","0" +"11320","421","8","1","-3027","-2022","124","0","0" +"11321","421","9","1","-3267","-1926","113","0","0" +"11322","421","10","1","-3692","-1958","107","0","0" +"11323","421","11","1","-3968","-1814","107","0","0" +"11324","421","12","1","-4158","-1894","106","0","0" +"11325","421","13","1","-4392","-1880","102","0","0" +"11326","421","14","1","-4650","-1857","105","0","0" +"11328","421","15","1","-4815","-2028","19","0","0" +"11329","421","16","1","-5020","-2014","32","0","0" +"11330","421","17","1","-5080","-2191","37","0","0" +"11331","421","18","1","-5278","-2244","67","0","0" +"11332","421","19","1","-5388","-2398","93","0","0" +"11355","421","20","1","-5410","-2415","94","0","0" +"11333","422","0","1","-5409","-2417","91","0","0" +"11334","422","1","1","-5413","-2416","92","0","0" +"11335","422","2","1","-5442","-2408","100","0","0" +"11336","422","3","1","-5531","-2359","87","0","0" +"11337","422","4","1","-5509","-2244","53","0","0" +"11338","422","5","1","-5412","-2058","-16","0","0" +"11339","422","6","1","-5236","-1952","-43","0","0" +"11340","422","7","1","-5186","-1813","-32","0","0" +"11341","422","8","1","-5017","-1775","0","0","0" +"11342","422","9","1","-4667","-1838","122","0","0" +"11343","422","10","1","-4381","-1878","100","0","0" +"11344","422","11","1","-4122","-1886","105","0","0" +"11345","422","12","1","-3900","-1768","110","0","0" +"11346","422","13","1","-3698","-1898","113","0","0" +"11347","422","14","1","-3362","-1897","118","0","0" +"11348","422","15","1","-2997","-2009","137","0","0" +"11349","422","16","1","-2558","-1867","121","0","0" +"11350","422","17","1","-2426","-1707","118","0","0" +"11351","422","18","1","-2317","-1738","113","0","0" +"11352","422","19","1","-2326","-1858","104","0","0" +"11353","422","20","1","-2380","-1882","100","0","0" +"11400","423","0","1","-6812","835","50","0","0" +"11399","423","1","1","-6814","833","51","0","0" +"11398","423","2","1","-6846","796","68","0","0" +"11397","423","3","1","-6896","736","84","0","0" +"11396","423","4","1","-6837","570","33","0","0" +"11395","423","5","1","-6888","400","33","0","0" +"11394","423","6","1","-6887","165","21","0","0" +"11393","423","7","1","-6755","-58","21","0","0" +"11392","423","8","1","-6515","-109","32","0","0" +"11391","423","9","1","-6302","-274","23","0","0" +"11390","423","10","1","-6239","-380","31","0","0" +"11389","423","11","1","-6255","-477","15","0","0" +"11388","423","12","1","-6229","-579","-81","0","0" +"11387","423","13","1","-6264","-652","-88","0","0" +"11386","423","14","1","-6340","-744","-121","0","0" +"11385","423","15","1","-6538","-773","-226","0","0" +"11384","423","16","1","-6724","-683","-243","0","0" +"11383","423","17","1","-7123","-690","-232","0","0" +"11382","423","18","1","-7382","-765","-232","0","0" +"11381","423","19","1","-7514","-959","-237","0","0" +"11380","423","20","1","-7853","-1293","-232","0","0" +"11379","423","21","1","-8123","-1532","-199","0","0" +"11378","423","22","1","-8125","-1984","12","0","0" +"11377","423","23","1","-8074","-2252","46","0","0" +"11376","423","24","1","-8020","-2394","46","0","0" +"11375","423","25","1","-7967","-2520","73","0","0" +"11374","423","26","1","-7766","-2628","45","0","0" +"11373","423","27","1","-7589","-2992","58","0","0" +"11372","423","28","1","-7222","-2958","39","0","0" +"11371","423","29","1","-7061","-3191","26","0","0" +"11370","423","30","1","-7002","-3570","34","0","0" +"11369","423","31","1","-7015","-3753","33","0","0" +"11368","423","32","1","-7055","-3781","12","0","0" +"11427","424","0","1","-6761","772","90","0","0" +"11426","424","1","1","-6761","768","91","0","0" +"11425","424","2","1","-6748","673","95","0","0" +"11424","424","3","1","-6711","462","52","0","0" +"11423","424","4","1","-6779","126","30","0","0" +"11422","424","5","1","-6728","-106","30","0","0" +"11421","424","6","1","-6461","-211","33","0","0" +"11420","424","7","1","-6272","-304","25","0","0" +"11419","424","8","1","-6257","-482","20","0","0" +"11418","424","9","1","-6437","-459","-101","0","0" +"11417","424","10","1","-6590","-624","-229","0","0" +"11416","424","11","1","-6892","-749","-240","0","0" +"11415","424","12","1","-6944","-1077","-251","0","0" +"11414","424","13","1","-7065","-1202","-217","0","0" +"11413","424","14","1","-7003","-1427","-231","0","0" +"11412","424","15","1","-7111","-1580","-243","0","0" +"11411","424","16","1","-7046","-1751","-212","0","0" +"11410","424","17","1","-6935","-2278","-159","0","0" +"11409","424","18","1","-7054","-2576","33","0","0" +"11408","424","19","1","-7084","-2958","29","0","0" +"11407","424","20","1","-7034","-3525","27","0","0" +"11406","424","21","1","-7182","-3657","19","0","0" +"11405","424","22","1","-7222","-3735","9","0","0" +"11432","425","0","0","-8360","-2739","185","0","0" +"11433","425","1","0","-8356","-2744","185","0","0" +"11434","425","2","0","-8315","-2775","200","0","0" +"11435","425","3","0","-8252","-2788","202","0","0" +"11436","425","4","0","-8127","-2703","202","0","0" +"11437","425","5","0","-8030","-2529","211","0","0" +"11438","425","6","0","-7988","-2223","194","0","0" +"11439","425","7","0","-8046","-1980","194","0","0" +"11440","425","8","0","-8078","-1689","194","0","0" +"11441","425","9","0","-8117","-1487","207","0","0" +"11442","425","10","0","-8186","-1176","207","0","0" +"11443","425","11","0","-8192","-922","226","0","0" +"11444","425","12","0","-8142","-713","226","0","0" +"11445","425","13","0","-8161","-592","226","0","0" +"11446","425","14","0","-8229","-440","226","0","0" +"11447","425","15","0","-8288","-372","203","0","0" +"11448","425","16","0","-8437","-411","150","0","0" +"11449","425","17","0","-8555","-497","157","0","0" +"11450","425","18","0","-8664","-481","156","0","0" +"11451","425","19","0","-8726","-432","168","0","0" +"11452","425","20","0","-8767","-354","103","0","0" +"11453","425","21","0","-8917","-336","116","0","0" +"11454","425","22","0","-9006","-272","159","0","0" +"11455","425","23","0","-9050","-15","177","0","0" +"11456","425","24","0","-9145","136","173","0","0" +"11457","425","25","0","-9131","242","168","0","0" +"11458","425","26","0","-9039","378","153","0","0" +"11459","425","27","0","-8919","417","134","0","0" +"11460","425","28","0","-8835","478","111","0","0" +"11493","427","0","0","-8846","501","109","0","0" +"11492","427","1","0","-8852","496","112","0","0" +"11491","427","2","0","-8949","452","130","0","0" +"11490","427","3","0","-9033","490","141","0","0" +"11489","427","4","0","-9110","472","145","0","0" +"11488","427","5","0","-9200","401","165","0","0" +"11487","427","6","0","-9104","133","185","0","0" +"11486","427","7","0","-8985","-34","199","0","0" +"11485","427","8","0","-8865","-127","182","0","0" +"11484","427","9","0","-8767","-354","177","0","0" +"11483","427","10","0","-8722","-431","180","0","0" +"11482","427","11","0","-8598","-528","152","0","0" +"11481","427","12","0","-8475","-428","171","0","0" +"11480","427","13","0","-8352","-378","155","0","0" +"11479","427","14","0","-8263","-413","203","0","0" +"11478","427","15","0","-8231","-492","226","0","0" +"11477","427","16","0","-8155","-642","210","0","0" +"11476","427","17","0","-8048","-868","202","0","0" +"11475","427","18","0","-8054","-1240","166","0","0" +"11474","427","19","0","-8204","-1536","207","0","0" +"11473","427","20","0","-8212","-1835","207","0","0" +"11472","427","21","0","-8136","-2064","166","0","0" +"11471","427","22","0","-8249","-2476","203","0","0" +"11470","427","23","0","-8130","-2609","195","0","0" +"11469","427","24","0","-8157","-2776","202","0","0" +"11468","427","25","0","-8285","-2788","212","0","0" +"12729","427","26","0","-8357","-2742","186","0","0" +"11494","428","0","0","-4822","-1155","502","0","0" +"11495","428","1","0","-4831","-1156","508","0","0" +"11496","428","2","0","-4841","-1156","511","0","0" +"11497","428","3","0","-4851","-1148","515","0","0" +"11498","428","4","0","-4861","-1129","521","0","0" +"11499","428","5","0","-4843","-1092","551","0","0" +"11500","428","6","0","-4847","-1063","553","0","0" +"11501","428","7","0","-4868","-1045","550","0","0" +"11502","428","8","0","-4937","-990","540","0","0" +"11503","428","9","0","-4934","-938","542","0","0" +"11504","428","10","0","-4993","-872","541","0","0" +"11505","428","11","0","-5020","-833","504","0","0" +"11506","428","12","0","-5070","-795","515","0","0" +"11507","428","13","0","-5123","-810","517","0","0" +"11508","428","14","0","-5304","-890","527","0","0" +"11509","428","15","0","-5390","-972","535","0","0" +"11510","428","16","0","-5240","-1187","565","0","0" +"11511","428","17","0","-5103","-1388","615","0","0" +"11512","428","18","0","-4910","-1457","712","0","0" +"11513","428","19","0","-4736","-1492","729","0","0" +"11514","428","20","0","-4481","-1411","603","0","0" +"11515","428","21","0","-4273","-1462","482","0","0" +"11516","428","22","0","-4102","-1320","203","0","0" +"11517","428","23","0","-3803","-1332","131","0","0" +"11518","428","24","0","-3558","-1216","26","0","0" +"11519","428","25","0","-3296","-991","18","0","0" +"11520","428","26","0","-2989","-924","14","0","0" +"11521","428","27","0","-2819","-1034","14","0","0" +"11522","428","28","0","-2700","-1198","12","0","0" +"11523","428","29","0","-2640","-1482","44","0","0" +"11524","428","30","0","-2484","-1607","27","0","0" +"11525","428","31","0","-2058","-1528","59","0","0" +"11526","428","32","0","-1801","-1419","79","0","0" +"11527","428","33","0","-1624","-1506","79","0","0" +"11528","428","34","0","-1453","-1586","79","0","0" +"11529","428","35","0","-1188","-1528","142","0","0" +"11530","428","36","0","-808","-1714","142","0","0" +"11531","428","37","0","-205","-1252","162","0","0" +"11532","428","38","0","109","-1124","133","0","0" +"11533","428","39","0","363","-1452","114","0","0" +"11534","428","40","0","668","-1470","129","0","0" +"11535","428","41","0","814","-1461","129","0","0" +"11536","428","42","0","884","-1500","98","0","0" +"11537","428","43","0","929","-1465","79","0","0" +"11538","428","44","0","930","-1430","66","0","0" +"11585","429","0","0","930","-1429","65","0","0" +"11584","429","1","0","937","-1428","68","0","0" +"11583","429","2","0","982","-1430","106","0","0" +"11582","429","3","0","1009","-1514","132","0","0" +"11581","429","4","0","918","-1526","143","0","0" +"11580","429","5","0","653","-1467","152","0","0" +"11579","429","6","0","302","-1370","109","0","0" +"11578","429","7","0","104","-1115","69","0","0" +"11577","429","8","0","-241","-1151","69","0","0" +"11576","429","9","0","-575","-1288","69","0","0" +"11575","429","10","0","-1034","-1524","157","0","0" +"11574","429","11","0","-1550","-1566","94","0","0" +"11573","429","12","0","-1798","-1357","65","0","0" +"11572","429","13","0","-2100","-1523","26","0","0" +"11571","429","14","0","-2680","-1448","17","0","0" +"11570","429","15","0","-2816","-1404","28","0","0" +"11569","429","16","0","-3026","-1357","18","0","0" +"11568","429","17","0","-3247","-1074","58","0","0" +"11567","429","18","0","-3421","-1028","75","0","0" +"11566","429","19","0","-4004","-1068","183","0","0" +"11565","429","20","0","-4230","-1032","306","0","0" +"11564","429","21","0","-4419","-859","567","0","0" +"11563","429","22","0","-4690","-713","686","0","0" +"11562","429","23","0","-4974","-635","614","0","0" +"11561","429","24","0","-5104","-746","513","0","0" +"11560","429","25","0","-5027","-824","507","0","0" +"11559","429","26","0","-4980","-883","542","0","0" +"11558","429","27","0","-4950","-918","543","0","0" +"11557","429","28","0","-4903","-930","544","0","0" +"11556","429","29","0","-4869","-966","544","0","0" +"11555","429","30","0","-4844","-1028","549","0","0" +"11554","429","31","0","-4792","-1103","527","0","0" +"11553","429","32","0","-4763","-1144","522","0","0" +"11552","429","33","0","-4790","-1171","512","0","0" +"11586","429","34","0","-4815","-1167","508","0","0" +"11587","429","35","0","-4822","-1154","503","0","0" +"11588","431","0","0","930","-1430","65","0","0" +"11589","431","1","0","933","-1434","66","0","0" +"11590","431","2","0","950","-1468","86","0","0" +"11591","431","3","0","952","-1516","103","0","0" +"11592","431","4","0","989","-1563","111","0","0" +"11593","431","5","0","1037","-1617","118","0","0" +"11594","431","6","0","1059","-1708","118","0","0" +"11595","431","7","0","1097","-1892","118","0","0" +"11596","431","8","0","1037","-2446","124","0","0" +"11597","431","9","0","1113","-2775","97","0","0" +"11598","431","10","0","1385","-3044","123","0","0" +"11599","431","11","0","1603","-3157","145","0","0" +"11600","431","12","0","1712","-3499","191","0","0" +"11601","431","13","0","1796","-3726","191","0","0" +"11602","431","14","0","2072","-4474","139","0","0" +"11603","431","15","0","2066","-5081","136","0","0" +"11604","431","16","0","2162","-5253","125","0","0" +"12890","431","17","0","2269","-5342","89","0","0" +"11621","432","0","0","2269","-5342","88","0","0" +"11620","432","1","0","2269","-5306","93","0","0" +"11619","432","2","0","2270","-5240","98","0","0" +"11618","432","3","0","2271","-5117","109","0","0" +"11617","432","4","0","2215","-4792","158","0","0" +"11616","432","5","0","2035","-4306","107","0","0" +"11615","432","6","0","1930","-3976","188","0","0" +"11614","432","7","0","1808","-3709","171","0","0" +"11613","432","8","0","1763","-3422","165","0","0" +"11612","432","9","0","1500","-3162","129","0","0" +"11611","432","10","0","1486","-2876","99","0","0" +"11610","432","11","0","1449","-2494","66","0","0" +"11609","432","12","0","1346","-1899","100","0","0" +"11608","432","13","0","1196","-1566","80","0","0" +"11607","432","14","0","1182","-1404","115","0","0" +"11606","432","15","0","1019","-1377","119","0","0" +"11605","432","16","0","930","-1430","66","0","0" +"11630","436","0","0","3067","-3533","231","0","0" +"11631","436","1","0","3133","-3433","231","2","60" +"11632","436","2","0","3200","-3336","231","0","0" +"11633","436","3","0","3266","-3300","231","0","0" +"11634","436","4","0","3364","-3366","231","0","0" +"11635","436","5","0","3332","-3466","231","0","0" +"11636","436","6","0","3267","-3567","231","0","0" +"11637","436","7","0","3200","-3667","231","0","0" +"11638","436","8","0","3133","-3766","231","0","0" +"11639","436","9","0","3034","-3831","231","0","0" +"11640","436","10","0","2965","-3767","231","0","0" +"11641","436","11","0","3000","-3633","231","0","0" +"11642","436","12","0","3066","-3533","231","0","0" +"11649","437","0","0","2269","-5340","87","0","0" +"11650","437","1","0","2267","-5330","90","0","0" +"11651","437","2","0","2258","-5294","101","0","0" +"11652","437","3","0","2230","-5239","106","0","0" +"11653","437","4","0","2157","-5110","106","0","0" +"11654","437","5","0","2045","-4998","111","0","0" +"11655","437","6","0","1912","-4872","111","0","0" +"11656","437","7","0","1847","-4800","136","0","0" +"11657","437","8","0","1783","-4703","136","0","0" +"11658","437","9","0","1761","-4435","136","0","0" +"11659","437","10","0","1710","-4268","136","0","0" +"11660","437","11","0","1751","-3989","168","0","0" +"11661","437","12","0","1652","-3852","188","0","0" +"11662","437","13","0","1358","-3883","252","0","0" +"11663","437","14","0","1255","-3901","280","0","0" +"11664","437","15","0","1145","-3956","255","0","0" +"11665","437","16","0","950","-4155","177","0","0" +"11666","437","17","0","551","-4050","175","0","0" +"11667","437","18","0","28","-3602","229","0","0" +"11668","437","19","0","-232","-3507","291","0","0" +"11669","437","20","0","-554","-3403","371","0","0" +"11670","437","21","0","-1035","-3237","92","0","0" +"11671","437","22","0","-1503","-2817","69","0","0" +"11672","437","23","0","-2085","-2577","108","0","0" +"11673","437","24","0","-2251","-2571","48","0","0" +"11674","437","25","0","-2333","-2545","30","0","0" +"11675","437","26","0","-2389","-2531","30","0","0" +"11676","437","27","0","-2401","-2379","30","0","0" +"11677","437","28","0","-2334","-1870","30","0","0" +"11678","437","29","0","-2526","-1695","36","0","0" +"11679","437","30","0","-3506","-1341","74","0","0" +"11680","437","31","0","-3955","-1287","189","0","0" +"11681","437","32","0","-4371","-1012","514","0","0" +"11682","437","33","0","-4628","-759","702","0","0" +"11683","437","34","0","-4978","-630","605","0","0" +"11684","437","35","0","-5099","-727","517","0","0" +"11685","437","36","0","-5027","-827","511","0","0" +"11686","437","37","0","-5002","-855","510","0","0" +"11687","437","38","0","-4966","-901","542","0","0" +"11688","437","39","0","-4941","-930","541","0","0" +"11689","437","40","0","-4890","-925","543","0","0" +"11690","437","41","0","-4869","-964","542","0","0" +"11691","437","42","0","-4845","-1024","549","0","0" +"11692","437","43","0","-4817","-1069","540","0","0" +"11693","437","44","0","-4787","-1119","521","0","0" +"11694","437","45","0","-4791","-1143","509","0","0" +"11695","437","46","0","-4811","-1155","506","0","0" +"11696","437","47","0","-4822","-1155","504","0","0" +"11744","438","0","0","-4822","-1155","502","0","0" +"11743","438","1","0","-4827","-1148","506","0","0" +"11742","438","2","0","-4842","-1121","524","0","0" +"11741","438","3","0","-4841","-1089","543","0","0" +"11740","438","4","0","-4853","-1059","550","0","0" +"11739","438","5","0","-4922","-1008","542","0","0" +"11738","438","6","0","-4949","-965","543","0","0" +"11737","438","7","0","-4953","-922","542","0","0" +"11736","438","8","0","-4975","-890","541","0","0" +"11735","438","9","0","-5002","-855","510","0","0" +"11734","438","10","0","-5049","-793","514","0","0" +"11733","438","11","0","-5080","-659","560","0","0" +"11732","438","12","0","-4959","-515","639","0","0" +"11731","438","13","0","-4719","-558","639","0","0" +"11730","438","14","0","-4228","-1162","456","0","0" +"11729","438","15","0","-3865","-1360","134","0","0" +"11728","438","16","0","-3461","-1536","78","0","0" +"11727","438","17","0","-2926","-2215","74","0","0" +"11726","438","18","0","-2766","-2502","128","0","0" +"11725","438","19","0","-2237","-2491","143","0","0" +"11724","438","20","0","-1503","-2817","69","0","0" +"11723","438","21","0","-1035","-3237","92","0","0" +"11722","438","22","0","-550","-3421","365","0","0" +"11721","438","23","0","-280","-3597","287","0","0" +"11720","438","24","0","399","-3771","200","0","0" +"11719","438","25","0","833","-3773","223","0","0" +"11718","438","26","0","1180","-3924","267","0","0" +"11717","438","27","0","1290","-3937","264","0","0" +"11716","438","28","0","1542","-3921","183","0","0" +"11715","438","29","0","1661","-4144","176","0","0" +"11714","438","30","0","2025","-4650","109","0","0" +"11713","438","31","0","2238","-4951","121","0","0" +"11712","438","32","0","2231","-5153","100","0","0" +"11711","438","33","0","2229","-5252","95","0","0" +"11710","438","34","0","2269","-5340","89","0","0" +"11745","439","0","0","-7589","-3318","170","0","0" +"11746","439","1","0","-7614","-3408","170","0","0" +"11747","439","2","0","-7654","-3352","170","0","0" +"11748","439","3","0","-7700","-3321","170","0","0" +"11749","439","4","0","-7741","-3347","170","0","0" +"11782","439","5","0","-7752","-3385","170","0","0" +"11783","439","6","0","-7735","-3409","170","0","0" +"11784","439","7","0","-7708","-3407","170","0","0" +"11785","439","8","0","-7690","-3388","170","0","0" +"11786","439","9","0","-7669","-3418","170","0","0" +"11787","439","10","0","-7674","-3440","170","0","0" +"11788","439","11","0","-7705","-3448","170","0","0" +"11789","439","12","0","-7735","-3433","170","0","0" +"11790","439","13","0","-7788","-3394","170","0","0" +"11791","439","14","0","-7806","-3361","170","0","0" +"11792","439","15","0","-7863","-3321","170","0","0" +"11793","439","16","0","-7901","-3286","170","0","0" +"11752","440","0","0","480","1537","131","0","0" +"11753","440","1","0","467","1531","136","0","0" +"11754","440","2","0","442","1516","142","0","0" +"11755","440","3","0","385","1484","144","0","0" +"11756","440","4","0","267","1380","158","0","0" +"11757","440","5","0","247","1012","213","0","0" +"11758","440","6","0","166","831","205","0","0" +"11759","440","7","0","115","599","146","0","0" +"11760","440","8","0","34","33","121","0","0" +"11761","440","9","0","-189","-362","181","0","0" +"11762","440","10","0","-301","-558","116","0","0" +"11763","440","11","0","-190","-825","94","0","0" +"11764","440","12","0","-75","-884","72","0","0" +"11765","440","13","0","-5","-857","61","0","0" +"11779","441","0","0","-5","-857","60","0","0" +"11778","441","1","0","-5","-833","63","0","0" +"11777","441","2","0","-37","-769","71","0","0" +"11776","441","3","0","-154","-733","80","0","0" +"11775","441","4","0","-300","-683","96","0","0" +"11774","441","5","0","-386","-537","96","0","0" +"11773","441","6","0","-355","-184","99","0","0" +"11772","441","7","0","-164","108","87","0","0" +"11771","441","8","0","197","565","128","0","0" +"11770","441","9","0","320","783","160","0","0" +"11769","441","10","0","375","942","211","0","0" +"11768","441","11","0","278","1319","147","0","0" +"11767","441","12","0","316","1426","154","0","0" +"11766","441","13","0","480","1539","133","0","0" +"11804","443","0","1","2825","-289","108","0","0" +"11805","443","1","1","2836","-257","112","0","0" +"11806","443","2","1","2866","-187","118","0","0" +"11807","443","3","1","2866","-132","115","0","0" +"11808","443","4","1","2840","34","115","0","0" +"11809","443","5","1","2850","266","108","0","0" +"11810","443","6","1","2789","391","105","0","0" +"11811","443","7","1","2791","493","104","0","0" +"11812","443","8","1","2872","507","122","0","0" +"11813","443","9","1","3019","579","124","0","0" +"11814","443","10","1","3171","633","115","0","0" +"11815","443","11","1","3371","753","115","0","0" +"11816","443","12","1","3440","1022","127","0","0" +"11817","443","13","1","3311","1243","20","0","0" +"11818","443","14","1","3241","1474","14","0","0" +"11819","443","15","1","3341","2016","24","0","0" +"11820","443","16","1","3269","2223","57","0","0" +"11821","443","17","1","3066","2435","143","0","0" +"11822","443","18","1","2918","2448","156","0","0" +"11823","443","19","1","2823","2229","276","0","0" +"11824","443","20","1","2707","1910","365","0","0" +"11825","443","21","1","2710","1792","386","0","0" +"11826","443","22","1","2665","1676","329","0","0" +"11827","443","23","1","2666","1557","311","0","0" +"11828","443","24","1","2675","1455","233","0","0" +"11855","444","0","1","2675","1455","231","0","0" +"11854","444","1","1","2674","1467","236","0","0" +"11853","444","2","1","2669","1508","254","0","0" +"11852","444","3","1","2664","1563","287","0","0" +"11851","444","4","1","2667","1674","354","0","0" +"11850","444","5","1","2741","1896","377","0","0" +"11849","444","6","1","2832","2356","213","0","0" +"11848","444","7","1","3038","2454","133","0","0" +"11847","444","8","1","3380","1939","24","0","0" +"11846","444","9","1","3518","1084","21","0","0" +"11845","444","10","1","3574","853","18","0","0" +"11844","444","11","1","3480","670","23","0","0" +"11843","444","12","1","3289","542","14","0","0" +"11842","444","13","1","3199","430","15","0","0" +"11841","444","14","1","3209","286","22","0","0" +"11840","444","15","1","3121","179","36","0","0" +"11839","444","16","1","2976","161","85","0","0" +"11838","444","17","1","2840","166","115","0","0" +"11837","444","18","1","2836","73","108","0","0" +"11836","444","19","1","2791","-46","107","0","0" +"11835","444","20","1","2752","-161","117","0","0" +"11856","444","21","1","2777","-257","117","0","0" +"11857","444","22","1","2824","-290","109","0","0" +"11859","445","0","1","-3828","-4521","11","0","0" +"11860","445","1","1","-3817","-4518","13","0","0" +"11861","445","2","1","-3800","-4514","17","0","0" +"11862","445","3","1","-3766","-4508","26","0","0" +"11863","445","4","1","-3706","-4490","26","0","0" +"11864","445","5","1","-3641","-4437","31","0","0" +"11865","445","6","1","-3542","-4367","30","0","0" +"11866","445","7","1","-3420","-4367","30","0","0" +"11867","445","8","1","-3023","-4302","30","0","0" +"11868","445","9","1","-2714","-4217","30","0","0" +"11869","445","10","1","-2415","-4042","30","0","0" +"11870","445","11","1","-2038","-3842","30","0","0" +"11871","445","12","1","-1352","-4024","62","0","0" +"11872","445","13","1","-717","-3942","67","0","0" +"11873","445","14","1","-424","-3826","45","0","0" +"11874","445","15","1","-144","-3548","103","0","0" +"11875","445","16","1","354","-3541","114","0","0" +"11876","445","17","1","1444","-3859","114","0","0" +"11877","445","18","1","1991","-3693","114","0","0" +"11878","445","19","1","2508","-3680","110","0","0" +"11879","445","20","1","2635","-3742","131","0","0" +"11880","445","21","1","2692","-3856","118","0","0" +"11881","445","22","1","2723","-3879","103","0","0" +"11908","446","0","1","2723","-3879","101","0","0" +"11907","446","1","1","2733","-3870","105","0","0" +"11906","446","2","1","2760","-3849","112","0","0" +"11905","446","3","1","2809","-3796","121","0","0" +"11904","446","4","1","2754","-3743","61","0","0" +"11903","446","5","1","2475","-3719","61","0","0" +"11902","446","6","1","2029","-3638","61","0","0" +"11901","446","7","1","1444","-3859","135","0","0" +"11900","446","8","1","384","-3492","135","0","0" +"11899","446","9","1","-229","-3541","114","0","0" +"11898","446","10","1","-457","-3807","46","0","0" +"11897","446","11","1","-736","-4006","42","0","0" +"11896","446","12","1","-1295","-3901","23","0","0" +"11895","446","13","1","-1659","-3936","49","0","0" +"11894","446","14","1","-2198","-4036","24","0","0" +"11893","446","15","1","-2788","-4211","18","0","0" +"11892","446","16","1","-2992","-4389","41","0","0" +"11891","446","17","1","-3455","-4430","41","0","0" +"11890","446","18","1","-3676","-4479","35","0","0" +"11889","446","19","1","-3781","-4512","24","0","0" +"11888","446","20","1","-3827","-4521","13","0","0" +"11909","447","0","1","2722","-3880","101","0","0" +"11910","447","1","1","2737","-3885","106","0","0" +"11911","447","2","1","2771","-3897","115","0","0" +"11912","447","3","1","2824","-3918","132","0","0" +"11913","447","4","1","3029","-3998","198","0","0" +"11914","447","5","1","3372","-4117","204","0","0" +"11915","447","6","1","3766","-4619","290","0","0" +"11916","447","7","1","3919","-4905","315","0","0" +"11917","447","8","1","4512","-5260","503","0","0" +"11918","447","9","1","4866","-5265","736","0","0" +"11919","447","10","1","5085","-5120","933","0","0" +"11920","447","11","1","5099","-4966","919","0","0" +"11921","447","12","1","5229","-4856","796","0","0" +"11922","447","13","1","5292","-4689","777","0","0" +"11923","447","14","1","5379","-4526","778","0","0" +"11924","447","15","1","5539","-4489","778","0","0" +"11925","447","16","1","5777","-4604","786","0","0" +"11926","447","17","1","6267","-4768","786","0","0" +"11927","447","18","1","6467","-4779","769","0","0" +"11928","447","19","1","6689","-4762","727","0","0" +"11929","447","20","1","6793","-4741","704","0","0" +"11950","448","0","1","6793","-4741","702","0","0" +"11949","448","1","1","6801","-4741","704","0","0" +"11948","448","2","1","6853","-4738","714","0","0" +"11947","448","3","1","6889","-4684","720","0","0" +"11946","448","4","1","6797","-4600","732","0","0" +"11945","448","5","1","6489","-4691","802","0","0" +"11944","448","6","1","6033","-4747","809","0","0" +"11943","448","7","1","5433","-4762","823","0","0" +"11942","448","8","1","5157","-4926","906","0","0" +"11941","448","9","1","5091","-5118","945","0","0" +"11940","448","10","1","4670","-5263","737","0","0" +"11939","448","11","1","4165","-5145","503","0","0" +"11938","448","12","1","3772","-4900","315","0","0" +"11937","448","13","1","3370","-4645","151","0","0" +"11936","448","14","1","3173","-4465","162","0","0" +"11935","448","15","1","3020","-4252","148","0","0" +"11934","448","16","1","2875","-4000","153","0","0" +"11933","448","17","1","2782","-3918","114","0","0" +"12848","448","18","1","2723","-3879","102","0","0" +"11958","449","0","1","-6807","838","50","0","0" +"11959","449","1","1","-6813","829","53","0","0" +"11960","449","2","1","-6823","812","56","0","0" +"11961","449","3","1","-6849","795","64","0","0" +"11962","449","4","1","-6901","802","64","0","0" +"11963","449","5","1","-6969","929","64","0","0" +"11964","449","6","1","-6859","1062","64","0","0" +"11965","449","7","1","-6538","1232","64","0","0" +"11966","449","8","1","-6239","1322","157","0","0" +"11967","449","9","1","-6148","1310","183","0","0" +"11968","449","10","1","-6010","1293","187","0","0" +"11969","449","11","1","-5925","1314","170","0","0" +"11970","449","12","1","-5848","1212","116","0","0" +"11971","449","13","1","-5802","1134","94","0","0" +"11972","449","14","1","-5680","1126","83","0","0" +"11973","449","15","1","-5610","1144","73","0","0" +"11974","449","16","1","-5507","1216","63","0","0" +"11975","449","17","1","-5311","1148","99","0","0" +"11976","449","18","1","-5179","1193","94","0","0" +"11977","449","19","1","-5081","1165","99","0","0" +"11978","449","20","1","-4961","1164","90","0","0" +"11979","449","21","1","-4832","1140","111","0","0" +"11980","449","22","1","-4690","1052","129","0","0" +"11981","449","23","1","-4595","899","89","0","0" +"11982","449","24","1","-4582","700","68","0","0" +"11983","449","25","1","-4361","534","86","0","0" +"11984","449","26","1","-4365","323","65","0","0" +"11985","449","27","1","-4380","229","49","0","0" +"11986","449","28","1","-4417","200","27","0","0" +"12021","450","0","1","-4414","200","26","0","0" +"12020","450","1","1","-4429","199","29","0","0" +"12019","450","2","1","-4499","198","46","0","0" +"12018","450","3","1","-4600","266","46","0","0" +"12017","450","4","1","-4711","324","46","0","0" +"12016","450","5","1","-4714","449","46","0","0" +"12015","450","6","1","-4693","566","67","0","0" +"12014","450","7","1","-4638","646","78","0","0" +"12013","450","8","1","-4588","754","67","0","0" +"12012","450","9","1","-4604","929","94","0","0" +"12011","450","10","1","-4695","1013","126","0","0" +"12010","450","11","1","-4810","1064","111","0","0" +"12009","450","12","1","-4876","1188","99","0","0" +"12008","450","13","1","-5030","1214","69","0","0" +"12007","450","14","1","-5285","1192","87","0","0" +"12006","450","15","1","-5437","1180","79","0","0" +"12005","450","16","1","-5583","1111","68","0","0" +"12004","450","17","1","-5674","1165","90","0","0" +"12003","450","18","1","-5832","1218","118","0","0" +"12002","450","19","1","-5924","1306","170","0","0" +"12001","450","20","1","-5995","1299","193","0","0" +"12000","450","21","1","-6239","1322","186","0","0" +"11999","450","22","1","-6515","1332","76","0","0" +"11998","450","23","1","-6734","1165","63","0","0" +"11997","450","24","1","-6896","929","63","0","0" +"11996","450","25","1","-6894","836","63","0","0" +"11995","450","26","1","-6869","807","63","0","0" +"11994","450","27","1","-6841","811","61","0","0" +"11993","450","28","1","-6810","836","52","0","0" +"12022","451","0","1","-6760","773","89","0","0" +"12023","451","1","1","-6761","763","92","0","0" +"12024","451","2","1","-6762","751","93","0","0" +"12025","451","3","1","-6760","700","93","0","0" +"12026","451","4","1","-6699","629","96","0","0" +"12027","451","5","1","-6505","635","60","0","0" +"12028","451","6","1","-6459","806","63","0","0" +"12029","451","7","1","-6466","1233","64","0","0" +"12030","451","8","1","-6330","1334","63","0","0" +"12031","451","9","1","-6135","1307","201","0","0" +"12032","451","10","1","-6049","1290","176","0","0" +"12033","451","11","1","-5935","1309","173","0","0" +"12034","451","12","1","-5878","1257","122","0","0" +"12035","451","13","1","-5833","1217","105","0","0" +"12036","451","14","1","-5609","1328","91","0","0" +"12037","451","15","1","-5400","1420","78","0","0" +"12038","451","16","1","-5298","1412","71","0","0" +"12039","451","17","1","-5170","1464","71","0","0" +"12040","451","18","1","-4813","1639","95","0","0" +"12041","451","19","1","-4783","1872","94","0","0" +"12042","451","20","1","-4709","2034","36","0","0" +"12043","451","21","1","-4569","2261","36","0","0" +"12044","451","22","1","-4327","2614","65","0","0" +"12045","451","23","1","-3999","3032","65","0","0" +"12046","451","24","1","-3999","3333","65","0","0" +"12047","451","25","1","-4134","3431","65","0","0" +"12048","451","26","1","-4267","3399","36","0","0" +"12049","451","27","1","-4333","3366","23","0","0" +"12050","451","28","1","-4372","3339","14","0","0" +"12055","452","0","1","-6115","-1144","-186","0","0" +"12056","452","1","1","-6130","-1142","-181","0","0" +"12057","452","2","1","-6167","-1131","-174","0","0" +"12058","452","3","1","-6237","-1132","-174","0","0" +"12059","452","4","1","-6314","-1183","-174","0","0" +"12060","452","5","1","-6465","-1298","-174","0","0" +"12061","452","6","1","-6699","-1491","-174","0","0" +"12062","452","7","1","-6779","-1772","-174","0","0" +"12063","452","8","1","-6880","-2051","-174","0","0" +"12064","452","9","1","-6939","-2264","-174","0","0" +"12065","452","10","1","-7088","-2569","20","0","0" +"12102","452","11","1","-7087","-2807","27","0","0" +"12103","452","12","1","-7129","-3252","27","0","0" +"12104","452","13","1","-7130","-3528","27","0","0" +"12105","452","14","1","-7188","-3666","22","0","0" +"12912","452","15","1","-7223","-3732","10","0","0" +"12066","453","0","1","-6115","-1145","-186","0","0" +"12067","453","1","1","-6133","-1141","-181","0","0" +"12068","453","2","1","-6177","-1127","-174","0","0" +"12069","453","3","1","-6238","-1142","-172","0","0" +"12070","453","4","1","-6406","-1241","-172","0","0" +"12071","453","5","1","-6700","-1473","-172","0","0" +"12072","453","6","1","-6816","-1787","-172","0","0" +"12073","453","7","1","-6874","-2081","-172","0","0" +"12074","453","8","1","-6956","-2255","-172","0","0" +"12075","453","9","1","-7110","-2576","26","0","0" +"12106","453","10","1","-7210","-2801","29","0","0" +"12107","453","11","1","-7233","-3099","29","0","0" +"12108","453","12","1","-7298","-3532","29","0","0" +"12109","453","13","1","-7241","-3765","29","0","0" +"12110","453","14","1","-7142","-3829","29","0","0" +"12111","453","15","1","-7081","-3826","29","0","0" +"12112","453","16","1","-7044","-3781","13","0","0" +"12076","454","0","1","-6113","-1143","-186","0","0" +"12077","454","1","1","-6132","-1141","-183","0","0" +"12078","454","2","1","-6207","-1133","-174","0","0" +"12079","454","3","1","-6405","-1095","-174","0","0" +"12080","454","4","1","-6584","-868","-182","0","0" +"12081","454","5","1","-6566","-590","-226","0","0" +"12082","454","6","1","-6391","-555","-171","0","0" +"12083","454","7","1","-6328","-552","-144","0","0" +"12084","454","8","1","-6228","-588","-91","0","0" +"12085","454","9","1","-6234","-456","-33","0","0" +"12086","454","10","1","-6302","-368","20","0","0" +"12087","454","11","1","-6482","-185","21","0","0" +"12088","454","12","1","-6699","-37","21","0","0" +"12113","454","13","1","-6845","288","15","0","0" +"12114","454","14","1","-6944","634","60","0","0" +"12115","454","15","1","-6887","780","62","0","0" +"12116","454","16","1","-6811","836","52","0","0" +"12089","455","0","1","-6116","-1143","-186","0","0" +"12090","455","1","1","-6133","-1143","-184","0","0" +"12091","455","2","1","-6216","-1135","-174","0","0" +"12092","455","3","1","-6412","-1088","-174","0","0" +"12093","455","4","1","-6597","-909","-187","0","0" +"12094","455","5","1","-6574","-650","-226","0","0" +"12095","455","6","1","-6366","-552","-168","0","0" +"12096","455","7","1","-6255","-588","-113","0","0" +"12097","455","8","1","-6219","-558","-100","0","0" +"12098","455","9","1","-6226","-467","-49","0","0" +"12099","455","10","1","-6298","-371","17","0","0" +"12100","455","11","1","-6401","-233","8","0","0" +"12101","455","12","1","-6679","-37","14","0","0" +"12117","455","13","1","-6751","346","27","0","0" +"12118","455","14","1","-6784","517","40","0","0" +"12119","455","15","1","-6755","685","91","0","0" +"12120","455","16","1","-6760","772","91","0","0" +"12137","456","0","1","-6811","836","50","0","0" +"12136","456","1","1","-6836","817","57","0","0" +"12135","456","2","1","-6905","746","65","0","0" +"12134","456","3","1","-6969","572","44","0","0" +"12133","456","4","1","-6803","277","15","0","0" +"12132","456","5","1","-6701","-37","15","0","0" +"12131","456","6","1","-6399","-243","15","0","0" +"12130","456","7","1","-6280","-402","17","0","0" +"12129","456","8","1","-6227","-469","-9","0","0" +"12128","456","9","1","-6224","-574","-101","0","0" +"12127","456","10","1","-6272","-586","-115","0","0" +"12126","456","11","1","-6357","-649","-155","0","0" +"12125","456","12","1","-6589","-783","-204","0","0" +"12124","456","13","1","-6555","-951","-209","0","0" +"12123","456","14","1","-6405","-1095","-190","0","0" +"12122","456","15","1","-6207","-1133","-169","0","0" +"12121","456","16","1","-6116","-1143","-186","0","0" +"12155","457","0","1","-6760","772","89","0","0" +"12154","457","1","1","-6753","751","93","0","0" +"12153","457","2","1","-6729","666","93","0","0" +"12152","457","3","1","-6701","500","56","0","0" +"12151","457","4","1","-6678","190","55","0","0" +"12150","457","5","1","-6597","-64","55","0","0" +"12149","457","6","1","-6449","-171","22","0","0" +"12148","457","7","1","-6319","-312","53","0","0" +"12147","457","8","1","-6226","-467","-30","0","0" +"12146","457","9","1","-6219","-558","-81","0","0" +"12145","457","10","1","-6255","-588","-102","0","0" +"12144","457","11","1","-6366","-548","-173","0","0" +"12143","457","12","1","-6573","-647","-228","0","0" +"12142","457","13","1","-6579","-852","-201","0","0" +"12141","457","14","1","-6417","-1026","-173","0","0" +"12140","457","15","1","-6236","-1121","-169","0","0" +"12139","457","16","1","-6115","-1145","-185","0","0" +"12171","458","0","1","-7223","-3732","9","0","0" +"12170","458","1","1","-7206","-3703","15","0","0" +"12169","458","2","1","-7168","-3534","29","0","0" +"12168","458","3","1","-7128","-2832","48","0","0" +"12167","458","4","1","-7110","-2575","23","0","0" +"12166","458","5","1","-6986","-2265","-174","0","0" +"12165","458","6","1","-6880","-2051","-213","0","0" +"12164","458","7","1","-6779","-1772","-204","0","0" +"12163","458","8","1","-6699","-1491","-211","0","0" +"12162","458","9","1","-6465","-1298","-204","0","0" +"12161","458","10","1","-6314","-1183","-196","0","0" +"12160","458","11","1","-6273","-1129","-192","0","0" +"12159","458","12","1","-6187","-1120","-177","0","0" +"12158","458","13","1","-6116","-1145","-186","0","0" +"12188","459","0","1","-7044","-3781","11","0","0" +"12187","459","1","1","-7028","-3771","20","0","0" +"12186","459","2","1","-6985","-3726","48","0","0" +"12185","459","3","1","-6990","-3630","55","0","0" +"12184","459","4","1","-7038","-3322","28","0","0" +"12183","459","5","1","-7145","-2994","30","0","0" +"12182","459","6","1","-7170","-2768","30","0","0" +"12181","459","7","1","-7071","-2573","30","0","0" +"12180","459","8","1","-6931","-2269","-173","0","0" +"12179","459","9","1","-6874","-2081","-213","0","0" +"12178","459","10","1","-6816","-1787","-221","0","0" +"12177","459","11","1","-6700","-1473","-229","0","0" +"12176","459","12","1","-6406","-1241","-223","0","0" +"12175","459","13","1","-6238","-1142","-189","0","0" +"12174","459","14","1","-6185","-1126","-178","0","0" +"12173","459","15","1","-6115","-1144","-185","0","0" +"12220","460","0","1","-895","-3773","12","0","0" +"12221","460","1","1","-875","-3819","24","0","0" +"12222","460","2","1","-893","-3873","32","0","0" +"12223","460","3","1","-1009","-3946","24","0","0" +"12224","460","4","1","-1276","-3984","32","0","0" +"12225","460","5","1","-1588","-3993","32","0","0" +"12226","460","6","1","-2245","-4047","32","0","0" +"12227","460","7","1","-2880","-4235","32","0","0" +"12228","460","8","1","-3211","-4403","32","0","0" +"12229","460","9","1","-3532","-4454","41","0","0" +"12230","460","10","1","-3693","-4484","29","0","0" +"12231","460","11","1","-3789","-4506","24","0","0" +"12232","460","12","1","-3826","-4517","12","0","0" +"12199","461","0","1","-893","-3774","12","0","0" +"12200","461","1","1","-875","-3797","20","0","0" +"12201","461","2","1","-836","-3841","29","0","0" +"12202","461","3","1","-710","-3853","80","0","0" +"12203","461","4","1","-622","-3814","103","0","0" +"12204","461","5","1","-500","-3497","112","0","0" +"12205","461","6","1","-652","-3308","122","0","0" +"12206","461","7","1","-714","-3033","107","0","0" +"12207","461","8","1","-670","-2681","120","0","0" +"12208","461","9","1","-632","-2533","120","0","0" +"12853","461","10","1","-533","-2466","120","0","0" +"12854","461","11","1","-466","-2466","120","0","0" +"12855","461","12","1","-417","-2533","120","0","0" +"12856","461","13","1","-440","-2599","98","0","0" +"12218","462","0","1","-442","-2598","97","0","0" +"12217","462","1","1","-438","-2648","106","0","0" +"12216","462","2","1","-434","-2707","114","0","0" +"12215","462","3","1","-455","-2775","109","0","0" +"12214","462","4","1","-565","-2890","108","0","0" +"12213","462","5","1","-933","-3248","110","0","0" +"12212","462","6","1","-1042","-3369","107","0","0" +"12211","462","7","1","-1016","-3620","60","0","0" +"12210","462","8","1","-975","-3784","35","0","0" +"12209","462","9","1","-921","-3803","25","0","0" +"12852","462","10","1","-893","-3774","13","0","0" +"12245","464","0","1","-3826","-4517","11","0","0" +"12244","464","1","1","-3853","-4557","20","0","0" +"12243","464","2","1","-3872","-4611","30","0","0" +"12242","464","3","1","-3831","-4688","29","0","0" +"12241","464","4","1","-3684","-4701","30","0","0" +"12240","464","5","1","-3520","-4600","30","0","0" +"12239","464","6","1","-3015","-4303","30","0","0" +"12238","464","7","1","-2581","-4123","30","0","0" +"12237","464","8","1","-2228","-3904","30","0","0" +"12236","464","9","1","-1366","-4016","30","0","0" +"12235","464","10","1","-1001","-3913","30","0","0" +"12234","464","11","1","-900","-3833","30","0","0" +"12233","464","12","1","-895","-3773","13","0","0" +"12246","465","0","1","2721","-3880","101","0","0" +"12247","465","1","1","2733","-3873","108","0","0" +"12248","465","2","1","2755","-3856","108","0","0" +"12249","465","3","1","2780","-3823","110","0","0" +"12250","465","4","1","2780","-3772","107","0","0" +"12251","465","5","1","2704","-3736","89","0","0" +"12252","465","6","1","2472","-3697","79","0","0" +"12253","465","7","1","2124","-3631","72","0","0" +"12254","465","8","1","1842","-3716","72","0","0" +"12255","465","9","1","1600","-3855","76","0","0" +"12256","465","10","1","1344","-3848","72","0","0" +"12257","465","11","1","-129","-3868","75","0","0" +"12258","465","12","1","-514","-3881","67","0","0" +"12259","465","13","1","-724","-3993","52","0","0" +"12260","465","14","1","-825","-3977","37","0","0" +"12261","465","15","1","-863","-3833","23","0","0" +"12262","465","16","1","-895","-3772","13","0","0" +"12279","466","0","1","-895","-3772","12","0","0" +"12278","466","1","1","-866","-3835","29","0","0" +"12277","466","2","1","-825","-3977","47","0","0" +"12276","466","3","1","-724","-3993","59","0","0" +"12275","466","4","1","-514","-3881","54","0","0" +"12274","466","5","1","-129","-3868","66","0","0" +"12273","466","6","1","1344","-3848","59","0","0" +"12272","466","7","1","1600","-3855","84","0","0" +"12271","466","8","1","1842","-3716","59","0","0" +"12270","466","9","1","2124","-3631","57","0","0" +"12269","466","10","1","2472","-3697","53","0","0" +"12268","466","11","1","2613","-3719","99","0","0" +"12267","466","12","1","2667","-3799","123","0","0" +"12266","466","13","1","2691","-3854","114","0","0" +"12265","466","14","1","2707","-3871","109","0","0" +"12264","466","15","1","2721","-3880","103","0","0" +"12280","467","0","1","2825","-292","108","0","0" +"12281","467","1","1","2832","-314","111","0","0" +"12282","467","2","1","2857","-386","120","0","0" +"12283","467","3","1","2826","-493","114","0","0" +"12284","467","4","1","2637","-584","118","0","0" +"12285","467","5","1","2483","-653","124","0","0" +"12286","467","6","1","2476","-752","138","0","0" +"12287","467","7","1","2507","-879","147","0","0" +"12288","467","8","1","2502","-1064","135","0","0" +"12289","467","9","1","2456","-1276","140","0","0" +"12290","467","10","1","2398","-1437","132","0","0" +"12291","467","11","1","2352","-1599","130","0","0" +"12292","467","12","1","2326","-1670","132","0","0" +"12293","467","13","1","2181","-1780","118","0","0" +"12294","467","14","1","2011","-1913","103","0","0" +"12295","467","15","1","1995","-1976","104","0","0" +"12296","467","16","1","2090","-2022","105","0","0" +"12297","467","17","1","2234","-2217","116","0","0" +"12298","467","18","1","2324","-2321","126","0","0" +"12299","467","19","1","2434","-2325","146","0","0" +"12300","467","20","1","2555","-2408","169","0","0" +"12301","467","21","1","2539","-2578","169","0","0" +"12302","467","22","1","2500","-2672","164","0","0" +"12303","467","23","1","2483","-2757","164","0","0" +"12304","467","24","1","2534","-2827","164","0","0" +"12305","467","25","1","2568","-2950","164","0","0" +"12306","467","26","1","2673","-3095","164","0","0" +"12307","467","27","1","2716","-3176","162","0","0" +"12308","467","28","1","2734","-3288","147","0","0" +"12309","467","29","1","2727","-3496","131","0","0" +"12310","467","30","1","2708","-3693","114","0","0" +"12311","467","31","1","2670","-3805","123","0","0" +"12312","467","32","1","2700","-3861","114","0","0" +"12313","467","33","1","2722","-3880","102","0","0" +"12347","468","0","1","2722","-3880","101","0","0" +"12346","468","1","1","2753","-3853","103","0","0" +"12345","468","2","1","2829","-3764","110","0","0" +"12344","468","3","1","2890","-3625","110","0","0" +"12343","468","4","1","2832","-3486","121","0","0" +"12342","468","5","1","2733","-3313","147","0","0" +"12341","468","6","1","2716","-3176","162","0","0" +"12340","468","7","1","2673","-3095","164","0","0" +"12339","468","8","1","2568","-2950","164","0","0" +"12338","468","9","1","2534","-2827","164","0","0" +"12337","468","10","1","2483","-2757","164","0","0" +"12336","468","11","1","2500","-2672","164","0","0" +"12335","468","12","1","2539","-2578","169","0","0" +"12334","468","13","1","2555","-2408","171","0","0" +"12333","468","14","1","2434","-2325","147","0","0" +"12332","468","15","1","2324","-2321","129","0","0" +"12331","468","16","1","2234","-2217","114","0","0" +"12330","468","17","1","2090","-2022","109","0","0" +"12329","468","18","1","1995","-1976","105","0","0" +"12328","468","19","1","2011","-1913","103","0","0" +"12327","468","20","1","2181","-1780","118","0","0" +"12326","468","21","1","2326","-1670","132","0","0" +"12325","468","22","1","2352","-1599","130","0","0" +"12324","468","23","1","2398","-1437","132","0","0" +"12323","468","24","1","2456","-1276","140","0","0" +"12322","468","25","1","2502","-1064","135","0","0" +"12321","468","26","1","2507","-879","147","0","0" +"12320","468","27","1","2476","-752","138","0","0" +"12319","468","28","1","2483","-653","124","0","0" +"12318","468","29","1","2637","-584","118","0","0" +"12317","468","30","1","2607","-335","117","0","0" +"12316","468","31","1","2721","-253","122","0","0" +"12315","468","32","1","2788","-272","115","0","0" +"12314","468","33","1","2825","-292","109","0","0" +"12348","469","0","0","-9430","-2237","69","0","0" +"12349","469","1","0","-9417","-2267","76","0","0" +"12350","469","2","0","-9395","-2301","81","0","0" +"12351","469","3","0","-9315","-2410","95","0","0" +"12352","469","4","0","-9158","-2550","131","0","0" +"12353","469","5","0","-8999","-2601","134","0","0" +"12354","469","6","0","-8884","-2579","150","0","0" +"12355","469","7","0","-8697","-2574","161","0","0" +"12356","469","8","0","-8427","-2542","178","0","0" +"12357","469","9","0","-8178","-2611","178","0","0" +"12358","469","10","0","-8131","-2717","177","0","0" +"12359","469","11","0","-8248","-2800","216","0","0" +"12360","469","12","0","-8363","-2740","187","0","0" +"12373","470","0","0","-8361","-2740","186","0","0" +"12372","470","1","0","-8355","-2745","188","0","0" +"12371","470","2","0","-8311","-2780","203","0","0" +"12370","470","3","0","-8226","-2818","209","0","0" +"12369","470","4","0","-8163","-2782","209","0","0" +"12368","470","5","0","-8133","-2679","198","0","0" +"12367","470","6","0","-8234","-2575","194","0","0" +"12366","470","7","0","-8427","-2542","167","0","0" +"12365","470","8","0","-8697","-2574","169","0","0" +"12364","470","9","0","-8884","-2579","179","0","0" +"12363","470","10","0","-8999","-2601","188","0","0" +"12362","470","11","0","-9158","-2550","160","0","0" +"12895","470","12","0","-9315","-2410","108","0","0" +"12896","470","13","0","-9415","-2350","113","0","0" +"12897","470","14","0","-9430","-2237","70","0","0" +"12402","471","0","1","-4372","3339","13","0","0" +"12401","471","1","1","-4314","3326","28","0","0" +"12400","471","2","1","-4286","3256","36","0","0" +"12399","471","3","1","-4271","2987","65","0","0" +"12398","471","4","1","-4430","2552","65","0","0" +"12397","471","5","1","-4598","2265","37","0","0" +"12396","471","6","1","-4739","1979","63","0","0" +"12395","471","7","1","-4783","1872","94","0","0" +"12394","471","8","1","-4780","1651","98","0","0" +"12393","471","9","1","-5157","1476","71","0","0" +"12392","471","10","1","-5298","1412","78","0","0" +"12391","471","11","1","-5464","1424","79","0","0" +"12390","471","12","1","-5608","1326","91","0","0" +"12389","471","13","1","-5827","1210","104","0","0" +"12388","471","14","1","-5878","1257","130","0","0" +"12387","471","15","1","-5935","1309","178","0","0" +"12386","471","16","1","-6049","1290","186","0","0" +"12385","471","17","1","-6135","1307","176","0","0" +"12384","471","18","1","-6400","1332","64","0","0" +"12383","471","19","1","-6499","1166","65","0","0" +"12382","471","20","1","-6566","999","63","0","0" +"12381","471","21","1","-6566","666","60","0","0" +"12380","471","22","1","-6667","587","96","0","0" +"12379","471","23","1","-6765","633","93","0","0" +"12378","471","24","1","-6766","733","92","0","0" +"12377","471","25","1","-6760","773","90","0","0" +"12469","473","0","0","-634","-4720","6","0","0" +"12470","473","1","0","-626","-4723","7","0","0" +"12471","473","2","0","-570","-4742","23","0","0" +"12472","473","3","0","-479","-4744","35","0","0" +"12473","473","4","0","-410","-4641","49","0","0" +"12474","473","5","0","-325","-4491","78","0","0" +"12475","473","6","0","-237","-4380","121","0","0" +"12476","473","7","0","-130","-4372","168","0","0" +"12477","473","8","0","26","-4381","168","0","0" +"12478","473","9","0","201","-4371","168","0","0" +"12479","473","10","0","479","-4188","187","0","0" +"12480","473","11","0","840","-4114","200","0","0" +"12481","473","12","0","1155","-4036","274","0","0" +"12482","473","13","0","1317","-3966","298","0","0" +"12483","473","14","0","1543","-4005","223","0","0" +"12484","473","15","0","1673","-4363","166","0","0" +"12485","473","16","0","1831","-4725","156","0","0" +"12486","473","17","0","1888","-4886","156","0","0" +"12487","473","18","0","1978","-5173","142","0","0" +"12488","473","19","0","2147","-5313","120","0","0" +"12489","473","20","0","2317","-5294","84","0","0" +"12510","474","0","0","2317","-5294","83","0","0" +"12509","474","1","0","2313","-5286","86","0","0" +"12508","474","2","0","2281","-5188","97","0","0" +"12507","474","3","0","2197","-4899","136","0","0" +"12506","474","4","0","1998","-4465","136","0","0" +"12505","474","5","0","1662","-4141","177","0","0" +"12504","474","6","0","1268","-3925","286","0","0" +"12503","474","7","0","1046","-4078","204","0","0" +"12502","474","8","0","653","-4141","175","0","0" +"12501","474","9","0","387","-4070","194","0","0" +"12500","474","10","0","-10","-4105","201","0","0" +"12499","474","11","0","-208","-4340","176","0","0" +"12498","474","12","0","-429","-4466","112","0","0" +"12497","474","13","0","-677","-4558","77","0","0" +"12496","474","14","0","-709","-4661","41","0","0" +"12495","474","15","0","-636","-4718","6","0","0" +"12512","475","0","0","283","-2002","195","0","0" +"12513","475","1","0","281","-2007","196","0","0" +"12514","475","2","0","273","-2018","199","0","0" +"12515","475","3","0","245","-2054","204","0","0" +"12516","475","4","0","197","-2084","204","0","0" +"12517","475","5","0","109","-2054","204","0","0" +"12518","475","6","0","50","-1976","228","0","0" +"12519","475","7","0","-6","-1796","247","0","0" +"12520","475","8","0","51","-1735","269","0","0" +"12521","475","9","0","121","-1705","274","0","0" +"12522","475","10","0","202","-1662","249","0","0" +"12523","475","11","0","577","-1487","132","0","0" +"12524","475","12","0","685","-1466","127","0","0" +"12525","475","13","0","821","-1472","104","0","0" +"12526","475","14","0","911","-1479","77","0","0" +"12527","475","15","0","930","-1430","67","0","0" +"12543","476","0","0","930","-1430","65","0","0" +"12542","476","1","0","935","-1438","68","0","0" +"12541","476","2","0","953","-1464","76","0","0" +"12540","476","3","0","941","-1510","92","0","0" +"12539","476","4","0","861","-1529","113","0","0" +"12538","476","5","0","734","-1496","134","0","0" +"12537","476","6","0","561","-1406","134","0","0" +"12536","476","7","0","112","-1502","206","0","0" +"12535","476","8","0","-144","-1635","268","0","0" +"12534","476","9","0","-167","-1776","213","0","0" +"12533","476","10","0","-40","-1871","213","0","0" +"12532","476","11","0","59","-1962","213","0","0" +"12531","476","12","0","143","-1951","210","0","0" +"12530","476","13","0","237","-2011","196","0","0" +"12843","476","14","0","284","-2003","196","0","0" +"12544","477","0","1","135","1323","194","0","0" +"12545","477","1","1","125","1329","196","0","0" +"12546","477","2","1","106","1344","202","0","0" +"12547","477","3","1","72","1376","202","0","0" +"12548","477","4","1","24","1464","184","0","0" +"12549","477","5","1","55","1639","124","0","0" +"12550","477","6","1","231","1814","100","0","0" +"12551","477","7","1","287","1827","97","0","0" +"12552","477","8","1","359","1803","73","0","0" +"12553","477","9","1","551","1715","43","0","0" +"12554","477","10","1","714","1697","43","0","0" +"12555","477","11","1","1015","1545","43","0","0" +"12556","477","12","1","1167","1528","66","0","0" +"12557","477","13","1","1249","1443","107","0","0" +"12558","477","14","1","1443","1428","150","0","0" +"12559","477","15","1","1511","1358","184","0","0" +"12560","477","16","1","1580","1295","227","0","0" +"12561","477","17","1","1718","1331","220","0","0" +"12562","477","18","1","1801","1435","205","0","0" +"12563","477","19","1","1867","1559","220","0","0" +"12564","477","20","1","1970","1566","272","0","0" +"12565","477","21","1","2032","1450","363","0","0" +"12566","477","22","1","2191","1376","368","0","0" +"12567","477","23","1","2348","1377","368","0","0" +"12568","477","24","1","2486","1363","353","0","0" +"12569","477","25","1","2615","1391","293","0","0" +"12570","477","26","1","2683","1460","236","0","0" +"12597","478","0","1","2683","1460","234","0","0" +"12596","478","1","1","2678","1454","235","0","0" +"12595","478","2","1","2658","1433","244","0","0" +"12594","478","3","1","2608","1398","279","0","0" +"12593","478","4","1","2557","1371","321","0","0" +"12592","478","5","1","2442","1359","362","0","0" +"12591","478","6","1","2119","1414","374","0","0" +"12590","478","7","1","1967","1449","264","0","0" +"12589","478","8","1","1712","1338","224","0","0" +"12588","478","9","1","1584","1292","225","0","0" +"12587","478","10","1","1439","1405","183","0","0" +"12586","478","11","1","1232","1475","121","0","0" +"12585","478","12","1","1165","1518","59","0","0" +"12584","478","13","1","1028","1540","34","0","0" +"12583","478","14","1","800","1604","45","0","0" +"12582","478","15","1","636","1757","45","0","0" +"12581","478","16","1","446","1773","47","0","0" +"12580","478","17","1","359","1803","81","0","0" +"12579","478","18","1","287","1827","108","0","0" +"12578","478","19","1","106","1797","111","0","0" +"12577","478","20","1","-77","1519","124","0","0" +"12576","478","21","1","-63","1276","171","0","0" +"12575","478","22","1","119","1219","199","0","0" +"12574","478","23","1","154","1286","202","0","0" +"12573","478","24","1","135","1323","195","0","0" +"12599","479","0","1","7457","-2486","462","0","0" +"12600","479","1","1","7459","-2477","464","0","0" +"12601","479","2","1","7461","-2467","467","0","0" +"12602","479","3","1","7466","-2433","476","0","0" +"12603","479","4","1","7465","-2368","497","0","0" +"12604","479","5","1","7420","-2312","530","0","0" +"12605","479","6","1","7356","-2324","550","0","0" +"12606","479","7","1","7342","-2459","581","0","0" +"12607","479","8","1","7266","-2478","627","0","0" +"12608","479","9","1","7213","-2458","662","0","0" +"12609","479","10","1","7154","-2322","715","0","0" +"12610","479","11","1","7064","-2303","688","0","0" +"12611","479","12","1","6862","-2330","641","0","0" +"12612","479","13","1","6722","-2300","655","0","0" +"12613","479","14","1","6624","-2138","678","0","0" +"12614","479","15","1","6504","-2099","659","0","0" +"12615","479","16","1","6431","-2078","643","0","0" +"12616","479","17","1","6348","-2037","617","0","0" +"12617","479","18","1","6279","-1987","595","0","0" +"12618","479","19","1","6205","-1949","573","0","0" +"12642","480","0","1","6205","-1949","572","0","0" +"12641","480","1","1","6217","-1957","577","0","0" +"12640","480","2","1","6285","-2006","600","0","0" +"12639","480","3","1","6336","-2066","637","0","0" +"12638","480","4","1","6432","-2182","660","0","0" +"12637","480","5","1","6464","-2298","669","0","0" +"12636","480","6","1","6537","-2442","655","0","0" +"12635","480","7","1","6800","-2488","656","0","0" +"12634","480","8","1","6912","-2372","662","0","0" +"12633","480","9","1","7064","-2303","705","0","0" +"12632","480","10","1","7154","-2322","692","0","0" +"12631","480","11","1","7213","-2458","653","0","0" +"12630","480","12","1","7320","-2478","612","0","0" +"12629","480","13","1","7376","-2363","543","0","0" +"12628","480","14","1","7426","-2315","532","0","0" +"12627","480","15","1","7466","-2359","501","0","0" +"12998","480","16","1","7456","-2488","464","0","0" +"12645","481","0","1","2308","-2521","104","0","0" +"12646","481","1","1","2303","-2527","107","0","0" +"12647","481","2","1","2276","-2547","108","0","0" +"12648","481","3","1","2233","-2554","108","0","0" +"12649","481","4","1","2190","-2575","110","0","0" +"12650","481","5","1","2166","-2611","113","0","0" +"12651","481","6","1","2181","-2650","120","0","0" +"12652","481","7","1","2253","-2677","126","0","0" +"12653","481","8","1","2385","-2706","144","0","0" +"12654","481","9","1","2451","-2732","155","0","0" +"12655","481","10","1","2500","-2780","160","0","0" +"12656","481","11","1","2536","-2833","168","0","0" +"12657","481","12","1","2555","-2927","168","0","0" +"12658","481","13","1","2609","-3016","168","0","0" +"12659","481","14","1","2697","-3129","168","0","0" +"12660","481","15","1","2733","-3262","153","0","0" +"12661","481","16","1","2791","-3425","128","0","0" +"12662","481","17","1","2882","-3550","114","0","0" +"12663","481","18","1","2883","-3665","109","0","0" +"12664","481","19","1","2850","-3809","109","0","0" +"12665","481","20","1","2925","-3927","120","0","0" +"12666","481","21","1","3096","-4019","120","0","0" +"12667","481","22","1","3301","-4071","136","0","0" +"12668","481","23","1","3322","-4186","136","0","0" +"12669","481","24","1","3392","-4342","136","0","0" +"12670","481","25","1","3474","-4428","140","0","0" +"12671","481","26","1","3557","-4446","140","0","0" +"12672","481","27","1","3609","-4415","129","0","0" +"12673","481","28","1","3659","-4389","116","0","0" +"12702","482","0","1","3659","-4389","116","0","0" +"12701","482","1","1","3670","-4351","117","0","0" +"12700","482","2","1","3640","-4266","121","0","0" +"12699","482","3","1","3521","-4151","141","0","0" +"12698","482","4","1","3378","-4130","150","0","0" +"12697","482","5","1","3134","-4034","119","0","0" +"12696","482","6","1","2920","-3922","119","0","0" +"12695","482","7","1","2850","-3809","98","0","0" +"12694","482","8","1","2883","-3665","111","0","0" +"12693","482","9","1","2882","-3550","120","0","0" +"12692","482","10","1","2791","-3425","133","0","0" +"12691","482","11","1","2733","-3262","160","0","0" +"12690","482","12","1","2697","-3129","173","0","0" +"12689","482","13","1","2609","-3016","172","0","0" +"12688","482","14","1","2555","-2927","172","0","0" +"12687","482","15","1","2536","-2833","171","0","0" +"12686","482","16","1","2500","-2780","167","0","0" +"12685","482","17","1","2451","-2732","161","0","0" +"12684","482","18","1","2385","-2706","152","0","0" +"12683","482","19","1","2253","-2677","132","0","0" +"12682","482","20","1","2181","-2650","126","0","0" +"12681","482","21","1","2166","-2611","127","0","0" +"12680","482","22","1","2190","-2575","122","0","0" +"12679","482","23","1","2233","-2554","115","0","0" +"12678","482","24","1","2276","-2547","114","0","0" +"12677","482","25","1","2308","-2521","104","0","0" +"12742","484","0","0","-919","-3493","72","0","0" +"12743","484","1","0","-919","-3489","74","0","0" +"12744","484","2","0","-911","-3433","83","0","0" +"12745","484","3","0","-895","-3377","89","0","0" +"12746","484","4","0","-866","-3331","108","0","0" +"12747","484","5","0","-805","-3276","164","0","0" +"12748","484","6","0","-701","-3324","234","0","0" +"12749","484","7","0","-667","-3421","288","0","0" +"12750","484","8","0","-545","-3394","375","0","0" +"12751","484","9","0","-483","-3396","363","0","0" +"12752","484","10","0","-355","-3418","253","0","0" +"12753","484","11","0","-84","-3666","253","0","0" +"12754","484","12","0","-76","-3958","224","0","0" +"12755","484","13","0","-146","-4218","187","0","0" +"12756","484","14","0","-223","-4337","178","0","0" +"12757","484","15","0","-292","-4402","157","0","0" +"12758","484","16","0","-414","-4461","109","0","0" +"12759","484","17","0","-574","-4508","71","0","0" +"12760","484","18","0","-670","-4559","47","0","0" +"12761","484","19","0","-701","-4642","34","0","0" +"12762","484","20","0","-637","-4718","9","0","0" +"12783","485","0","0","-637","-4718","9","0","0" +"12782","485","1","0","-588","-4735","20","0","0" +"12781","485","2","0","-479","-4690","47","0","0" +"12780","485","3","0","-347","-4525","87","0","0" +"12779","485","4","0","-234","-4376","137","0","0" +"12778","485","5","0","-171","-4263","187","0","0" +"12777","485","6","0","-111","-4008","214","0","0" +"12776","485","7","0","-101","-3669","262","0","0" +"12775","485","8","0","-355","-3418","298","0","0" +"12774","485","9","0","-523","-3394","379","0","0" +"12773","485","10","0","-684","-3324","288","0","0" +"12772","485","11","0","-896","-3263","179","0","0" +"12771","485","12","0","-1046","-3333","128","0","0" +"12770","485","13","0","-1064","-3453","92","0","0" +"12769","485","14","0","-999","-3507","90","0","0" +"12768","485","15","0","-919","-3493","73","0","0" +"12784","486","0","1","-4416","200","26","0","0" +"12785","486","1","1","-4428","195","28","0","0" +"12786","486","2","1","-4446","180","33","0","0" +"12787","486","3","1","-4455","147","37","0","0" +"12788","486","4","1","-4445","105","41","0","0" +"12789","486","5","1","-4409","55","57","0","0" +"12790","486","6","1","-4361","-1","76","0","0" +"12791","486","7","1","-4270","-120","76","0","0" +"12792","486","8","1","-4246","-226","70","0","0" +"12793","486","9","1","-4277","-321","64","0","0" +"12794","486","10","1","-4301","-432","42","0","0" +"12795","486","11","1","-4343","-559","16","0","0" +"12796","486","12","1","-4310","-734","-18","0","0" +"12797","486","13","1","-4326","-835","-18","0","0" +"12798","486","14","1","-4469","-966","-17","0","0" +"12799","486","15","1","-4595","-1063","-8","0","0" +"12800","486","16","1","-4715","-1115","-8","0","0" +"12801","486","17","1","-4759","-1206","-8","0","0" +"12802","486","18","1","-4787","-1345","-8","0","0" +"12803","486","19","1","-4884","-1446","-8","0","0" +"12804","486","20","1","-4994","-1543","-8","0","0" +"12805","486","21","1","-5103","-1566","9","0","0" +"12806","486","22","1","-5212","-1728","20","0","0" +"12807","486","23","1","-5212","-1943","21","0","0" +"12808","486","24","1","-5261","-2137","42","0","0" +"12809","486","25","1","-5312","-2278","76","0","0" +"12810","486","26","1","-5362","-2368","98","0","0" +"12811","486","27","1","-5393","-2404","96","0","0" +"12812","486","28","1","-5409","-2416","92","0","0" +"12841","487","0","1","-5409","-2416","90","0","0" +"12840","487","1","1","-5418","-2414","93","0","0" +"12839","487","2","1","-5456","-2400","100","0","0" +"12838","487","3","1","-5514","-2340","84","0","0" +"12837","487","4","1","-5602","-2108","46","0","0" +"12836","487","5","1","-5481","-1764","34","0","0" +"12835","487","6","1","-5184","-1378","-19","0","0" +"12834","487","7","1","-5000","-1392","-19","0","0" +"12833","487","8","1","-4851","-1403","-8","0","0" +"12832","487","9","1","-4754","-1288","-8","0","0" +"12831","487","10","1","-4611","-1243","-22","0","0" +"12830","487","11","1","-4468","-1138","-16","0","0" +"12829","487","12","1","-4355","-996","-8","0","0" +"12828","487","13","1","-4376","-864","-24","0","0" +"12827","487","14","1","-4353","-765","-17","0","0" +"12826","487","15","1","-4275","-655","-5","0","0" +"12825","487","16","1","-4171","-581","13","0","0" +"12824","487","17","1","-4103","-482","35","0","0" +"12823","487","18","1","-4158","-354","71","0","0" +"12822","487","19","1","-4172","-223","94","0","0" +"12821","487","20","1","-4191","-119","87","0","0" +"12820","487","21","1","-4273","-34","73","0","0" +"12819","487","22","1","-4271","95","78","0","0" +"12818","487","23","1","-4319","157","67","0","0" +"12817","487","24","1","-4384","192","38","0","0" +"12816","487","25","1","-4416","200","27","0","0" +"12945","494","0","0","3005","-3053","121","0","0" +"12946","494","1","0","3021","-3060","124","0","0" +"12947","494","2","0","3045","-3070","134","0","0" +"12948","494","3","0","3078","-3082","152","0","0" +"12949","494","4","0","3133","-3087","182","0","0" +"12950","494","5","0","3172","-3114","197","0","0" +"12951","494","6","0","3199","-3153","197","0","0" +"12952","494","7","0","3223","-3215","197","0","0" +"12953","494","8","0","3294","-3324","195","0","0" +"12954","494","9","0","3302","-3454","204","0","0" +"12955","494","10","0","3194","-3610","204","0","0" +"12956","494","11","0","3143","-3689","204","0","0" +"12957","494","12","0","3051","-3871","182","0","0" +"12958","494","13","0","3039","-4005","168","0","0" +"12959","494","14","0","3072","-4132","143","0","0" +"12960","494","15","0","3094","-4230","119","0","0" +"12961","494","16","0","3099","-4273","108","0","0" +"12962","495","0","0","3007","-3054","121","0","0" +"12963","495","1","0","3017","-3066","124","0","0" +"12964","495","2","0","3040","-3094","136","0","0" +"12965","495","3","0","3069","-3137","148","0","0" +"12966","495","4","0","3088","-3188","155","0","0" +"12967","495","5","0","3114","-3275","161","0","0" +"12968","495","6","0","3129","-3348","161","0","0" +"12969","495","7","0","3132","-3388","164","0","0" +"12970","495","8","0","3101","-3430","174","0","0" +"12971","495","9","0","3051","-3504","185","0","0" +"12972","495","10","0","3017","-3604","194","0","0" +"12973","495","11","0","2901","-3802","187","0","0" +"12974","495","12","0","2763","-4006","174","0","0" +"12975","495","13","0","2663","-4176","154","0","0" +"12976","495","14","0","2534","-4361","137","0","0" +"12977","495","15","0","2516","-4531","125","0","0" +"12978","495","16","0","2520","-4689","99","0","0" +"12979","495","17","0","2505","-4735","97","0","0" +"12980","496","0","0","3005","-3053","122","0","0" +"12981","496","1","0","3013","-3073","127","0","0" +"12982","496","2","0","3015","-3103","136","0","0" +"12983","496","3","0","3007","-3150","150","0","0" +"12984","496","4","0","2996","-3186","169","0","0" +"12985","496","5","0","2963","-3241","183","0","0" +"12986","496","6","0","2932","-3362","189","0","0" +"12987","496","7","0","2759","-3467","226","0","0" +"12988","496","8","0","2609","-3559","262","0","0" +"12989","496","9","0","2560","-3591","273","0","0" +"12990","496","10","0","2491","-3642","261","0","0" +"12991","496","11","0","2445","-3653","248","0","0" +"12992","496","12","0","2333","-3666","236","0","0" +"12993","496","13","0","2217","-3654","241","0","0" +"12994","496","14","0","2145","-3649","223","0","0" +"12995","496","15","0","2005","-3660","167","0","0" +"12996","496","16","0","1946","-3650","151","0","0" +"12997","496","17","0","1918","-3638","145","0","0" +"13258","496","18","0","1893","-3636","143","0","0" +"13259","496","19","0","1856","-3644","144","0","0" +"13260","496","20","0","1849","-3651","142","0","0" +"13013","499","0","1","6811","-4610","711","0","0" +"13014","499","1","1","6816","-4628","718","0","0" +"13015","499","2","1","6824","-4687","724","0","0" +"13016","499","3","1","6810","-4733","728","0","0" +"13017","499","4","1","6751","-4786","734","0","0" +"13018","499","5","1","6689","-4810","737","0","0" +"13019","499","6","1","6588","-4828","746","0","0" +"13020","499","7","1","6365","-4908","777","0","0" +"13021","499","8","1","6034","-4919","805","0","0" +"13022","499","9","1","5796","-4969","862","0","0" +"13023","499","10","1","5584","-5003","910","0","0" +"13024","499","11","1","5455","-5013","928","0","0" +"13025","499","12","1","5146","-5070","949","0","0" +"13026","499","13","1","4967","-5133","924","0","0" +"13027","499","14","1","4778","-5141","770","0","0" +"13028","499","15","1","4533","-5133","596","0","0" +"13029","499","16","1","4169","-5100","326","0","0" +"13030","499","17","1","4001","-5018","251","0","0" +"13031","499","18","1","3800","-4833","220","0","0" +"13032","499","19","1","3665","-4700","180","0","0" +"13033","499","20","1","3658","-4498","144","0","0" +"13034","499","21","1","3661","-4390","115","0","0" +"13056","500","0","1","3661","-4390","114","0","0" +"13055","500","1","1","3660","-4402","117","0","0" +"13054","500","2","1","3658","-4498","146","0","0" +"13053","500","3","1","3711","-4656","192","0","0" +"13052","500","4","1","3809","-4826","236","0","0" +"13051","500","5","1","3999","-4966","292","0","0" +"13050","500","6","1","4233","-5067","372","0","0" +"13049","500","7","1","4533","-5133","570","0","0" +"13048","500","8","1","4778","-5141","742","0","0" +"13047","500","9","1","4967","-5133","883","0","0" +"13046","500","10","1","5143","-5081","957","0","0" +"13045","500","11","1","5392","-4982","929","0","0" +"13044","500","12","1","5700","-4910","883","0","0" +"13043","500","13","1","5934","-4855","804","0","0" +"13042","500","14","1","6126","-4879","794","0","0" +"13041","500","15","1","6466","-4699","780","0","0" +"13040","500","16","1","6579","-4604","759","0","0" +"13039","500","17","1","6735","-4592","738","0","0" +"13038","500","18","1","6811","-4610","712","0","0" diff --git a/HermesProxy/CSV/TaxiPathNode2.csv b/HermesProxy/CSV/TaxiPathNode2.csv new file mode 100644 index 00000000..03eb49d3 --- /dev/null +++ b/HermesProxy/CSV/TaxiPathNode2.csv @@ -0,0 +1,13463 @@ +"ID","PathID","NodeIndex","ContinentID","LocX","LocY","LocZ","Flags","Delay" +"35","6","0","0","-8851","498","111","0","0" +"36","6","1","0","-8853","496","111","0","0" +"37","6","2","0","-8869","486","116","0","0" +"38","6","3","0","-8937","447","122","0","0" +"39","6","4","0","-9025","501","122","0","0" +"40","6","5","0","-9109","473","148","0","0" +"41","6","6","0","-9247","381","152","0","0" +"42","6","7","0","-9328","433","130","0","0" +"43","6","8","0","-9380","432","78","0","0" +"44","6","9","0","-9451","386","56","0","0" +"45","6","10","0","-9524","368","53","0","0" +"46","6","11","0","-9601","407","52","0","0" +"47","6","12","0","-9686","469","40","0","0" +"48","6","13","0","-9734","552","39","0","0" +"2918","6","14","0","-9742","621","37","0","0" +"2919","6","15","0","-9790","641","44","0","0" +"2920","6","16","0","-9847","632","44","0","0" +"2921","6","17","0","-9941","634","44","0","0" +"2922","6","18","0","-10000","691","38","0","0" +"2923","6","19","0","-10034","787","31","0","0" +"2924","6","20","0","-10054","872","42","0","0" +"2925","6","21","0","-10139","931","46","0","0" +"2926","6","22","0","-10255","986","39","0","0" +"2927","6","23","0","-10310","1070","51","0","0" +"2928","6","24","0","-10364","1112","43","0","0" +"2929","6","25","0","-10489","1100","59","0","0" +"2930","6","26","0","-10588","1075","47","0","0" +"2931","6","27","0","-10629","1039","37","0","0" +"68","7","0","0","-10628","1040","35","0","0" +"69","7","1","0","-10627","1043","35","0","0" +"70","7","2","0","-10624","1055","37","0","0" +"71","7","3","0","-10609","1097","43","0","0" +"72","7","4","0","-10504","1142","52","0","0" +"73","7","5","0","-10424","1068","58","0","0" +"74","7","6","0","-10308","1046","58","0","0" +"75","7","7","0","-10210","931","58","0","0" +"76","7","8","0","-10184","811","43","0","0" +"77","7","9","0","-10197","634","30","0","0" +"78","7","10","0","-10174","554","29","0","0" +"79","7","11","0","-10100","513","32","0","0" +"80","7","12","0","-9946","506","37","0","0" +"81","7","13","0","-9881","524","37","0","0" +"82","7","14","0","-9814","523","37","0","0" +"83","7","15","0","-9756","540","43","0","0" +"84","7","16","0","-9709","517","45","0","0" +"85","7","17","0","-9690","464","40","0","0" +"86","7","18","0","-9599","406","44","0","0" +"87","7","19","0","-9534","366","60","0","0" +"88","7","20","0","-9466","373","60","0","0" +"89","7","21","0","-9380","433","76","0","0" +"90","7","22","0","-9279","422","159","0","0" +"91","7","23","0","-9127","269","162","0","0" +"92","7","24","0","-9039","381","145","0","0" +"2934","7","25","0","-8918","423","132","0","0" +"2935","7","26","0","-8833","479","112","0","0" +"119","8","0","0","-9433","-2238","70","0","0" +"120","8","1","0","-9436","-2240","71","0","0" +"121","8","2","0","-9445","-2244","74","0","0" +"122","8","3","0","-9471","-2250","81","0","0" +"123","8","4","0","-9507","-2244","97","0","0" +"124","8","5","0","-9543","-2197","101","0","0" +"125","8","6","0","-9606","-2086","77","0","0" +"126","8","7","0","-9555","-2000","80","0","0" +"127","8","8","0","-9632","-1875","84","0","0" +"128","8","9","0","-9625","-1769","109","0","0" +"129","8","10","0","-9693","-1586","131","0","0" +"130","8","11","0","-9805","-1424","111","0","0" +"131","8","12","0","-9674","-1306","118","0","0" +"132","8","13","0","-9575","-1177","128","0","0" +"133","8","14","0","-9488","-943","146","0","0" +"134","8","15","0","-9449","-726","154","0","0" +"135","8","16","0","-9487","-427","135","0","0" +"136","8","17","0","-9493","-158","146","0","0" +"137","8","18","0","-9241","3","173","0","0" +"138","8","19","0","-9133","270","161","0","0" +"2937","8","20","0","-9040","382","155","0","0" +"2938","8","21","0","-8917","414","134","0","0" +"2939","8","22","0","-8834","478","113","0","0" +"176","9","0","0","-8851","497","111","0","0" +"177","9","1","0","-8853","495","111","0","0" +"178","9","2","0","-8870","483","115","0","0" +"179","9","3","0","-8923","449","129","0","0" +"180","9","4","0","-9035","504","138","0","0" +"181","9","5","0","-9109","468","144","0","0" +"182","9","6","0","-9189","411","162","0","0" +"183","9","7","0","-9210","311","95","0","0" +"184","9","8","0","-9258","242","79","0","0" +"185","9","9","0","-9304","202","76","0","0" +"186","9","10","0","-9419","86","67","0","0" +"187","9","11","0","-9494","53","64","0","0" +"188","9","12","0","-9544","-53","64","0","0" +"189","9","13","0","-9550","-130","62","0","0" +"2888","9","14","0","-9578","-215","67","0","0" +"2889","9","15","0","-9619","-306","65","0","0" +"2890","9","16","0","-9614","-418","65","0","0" +"2891","9","17","0","-9588","-480","65","0","0" +"2892","9","18","0","-9617","-559","62","0","0" +"2893","9","19","0","-9631","-641","54","0","0" +"2894","9","20","0","-9656","-742","52","0","0" +"2895","9","21","0","-9645","-801","51","0","0" +"2896","9","22","0","-9585","-867","47","0","0" +"2897","9","23","0","-9590","-937","47","0","0" +"2898","9","24","0","-9622","-995","50","0","0" +"2899","9","25","0","-9636","-1074","52","0","0" +"2900","9","26","0","-9618","-1142","50","0","0" +"2901","9","27","0","-9644","-1218","47","0","0" +"2902","9","28","0","-9659","-1317","55","0","0" +"2903","9","29","0","-9670","-1393","60","0","0" +"2904","9","30","0","-9648","-1498","61","0","0" +"2905","9","31","0","-9627","-1536","60","0","0" +"2906","9","32","0","-9641","-1587","63","0","0" +"2907","9","33","0","-9617","-1675","63","0","0" +"2908","9","34","0","-9611","-1749","64","0","0" +"2909","9","35","0","-9619","-1820","60","0","0" +"2910","9","36","0","-9583","-1913","70","0","0" +"2911","9","37","0","-9529","-1970","86","0","0" +"2912","9","38","0","-9496","-2019","103","0","0" +"2913","9","39","0","-9493","-2051","109","0","0" +"2914","9","40","0","-9453","-2120","82","0","0" +"2915","9","41","0","-9418","-2207","73","0","0" +"2916","9","42","0","-9431","-2238","72","0","0" +"439","12","0","0","-4822","-1157","503","0","0" +"440","12","1","0","-4823","-1154","504","0","0" +"441","12","2","0","-4825","-1144","508","0","0" +"442","12","3","0","-4830","-1124","518","0","0" +"443","12","4","0","-4839","-1077","543","0","0" +"444","12","5","0","-4867","-1047","551","0","0" +"445","12","6","0","-4889","-1032","548","0","0" +"446","12","7","0","-4921","-1008","544","0","0" +"447","12","8","0","-4947","-972","540","0","0" +"448","12","9","0","-4957","-914","543","0","0" +"449","12","10","0","-4964","-901","543","0","0" +"450","12","11","0","-4987","-875","527","0","0" +"451","12","12","0","-5021","-833","507","0","0" +"452","12","13","0","-5066","-799","503","0","0" +"453","12","14","0","-5110","-793","504","0","0" +"454","12","15","0","-5156","-778","486","0","0" +"455","12","16","0","-5203","-713","480","0","0" +"456","12","17","0","-5366","-702","457","0","0" +"457","12","18","0","-5495","-662","442","0","0" +"1248","12","19","0","-5625","-671","439","0","0" +"1249","12","20","0","-5709","-584","433","0","0" +"1250","12","21","0","-5868","-569","453","0","0" +"1251","12","22","0","-6002","-664","468","0","0" +"1252","12","23","0","-6055","-676","491","0","0" +"1253","12","24","0","-6103","-702","500","0","0" +"1254","12","25","0","-6182","-759","471","0","0" +"1255","12","26","0","-6302","-807","425","0","0" +"1256","12","27","0","-6427","-833","376","0","0" +"1257","12","28","0","-6534","-879","342","0","0" +"1258","12","29","0","-6643","-845","294","0","0" +"1259","12","30","0","-6782","-862","284","0","0" +"1260","12","31","0","-6913","-911","281","0","0" +"1261","12","32","0","-6945","-993","272","0","0" +"1262","12","33","0","-7035","-1010","273","0","0" +"1263","12","34","0","-7107","-945","286","0","0" +"1264","12","35","0","-7178","-858","330","0","0" +"1265","12","36","0","-7220","-798","333","0","0" +"1266","12","37","0","-7376","-753","349","0","0" +"1267","12","38","0","-7513","-706","261","0","0" +"1268","12","39","0","-7625","-709","231","0","0" +"1269","12","40","0","-7817","-723","197","0","0" +"1270","12","41","0","-7879","-790","166","0","0" +"1271","12","42","0","-7972","-814","162","0","0" +"1272","12","43","0","-8125","-746","165","0","0" +"1273","12","44","0","-8154","-657","216","0","0" +"1274","12","45","0","-8154","-562","215","0","0" +"1275","12","46","0","-8242","-445","212","0","0" +"1276","12","47","0","-8289","-378","156","0","0" +"1277","12","48","0","-8372","-387","152","0","0" +"1278","12","49","0","-8434","-408","152","0","0" +"1279","12","50","0","-8518","-470","152","0","0" +"1280","12","51","0","-8576","-495","152","0","0" +"1281","12","52","0","-8649","-487","152","0","0" +"1314","12","53","0","-8724","-429","153","0","0" +"2702","12","54","0","-8782","-376","101","0","0" +"2703","12","55","0","-8887","-338","85","0","0" +"2704","12","56","0","-8978","-305","81","0","0" +"2705","12","57","0","-9023","-232","81","0","0" +"2706","12","58","0","-9081","-206","85","0","0" +"2707","12","59","0","-9107","-164","97","0","0" +"2708","12","60","0","-9135","-68","89","0","0" +"2709","12","61","0","-9150","1","86","0","0" +"2710","12","62","0","-9181","81","83","0","0" +"2711","12","63","0","-9131","164","115","0","0" +"2712","12","64","0","-9124","269","161","0","0" +"2713","12","65","0","-9039","381","156","0","0" +"2714","12","66","0","-8916","414","137","0","0" +"2715","12","67","0","-8833","481","112","0","0" +"503","13","0","0","-8847","496","111","0","0" +"504","13","1","0","-8849","495","111","0","0" +"505","13","2","0","-8867","483","114","0","0" +"506","13","3","0","-8935","454","127","0","0" +"507","13","4","0","-9034","493","143","0","0" +"508","13","5","0","-9109","470","157","0","0" +"509","13","6","0","-9213","427","162","0","0" +"510","13","7","0","-9273","275","151","0","0" +"511","13","8","0","-9287","34","153","0","0" +"512","13","9","0","-9231","-249","153","0","0" +"513","13","10","0","-9115","-320","144","0","0" +"514","13","11","0","-8984","-310","150","0","0" +"515","13","12","0","-8761","-406","154","0","0" +"516","13","13","0","-8644","-484","156","0","0" +"517","13","14","0","-8543","-488","156","0","0" +"518","13","15","0","-8434","-407","156","0","0" +"519","13","16","0","-8332","-383","156","0","0" +"520","13","17","0","-8272","-396","184","0","0" +"521","13","18","0","-8236","-435","216","0","0" +"522","13","19","0","-8182","-514","222","0","0" +"1315","13","20","0","-8139","-660","216","0","0" +"1316","13","21","0","-8033","-777","195","0","0" +"1317","13","22","0","-7895","-762","195","0","0" +"1318","13","23","0","-7733","-700","218","0","0" +"1319","13","24","0","-7513","-700","254","0","0" +"1320","13","25","0","-7381","-733","328","0","0" +"1321","13","26","0","-7301","-784","339","0","0" +"1322","13","27","0","-7159","-873","339","0","0" +"1323","13","28","0","-6971","-966","306","0","0" +"1324","13","29","0","-6733","-933","306","0","0" +"1325","13","30","0","-6532","-873","336","0","0" +"1326","13","31","0","-6359","-823","407","0","0" +"1327","13","32","0","-6225","-788","461","0","0" +"1328","13","33","0","-6100","-712","497","0","0" +"1329","13","34","0","-5952","-624","485","0","0" +"1330","13","35","0","-5733","-566","485","0","0" +"1331","13","36","0","-5532","-566","485","0","0" +"1332","13","37","0","-5332","-632","497","0","0" +"1333","13","38","0","-5225","-746","507","0","0" +"1334","13","39","0","-5068","-798","504","0","0" +"1335","13","40","0","-5023","-831","507","0","0" +"1336","13","41","0","-4987","-876","535","0","0" +"1337","13","42","0","-4965","-901","543","0","0" +"1338","13","43","0","-4942","-917","543","0","0" +"1339","13","44","0","-4889","-931","539","0","0" +"1340","13","45","0","-4870","-964","544","0","0" +"1341","13","46","0","-4855","-999","548","0","0" +"1342","13","47","0","-4839","-1034","550","0","0" +"1343","13","48","0","-4817","-1083","544","0","0" +"1344","13","49","0","-4751","-1095","529","0","0" +"1345","13","50","0","-4756","-1141","518","0","0" +"1346","13","51","0","-4795","-1150","512","0","0" +"2608","13","52","0","-4821","-1155","503","0","0" +"741","15","0","0","-5426","-2932","349","0","0" +"742","15","1","0","-5429","-2933","350","0","0" +"743","15","2","0","-5469","-2926","361","0","0" +"744","15","3","0","-5512","-2850","374","0","0" +"745","15","4","0","-5460","-2741","412","0","0" +"746","15","5","0","-5500","-2647","469","0","0" +"747","15","6","0","-5505","-2569","486","0","0" +"748","15","7","0","-5514","-2437","432","0","0" +"749","15","8","0","-5543","-2295","501","0","0" +"750","15","9","0","-5506","-2210","492","0","0" +"751","15","10","0","-5532","-2134","433","0","0" +"752","15","11","0","-5587","-2064","404","0","0" +"753","15","12","0","-5601","-1978","404","0","0" +"754","15","13","0","-5610","-1856","413","0","0" +"755","15","14","0","-5641","-1791","407","0","0" +"756","15","15","0","-5656","-1747","417","0","0" +"757","15","16","0","-5657","-1648","439","0","0" +"758","15","17","0","-5686","-1582","403","0","0" +"759","15","18","0","-5667","-1473","417","0","0" +"760","15","19","0","-5650","-1341","423","0","0" +"761","15","20","0","-5549","-1189","467","0","0" +"762","15","21","0","-5434","-1016","519","0","0" +"763","15","22","0","-5305","-835","576","0","0" +"764","15","23","0","-5173","-787","552","0","0" +"765","15","24","0","-5077","-791","523","0","0" +"766","15","25","0","-5020","-836","504","0","0" +"767","15","26","0","-4987","-875","527","0","0" +"768","15","27","0","-4964","-901","543","0","0" +"769","15","28","0","-4947","-916","543","0","0" +"770","15","29","0","-4886","-937","539","0","0" +"771","15","30","0","-4870","-964","544","0","0" +"772","15","31","0","-4858","-994","548","0","0" +"773","15","32","0","-4845","-1024","550","0","0" +"774","15","33","0","-4822","-1054","546","0","0" +"775","15","34","0","-4783","-1065","534","0","0" +"776","15","35","0","-4746","-1095","525","0","0" +"777","15","36","0","-4754","-1138","523","0","0" +"778","15","37","0","-4798","-1150","512","0","0" +"779","15","38","0","-4822","-1156","503","0","0" +"650","16","0","0","-4822","-1157","503","0","0" +"651","16","1","0","-4823","-1155","503","0","0" +"652","16","2","0","-4825","-1144","508","0","0" +"653","16","3","0","-4830","-1124","517","0","0" +"654","16","4","0","-4839","-1077","543","0","0" +"655","16","5","0","-4867","-1047","550","0","0" +"656","16","6","0","-4889","-1032","548","0","0" +"657","16","7","0","-4921","-1008","544","0","0" +"658","16","8","0","-4947","-972","540","0","0" +"659","16","9","0","-4951","-919","543","0","0" +"660","16","10","0","-4973","-894","543","0","0" +"661","16","11","0","-4990","-871","529","0","0" +"662","16","12","0","-5020","-834","505","0","0" +"663","16","13","0","-5064","-798","507","0","0" +"664","16","14","0","-5123","-795","511","0","0" +"665","16","15","0","-5200","-812","530","0","0" +"666","16","16","0","-5220","-1011","514","0","0" +"667","16","17","0","-5481","-1210","506","0","0" +"668","16","18","0","-5561","-1500","436","0","0" +"669","16","19","0","-5527","-1692","407","0","0" +"670","16","20","0","-5506","-1765","405","0","0" +"671","16","21","0","-5521","-1917","409","0","0" +"672","16","22","0","-5569","-1999","416","0","0" +"673","16","23","0","-5557","-2089","416","0","0" +"2720","16","24","0","-5511","-2158","465","0","0" +"2721","16","25","0","-5509","-2208","494","0","0" +"2722","16","26","0","-5510","-2288","507","0","0" +"2723","16","27","0","-5503","-2418","434","0","0" +"2724","16","28","0","-5452","-2503","483","0","0" +"2725","16","29","0","-5404","-2580","498","0","0" +"2726","16","30","0","-5413","-2639","467","0","0" +"2727","16","31","0","-5406","-2728","407","0","0" +"2728","16","32","0","-5420","-2800","381","0","0" +"2729","16","33","0","-5410","-2867","359","0","0" +"2730","16","34","0","-5421","-2928","350","0","0" +"838","17","0","0","-3791","-782","10","0","0" +"839","17","1","0","-3790","-786","12","0","0" +"840","17","2","0","-3788","-798","15","0","0" +"841","17","3","0","-3787","-830","24","0","0" +"842","17","4","0","-3793","-874","33","0","0" +"843","17","5","0","-3854","-909","33","0","0" +"844","17","6","0","-3956","-908","41","0","0" +"845","17","7","0","-4050","-921","117","0","0" +"846","17","8","0","-4116","-942","175","0","0" +"847","17","9","0","-4259","-973","305","0","0" +"848","17","10","0","-4411","-961","499","0","0" +"849","17","11","0","-4566","-900","663","0","0" +"850","17","12","0","-4660","-934","778","0","0" +"851","17","13","0","-4732","-915","832","0","0" +"852","17","14","0","-4827","-838","812","0","0" +"853","17","15","0","-4893","-765","752","0","0" +"854","17","16","0","-5002","-631","614","0","0" +"855","17","17","0","-5060","-706","548","0","0" +"856","17","18","0","-5046","-786","511","0","0" +"857","17","19","0","-5019","-834","506","0","0" +"858","17","20","0","-4986","-874","527","0","0" +"859","17","21","0","-4965","-901","543","0","0" +"860","17","22","0","-4946","-917","543","0","0" +"861","17","23","0","-4893","-926","538","0","0" +"862","17","24","0","-4870","-967","544","0","0" +"863","17","25","0","-4856","-998","548","0","0" +"864","17","26","0","-4845","-1024","550","0","0" +"2570","17","27","0","-4823","-1054","540","0","0" +"2571","17","28","0","-4779","-1066","529","0","0" +"2572","17","29","0","-4740","-1105","525","0","0" +"2573","17","30","0","-4749","-1137","518","0","0" +"2574","17","31","0","-4785","-1164","510","0","0" +"2575","17","32","0","-4822","-1156","503","0","0" +"895","18","0","0","-4822","-1157","502","0","0" +"896","18","1","0","-4823","-1155","503","0","0" +"897","18","2","0","-4825","-1144","508","0","0" +"898","18","3","0","-4833","-1111","524","0","0" +"899","18","4","0","-4839","-1077","543","0","0" +"900","18","5","0","-4867","-1048","550","0","0" +"901","18","6","0","-4889","-1032","548","0","0" +"902","18","7","0","-4921","-1008","544","0","0" +"903","18","8","0","-4947","-972","540","0","0" +"904","18","9","0","-4957","-914","543","0","0" +"905","18","10","0","-4965","-902","543","0","0" +"906","18","11","0","-4986","-875","527","0","0" +"907","18","12","0","-5021","-832","507","0","0" +"908","18","13","0","-5059","-804","507","0","0" +"909","18","14","0","-5123","-793","507","0","0" +"910","18","15","0","-5193","-822","495","0","0" +"911","18","16","0","-5233","-1022","528","0","0" +"912","18","17","0","-5253","-1268","572","0","0" +"913","18","18","0","-5233","-1600","541","0","0" +"914","18","19","0","-5110","-1708","532","0","0" +"2662","18","20","0","-4948","-1704","539","0","0" +"2663","18","21","0","-4818","-1683","540","0","0" +"2664","18","22","0","-4642","-1643","539","0","0" +"2665","18","23","0","-4466","-1599","513","0","0" +"2666","18","24","0","-4333","-1466","447","0","0" +"2667","18","25","0","-4166","-1299","339","0","0" +"2668","18","26","0","-3966","-1099","180","0","0" +"2669","18","27","0","-3826","-949","68","0","0" +"2670","18","28","0","-3781","-840","23","0","0" +"2671","18","29","0","-3788","-794","15","0","0" +"2672","18","30","0","-3792","-783","10","0","0" +"1046","20","0","0","1570","269","-41","0","0" +"1047","20","1","0","1562","249","-38","0","0" +"1048","20","2","0","1578","219","-31","0","0" +"1049","20","3","0","1607","219","-28","0","0" +"1050","20","4","0","1631","239","-29","0","0" +"1051","20","5","0","1663","239","-33","0","0" +"1052","20","6","0","1733","243","-40","0","0" +"1053","20","7","0","1751","264","-42","0","0" +"1054","20","8","0","1744","293","-44","0","0" +"1055","20","9","0","1719","327","-42","0","0" +"1056","20","10","0","1685","365","-26","0","0" +"1057","20","11","0","1683","386","1","0","0" +"1058","20","12","0","1702","420","5","0","0" +"1059","20","13","0","1726","474","1","0","0" +"1060","20","14","0","1710","513","-2","0","0" +"1061","20","15","0","1683","546","-2","0","0" +"1062","20","16","0","1681","590","1","0","0" +"1063","20","17","0","1687","623","17","0","0" +"1064","20","18","0","1658","645","33","0","0" +"1065","20","19","0","1616","645","49","0","0" +"2251","20","20","0","1591","674","57","0","0" +"2252","20","21","0","1600","718","77","0","0" +"2253","20","22","0","1640","730","89","0","0" +"3036","20","23","0","1691","726","83","0","0" +"3037","20","24","0","1756","723","66","0","0" +"3038","20","25","0","1792","645","54","0","0" +"3039","20","26","0","1761","583","55","0","0" +"3040","20","27","0","1664","548","41","0","0" +"3041","20","28","0","1567","578","49","0","0" +"3042","20","29","0","1491","630","54","0","0" +"3043","20","30","0","1437","706","52","0","0" +"3044","20","31","0","1383","812","57","0","0" +"3045","20","32","0","1351","900","61","0","0" +"3046","20","33","0","1337","994","62","0","0" +"3047","20","34","0","1296","1077","61","0","0" +"3048","20","35","0","1288","1174","60","0","0" +"3049","20","36","0","1259","1279","76","0","0" +"3050","20","37","0","1284","1368","66","0","0" +"3051","20","38","0","1211","1414","56","0","0" +"3052","20","39","0","1128","1499","42","0","0" +"3053","20","40","0","1072","1532","36","0","0" +"3054","20","41","0","1006","1531","40","0","0" +"3055","20","42","0","942","1503","48","0","0" +"3056","20","43","0","872","1514","48","0","0" +"3057","20","44","0","794","1556","62","0","0" +"3058","20","45","0","676","1576","100","0","0" +"3059","20","46","0","619","1592","137","0","0" +"3060","20","47","0","552","1587","142","0","0" +"3061","20","48","0","504","1555","141","0","0" +"9531","20","49","0","477","1536","135","0","0" +"1066","21","0","0","471","1533","133","0","0" +"1067","21","1","0","460","1527","134","0","0" +"1068","21","2","0","406","1497","143","0","0" +"1069","21","3","0","364","1462","132","0","0" +"1070","21","4","0","302","1432","134","0","0" +"1071","21","5","0","259","1382","145","0","0" +"1072","21","6","0","268","1310","121","0","0" +"1073","21","7","0","398","1234","95","0","0" +"1074","21","8","0","553","1233","94","0","0" +"1075","21","9","0","639","1210","100","0","0" +"1076","21","10","0","737","1219","69","0","0" +"1077","21","11","0","883","1200","65","0","0" +"1078","21","12","0","991","1194","72","0","0" +"1079","21","13","0","1071","1163","56","0","0" +"1080","21","14","0","1130","1132","56","0","0" +"2756","21","15","0","1200","1144","54","0","0" +"2757","21","16","0","1278","1080","61","0","0" +"2758","21","17","0","1328","1001","62","0","0" +"2759","21","18","0","1354","901","61","0","0" +"2760","21","19","0","1399","767","55","0","0" +"2761","21","20","0","1502","620","78","0","0" +"2762","21","21","0","1633","624","104","0","0" +"2763","21","22","0","1731","642","94","0","0" +"2764","21","23","0","1798","672","91","0","0" +"2765","21","24","0","1787","729","93","0","0" +"2766","21","25","0","1691","726","90","0","0" +"2767","21","26","0","1640","730","89","0","0" +"2768","21","27","0","1600","718","77","0","0" +"2769","21","28","0","1591","674","57","0","0" +"2770","21","29","0","1616","645","49","0","0" +"2771","21","30","0","1658","645","33","0","0" +"2772","21","31","0","1687","623","17","0","0" +"2773","21","32","0","1681","590","1","0","0" +"2774","21","33","0","1683","546","-2","0","0" +"2775","21","34","0","1710","513","-2","0","0" +"3062","21","35","0","1726","474","1","0","0" +"3063","21","36","0","1702","420","5","0","0" +"3064","21","37","0","1683","386","1","0","0" +"3065","21","38","0","1687","352","-38","0","0" +"3066","21","39","0","1715","331","-42","0","0" +"3067","21","40","0","1741","292","-42","0","0" +"3068","21","41","0","1751","264","-42","0","0" +"3069","21","42","0","1733","243","-38","0","0" +"3070","21","43","0","1663","239","-30","0","0" +"3071","21","44","0","1638","237","-26","0","0" +"3072","21","45","0","1606","217","-26","0","0" +"3073","21","46","0","1573","225","-34","0","0" +"3074","21","47","0","1568","268","-42","0","0" +"1086","22","0","0","-10515","-1259","42","0","0" +"1087","22","1","0","-10516","-1253","43","0","0" +"1088","22","2","0","-10519","-1240","46","0","0" +"1089","22","3","0","-10516","-1184","69","0","0" +"1090","22","4","0","-10450","-1142","95","0","0" +"1091","22","5","0","-10255","-1084","100","0","0" +"1092","22","6","0","-10046","-948","115","0","0" +"1093","22","7","0","-9922","-785","107","0","0" +"1094","22","8","0","-9855","-631","103","0","0" +"1095","22","9","0","-9602","-509","141","0","0" +"1096","22","10","0","-9452","-360","149","0","0" +"1097","22","11","0","-9458","-166","124","0","0" +"1098","22","12","0","-9342","98","147","0","0" +"1099","22","13","0","-9153","200","160","0","0" +"1100","22","14","0","-9035","378","156","0","0" +"1101","22","15","0","-8917","416","136","0","0" +"9181","22","16","0","-8836","477","114","0","0" +"1103","23","0","0","-8851","497","111","0","0" +"1104","23","1","0","-8853","495","111","0","0" +"1105","23","2","0","-8868","483","113","0","0" +"1106","23","3","0","-8935","445","131","0","0" +"1107","23","4","0","-9022","498","139","0","0" +"1108","23","5","0","-9109","472","151","0","0" +"1109","23","6","0","-9305","378","159","0","0" +"1110","23","7","0","-9594","278","132","0","0" +"1111","23","8","0","-9860","281","113","0","0" +"1112","23","9","0","-10052","292","100","0","0" +"1113","23","10","0","-10172","221","98","0","0" +"1114","23","11","0","-10354","202","86","0","0" +"1115","23","12","0","-10441","206","85","0","0" +"1116","23","13","0","-10612","98","103","0","0" +"1117","23","14","0","-10805","-181","106","0","0" +"1118","23","15","0","-10886","-507","120","0","0" +"1119","23","16","0","-10624","-740","148","0","0" +"1120","23","17","0","-10569","-1030","132","0","0" +"1121","23","18","0","-10523","-1186","68","0","0" +"1122","23","19","0","-10515","-1261","45","0","0" +"1124","24","0","0","0","-860","60","0","0" +"1125","24","1","0","-1","-857","60","0","0" +"1126","24","2","0","-1","-841","64","0","0" +"1127","24","3","0","4","-830","66","0","0" +"1128","24","4","0","53","-788","73","0","0" +"1129","24","5","0","122","-754","74","0","0" +"1130","24","6","0","186","-725","100","0","0" +"1131","24","7","0","280","-651","135","0","0" +"1132","24","8","0","351","-608","158","0","0" +"1133","24","9","0","419","-621","173","0","0" +"1134","24","10","0","497","-602","181","0","0" +"1135","24","11","0","554","-584","191","0","0" +"1136","24","12","0","615","-531","188","0","0" +"1137","24","13","0","627","-457","175","0","0" +"1138","24","14","0","626","-375","162","0","0" +"1139","24","15","0","665","-343","156","0","0" +"1140","24","16","0","721","-340","146","0","0" +"1141","24","17","0","756","-318","143","0","0" +"1142","24","18","0","782","-298","159","0","0" +"1143","24","19","0","851","-254","167","0","0" +"1144","24","20","0","932","-254","149","0","0" +"1145","24","21","0","1037","-269","60","0","0" +"1146","24","22","0","1089","-243","41","0","0" +"1147","24","23","0","1208","-250","42","0","0" +"1148","24","24","0","1307","-109","74","0","0" +"1149","24","25","0","1305","264","65","0","0" +"1150","24","26","0","1463","469","76","0","0" +"1151","24","27","0","1674","490","66","0","0" +"1152","24","28","0","1840","506","61","0","0" +"2779","24","29","0","1927","605","86","0","0" +"2780","24","30","0","1891","707","91","0","0" +"2781","24","31","0","1780","757","69","0","0" +"2782","24","32","0","1724","734","69","0","0" +"2783","24","33","0","1691","726","87","0","0" +"2784","24","34","0","1640","730","89","0","0" +"2785","24","35","0","1600","718","77","0","0" +"2786","24","36","0","1591","674","57","0","0" +"2787","24","37","0","1616","645","49","0","0" +"2788","24","38","0","1658","645","33","0","0" +"2789","24","39","0","1687","623","17","0","0" +"2790","24","40","0","1681","590","1","0","0" +"2791","24","41","0","1683","546","-2","0","0" +"2792","24","42","0","1710","513","-2","0","0" +"2793","24","43","0","1726","474","1","0","0" +"2794","24","44","0","1702","420","5","0","0" +"2795","24","45","0","1683","386","1","0","0" +"2796","24","46","0","1687","352","-38","0","0" +"2797","24","47","0","1715","331","-42","0","0" +"2798","24","48","0","1741","292","-42","0","0" +"2799","24","49","0","1751","264","-42","0","0" +"2800","24","50","0","1733","243","-38","0","0" +"2801","24","51","0","1663","239","-30","0","0" +"3100","24","52","0","1638","237","-26","0","0" +"3101","24","53","0","1606","217","-26","0","0" +"9492","24","54","0","1573","225","-34","0","0" +"9493","24","55","0","1568","268","-42","0","0" +"2269","25","0","0","1568","268","-41","0","0" +"2270","25","1","0","1563","250","-38","0","0" +"2271","25","2","0","1576","220","-31","0","0" +"2272","25","3","0","1606","217","-26","0","0" +"2273","25","4","0","1630","239","-28","0","0" +"2274","25","5","0","1663","239","-35","0","0" +"2275","25","6","0","1738","242","-38","0","0" +"2276","25","7","0","1748","278","-44","0","0" +"2277","25","8","0","1726","319","-47","0","0" +"2278","25","9","0","1687","352","-38","0","0" +"2279","25","10","0","1683","386","1","0","0" +"2280","25","11","0","1702","420","5","0","0" +"2281","25","12","0","1726","474","1","0","0" +"2282","25","13","0","1710","513","-2","0","0" +"2283","25","14","0","1683","546","-2","0","0" +"2284","25","15","0","1681","590","1","0","0" +"2285","25","16","0","1687","623","17","0","0" +"2286","25","17","0","1658","645","33","0","0" +"2287","25","18","0","1616","645","49","0","0" +"2288","25","19","0","1591","674","57","0","0" +"2289","25","20","0","1600","718","77","0","0" +"2290","25","21","0","1640","730","89","0","0" +"2291","25","22","0","1691","726","90","0","0" +"3079","25","23","0","1794","727","92","0","0" +"3080","25","24","0","1834","642","73","0","0" +"3081","25","25","0","1819","575","74","0","0" +"3082","25","26","0","1700","542","65","0","0" +"3083","25","27","0","1596","564","70","0","0" +"3084","25","28","0","1493","589","84","0","0" +"3085","25","29","0","1317","615","57","0","0" +"3086","25","30","0","1120","553","69","0","0" +"3087","25","31","0","702","313","64","0","0" +"3088","25","32","0","527","219","72","0","0" +"3089","25","33","0","345","101","81","0","0" +"3090","25","34","0","204","31","90","0","0" +"3091","25","35","0","93","-46","128","0","0" +"3092","25","36","0","-18","-79","158","0","0" +"3093","25","37","0","-73","-210","163","0","0" +"3094","25","38","0","-83","-340","170","0","0" +"3095","25","39","0","-72","-513","187","0","0" +"3096","25","40","0","-46","-628","178","0","0" +"3097","25","41","0","-148","-767","115","0","0" +"3098","25","42","0","-82","-879","82","0","0" +"3099","25","43","0","0","-861","62","0","0" +"1181","26","0","0","-713","-513","27","0","0" +"1182","26","1","0","-713","-517","27","0","0" +"1183","26","2","0","-725","-597","38","0","0" +"1184","26","3","0","-747","-650","51","0","0" +"1185","26","4","0","-885","-652","39","0","0" +"1186","26","5","0","-1066","-674","27","0","0" +"1187","26","6","0","-1231","-801","27","0","0" +"1188","26","7","0","-1322","-885","23","0","0" +"1189","26","8","0","-1423","-959","24","0","0" +"1190","26","9","0","-1535","-1002","13","0","0" +"1191","26","10","0","-1640","-1061","10","0","0" +"1192","26","11","0","-1803","-1141","6","0","0" +"1193","26","12","0","-2619","-1157","3","0","0" +"1194","26","13","0","-2852","-1019","18","0","0" +"1195","26","14","0","-2955","-921","24","0","0" +"1196","26","15","0","-3118","-918","32","0","0" +"1197","26","16","0","-3341","-986","24","0","0" +"1198","26","17","0","-3801","-1080","38","0","0" +"1199","26","18","0","-3986","-1074","142","0","0" +"1200","26","19","0","-4088","-1054","228","0","0" +"1201","26","20","0","-4227","-1118","332","0","0" +"1202","26","21","0","-4445","-1059","637","0","0" +"1203","26","22","0","-4534","-1011","700","0","0" +"1204","26","23","0","-4638","-1018","801","0","0" +"1205","26","24","0","-4819","-1021","902","0","0" +"1206","26","25","0","-4912","-987","824","0","0" +"1207","26","26","0","-5023","-966","724","0","0" +"1208","26","27","0","-5077","-879","646","0","0" +"1209","26","28","0","-5113","-853","604","0","0" +"1210","26","29","0","-5188","-789","545","0","0" +"1211","26","30","0","-5103","-724","509","0","0" +"1212","26","31","0","-5056","-761","508","0","0" +"1213","26","32","0","-5035","-809","504","0","0" +"2553","26","33","0","-5019","-834","511","0","0" +"2554","26","34","0","-4987","-875","527","0","0" +"2555","26","35","0","-4964","-902","543","0","0" +"2556","26","36","0","-4949","-917","544","0","0" +"2557","26","37","0","-4887","-936","542","0","0" +"2558","26","38","0","-4870","-965","545","0","0" +"2559","26","39","0","-4857","-996","547","0","0" +"2560","26","40","0","-4845","-1024","549","0","0" +"2561","26","41","0","-4819","-1059","546","0","0" +"2562","26","42","0","-4782","-1065","529","0","0" +"2563","26","43","0","-4748","-1090","524","0","0" +"2564","26","44","0","-4756","-1134","520","0","0" +"12728","26","45","0","-4798","-1150","514","0","0" +"19742","26","46","0","-4822","-1158","503","0","0" +"1223","27","0","0","-4823","-1157","503","0","0" +"1224","27","1","0","-4823","-1154","504","0","0" +"1225","27","2","0","-4822","-1139","509","0","0" +"1226","27","3","0","-4822","-1113","522","0","0" +"1227","27","4","0","-4839","-1077","543","0","0" +"1228","27","5","0","-4867","-1047","550","0","0" +"1229","27","6","0","-4889","-1032","548","0","0" +"1230","27","7","0","-4921","-1008","544","0","0" +"1231","27","8","0","-4947","-972","540","0","0" +"1232","27","9","0","-4958","-914","543","0","0" +"1233","27","10","0","-4965","-901","543","0","0" +"1234","27","11","0","-4986","-874","527","0","0" +"1235","27","12","0","-5022","-831","507","0","0" +"1236","27","13","0","-5074","-800","507","0","0" +"1237","27","14","0","-5166","-817","500","0","0" +"1238","27","15","0","-5233","-933","507","0","0" +"1239","27","16","0","-5233","-1258","564","0","0" +"1240","27","17","0","-5240","-1599","545","0","0" +"1241","27","18","0","-5066","-1705","537","0","0" +"1242","27","19","0","-4900","-1701","541","0","0" +"1243","27","20","0","-4719","-1666","542","0","0" +"1244","27","21","0","-4500","-1606","533","0","0" +"1245","27","22","0","-4333","-1532","479","0","0" +"1246","27","23","0","-4066","-1366","303","0","0" +"2644","27","24","0","-3767","-1233","125","0","0" +"2645","27","25","0","-3400","-1180","80","0","0" +"2646","27","26","0","-2901","-1233","47","0","0" +"2647","27","27","0","-2301","-1365","42","0","0" +"2648","27","28","0","-1593","-1168","102","0","0" +"2649","27","29","0","-1400","-1050","32","0","0" +"2650","27","30","0","-1133","-797","17","0","0" +"2651","27","31","0","-966","-596","18","0","0" +"2652","27","32","0","-888","-535","15","0","0" +"2653","27","33","0","-766","-532","34","0","0" +"2654","27","34","0","-714","-517","29","0","0" +"1428","30","0","0","-1242","-2513","22","0","0" +"1429","30","1","0","-1242","-2516","23","0","0" +"1430","30","2","0","-1241","-2530","28","0","0" +"1431","30","3","0","-1240","-2541","33","0","0" +"1432","30","4","0","-1229","-2571","38","0","0" +"1433","30","5","0","-1188","-2635","57","0","0" +"1434","30","6","0","-1196","-2706","70","0","0" +"1435","30","7","0","-1285","-2726","82","0","0" +"1436","30","8","0","-1359","-2660","96","0","0" +"1437","30","9","0","-1454","-2549","102","0","0" +"1438","30","10","0","-1584","-2473","92","0","0" +"1439","30","11","0","-1682","-2454","83","0","0" +"1440","30","12","0","-1881","-2425","84","0","0" +"1441","30","13","0","-2003","-2470","87","0","0" +"1442","30","14","0","-2091","-2440","90","0","0" +"1443","30","15","0","-2185","-2428","96","0","0" +"1444","30","16","0","-2279","-2433","113","0","0" +"1445","30","17","0","-2362","-2463","103","0","0" +"1446","30","18","0","-2526","-2410","142","0","0" +"1447","30","19","0","-2726","-2471","130","0","0" +"1448","30","20","0","-2792","-2491","94","0","0" +"1449","30","21","0","-2902","-2449","61","0","0" +"1450","30","22","0","-3089","-2509","33","0","0" +"1451","30","23","0","-3209","-2681","31","0","0" +"1452","30","24","0","-3366","-2804","30","0","0" +"1453","30","25","0","-3553","-2800","37","0","0" +"1454","30","26","0","-3764","-3068","44","0","0" +"1455","30","27","0","-4096","-3121","21","0","0" +"1456","30","28","0","-4260","-3157","131","0","0" +"1457","30","29","0","-4446","-3245","189","0","0" +"1458","30","30","0","-4573","-3295","212","0","0" +"1459","30","31","0","-4712","-3222","324","0","0" +"1460","30","32","0","-4841","-3119","362","0","0" +"1461","30","33","0","-4893","-2938","398","0","0" +"1462","30","34","0","-4866","-2400","504","0","0" +"1463","30","35","0","-5047","-2280","432","0","0" +"1464","30","36","0","-5252","-2248","504","0","0" +"1465","30","37","0","-5490","-2046","439","0","0" +"1466","30","38","0","-5511","-1892","429","0","0" +"1467","30","39","0","-5508","-1765","429","0","0" +"1468","30","40","0","-5568","-1505","431","0","0" +"1469","30","41","0","-5488","-1329","468","0","0" +"1470","30","42","0","-5381","-1202","538","0","0" +"1471","30","43","0","-5234","-1125","531","0","0" +"1472","30","44","0","-5195","-951","528","0","0" +"1473","30","45","0","-5173","-802","525","0","0" +"1474","30","46","0","-5105","-793","518","0","0" +"2528","30","47","0","-5058","-801","507","0","0" +"2529","30","48","0","-5020","-835","505","0","0" +"2530","30","49","0","-4987","-874","527","0","0" +"2531","30","50","0","-4965","-901","543","0","0" +"2532","30","51","0","-4953","-912","543","0","0" +"2533","30","52","0","-4887","-937","541","0","0" +"2534","30","53","0","-4870","-965","545","0","0" +"2535","30","54","0","-4858","-993","547","0","0" +"2536","30","55","0","-4845","-1024","549","0","0" +"2537","30","56","0","-4819","-1058","547","0","0" +"2538","30","57","0","-4792","-1062","539","0","0" +"2539","30","58","0","-4754","-1086","530","0","0" +"2540","30","59","0","-4758","-1150","517","0","0" +"2541","30","60","0","-4783","-1163","514","0","0" +"12850","30","61","0","-4822","-1158","503","0","0" +"1480","31","0","0","-4822","-1157","503","0","0" +"1481","31","1","0","-4823","-1154","504","0","0" +"1482","31","2","0","-4827","-1140","510","0","0" +"1483","31","3","0","-4832","-1120","520","0","0" +"1484","31","4","0","-4839","-1077","543","0","0" +"1485","31","5","0","-4867","-1047","551","0","0" +"1486","31","6","0","-4889","-1032","548","0","0" +"1487","31","7","0","-4921","-1008","544","0","0" +"1488","31","8","0","-4947","-972","540","0","0" +"1489","31","9","0","-4957","-915","543","0","0" +"1490","31","10","0","-4963","-900","543","0","0" +"1491","31","11","0","-4987","-875","527","0","0" +"1492","31","12","0","-5041","-818","507","0","0" +"1493","31","13","0","-5118","-799","508","0","0" +"1494","31","14","0","-5213","-886","512","0","0" +"1495","31","15","0","-5260","-1268","576","0","0" +"1496","31","16","0","-5188","-1566","567","0","0" +"1497","31","17","0","-5032","-1695","543","0","0" +"1498","31","18","0","-4633","-1691","539","0","0" +"1499","31","19","0","-4399","-1666","509","0","0" +"1500","31","20","0","-4066","-1466","297","0","0" +"1501","31","21","0","-3801","-1399","169","0","0" +"1502","31","22","0","-3467","-1533","101","0","0" +"1503","31","23","0","-3165","-1933","61","0","0" +"1504","31","24","0","-2933","-2365","70","0","0" +"1505","31","25","0","-2808","-2488","81","0","0" +"1506","31","26","0","-2566","-2495","96","0","0" +"1507","31","27","0","-2466","-2502","109","0","0" +"1508","31","28","0","-2278","-2501","109","0","0" +"1509","31","29","0","-2121","-2485","81","0","0" +"1510","31","30","0","-1936","-2478","80","0","0" +"1511","31","31","0","-1810","-2495","56","0","0" +"1512","31","32","0","-1600","-2407","110","0","0" +"1513","31","33","0","-1319","-2456","59","0","0" +"2627","31","34","0","-1237","-2514","22","0","0" +"1526","32","0","0","-920","-3496","72","0","0" +"1527","32","1","0","-919","-3491","74","0","0" +"1528","32","2","0","-921","-3421","83","0","0" +"1529","32","3","0","-971","-3314","79","0","0" +"1530","32","4","0","-1104","-3120","67","0","0" +"1531","32","5","0","-1315","-2855","62","0","0" +"1532","32","6","0","-1428","-2771","53","0","0" +"1533","32","7","0","-1464","-2673","58","0","0" +"1534","32","8","0","-1468","-2591","85","0","0" +"1535","32","9","0","-1451","-2462","73","0","0" +"1536","32","10","0","-1409","-2318","77","0","0" +"1537","32","11","0","-1205","-2202","70","0","0" +"1538","32","12","0","-1164","-2088","97","0","0" +"1539","32","13","0","-1082","-2005","76","0","0" +"1540","32","14","0","-929","-1975","69","0","0" +"1541","32","15","0","-832","-1907","59","0","0" +"1542","32","16","0","-720","-1879","64","0","0" +"1543","32","17","0","-668","-1815","74","0","0" +"1544","32","18","0","-646","-1751","85","0","0" +"1545","32","19","0","-624","-1670","90","0","0" +"1546","32","20","0","-586","-1620","95","0","0" +"1547","32","21","0","-489","-1607","99","0","0" +"1548","32","22","0","-379","-1559","99","0","0" +"1549","32","23","0","-300","-1476","99","0","0" +"1550","32","24","0","-216","-1426","111","0","0" +"1551","32","25","0","-179","-1371","122","0","0" +"1552","32","26","0","-191","-1240","120","0","0" +"1553","32","27","0","-120","-1142","56","0","0" +"2802","32","28","0","26","-1095","49","0","0" +"2803","32","29","0","131","-1123","63","0","0" +"2804","32","30","0","187","-1103","71","0","0" +"2805","32","31","0","237","-1004","87","0","0" +"2806","32","32","0","276","-963","102","0","0" +"2807","32","33","0","357","-929","122","0","0" +"2808","32","34","0","400","-851","133","0","0" +"2809","32","35","0","474","-779","156","0","0" +"2810","32","36","0","558","-762","172","0","0" +"2811","32","37","0","618","-766","176","0","0" +"2812","32","38","0","704","-729","167","0","0" +"2813","32","39","0","756","-660","158","0","0" +"2814","32","40","0","831","-628","160","0","0" +"2815","32","41","0","944","-677","127","0","0" +"2816","32","42","0","1060","-641","104","0","0" +"2817","32","43","0","1136","-501","82","0","0" +"2818","32","44","0","1141","-425","69","0","0" +"2819","32","45","0","1135","-302","51","0","0" +"2820","32","46","0","1166","-114","50","0","0" +"2821","32","47","0","1249","87","50","0","0" +"2822","32","48","0","1293","276","55","0","0" +"2823","32","49","0","1389","429","51","0","0" +"2824","32","50","0","1512","492","56","0","0" +"3175","32","51","0","1666","498","78","0","0" +"3176","32","52","0","1850","517","78","0","0" +"3177","32","53","0","1905","600","78","0","0" +"3178","32","54","0","1908","695","91","0","0" +"3179","32","55","0","1802","752","62","0","0" +"3180","32","56","0","1720","732","63","0","0" +"3181","32","57","0","1691","726","90","0","0" +"3182","32","58","0","1640","730","89","0","0" +"3183","32","59","0","1600","718","77","0","0" +"3184","32","60","0","1591","674","57","0","0" +"3185","32","61","0","1616","645","49","0","0" +"3186","32","62","0","1658","645","33","0","0" +"3187","32","63","0","1687","623","17","0","0" +"3188","32","64","0","1681","590","1","0","0" +"3189","32","65","0","1683","546","-2","0","0" +"3190","32","66","0","1710","513","-2","0","0" +"3191","32","67","0","1726","474","1","0","0" +"3192","32","68","0","1702","420","5","0","0" +"3193","32","69","0","1683","386","1","0","0" +"3194","32","70","0","1687","352","-38","0","0" +"3195","32","71","0","1715","331","-42","0","0" +"3196","32","72","0","1741","292","-42","0","0" +"3197","32","73","0","1751","264","-42","0","0" +"3198","32","74","0","1733","243","-38","0","0" +"3199","32","75","0","1663","239","-30","0","0" +"3200","32","76","0","1638","237","-26","0","0" +"3201","32","77","0","1606","217","-26","0","0" +"3202","32","78","0","1573","225","-34","0","0" +"3203","32","79","0","1568","268","-42","0","0" +"2292","33","0","0","1568","268","-41","0","0" +"2293","33","1","0","1564","249","-37","0","0" +"2294","33","2","0","1574","221","-32","0","0" +"2295","33","3","0","1609","218","-26","0","0" +"2296","33","4","0","1634","240","-29","0","0" +"2297","33","5","0","1698","239","-38","0","0" +"2298","33","6","0","1742","244","-38","0","0" +"2299","33","7","0","1747","284","-42","0","0" +"2300","33","8","0","1715","331","-42","0","0" +"2301","33","9","0","1687","352","-38","0","0" +"2302","33","10","0","1683","386","1","0","0" +"2303","33","11","0","1702","420","5","0","0" +"2304","33","12","0","1726","474","1","0","0" +"2305","33","13","0","1710","513","-2","0","0" +"2306","33","14","0","1683","546","-2","0","0" +"2307","33","15","0","1681","590","1","0","0" +"2308","33","16","0","1687","623","17","0","0" +"2309","33","17","0","1658","645","33","0","0" +"2310","33","18","0","1616","645","49","0","0" +"2311","33","19","0","1591","674","57","0","0" +"2312","33","20","0","1600","718","77","0","0" +"2313","33","21","0","1640","730","89","0","0" +"2314","33","22","0","1691","726","90","0","0" +"3102","33","23","0","1746","737","83","0","0" +"3103","33","24","0","1783","696","75","0","0" +"3104","33","25","0","1780","633","84","0","0" +"3105","33","26","0","1779","543","84","0","0" +"3106","33","27","0","1873","456","82","0","0" +"3107","33","28","0","1955","298","60","0","0" +"3108","33","29","0","1930","212","62","0","0" +"3109","33","30","0","1942","131","23","0","0" +"3110","33","31","0","1940","6","22","0","0" +"3111","33","32","0","1913","-125","44","0","0" +"3112","33","33","0","1891","-265","40","0","0" +"3113","33","34","0","1806","-363","40","0","0" +"3114","33","35","0","1760","-518","49","0","0" +"3115","33","36","0","1679","-616","50","0","0" +"3116","33","37","0","1705","-692","60","0","0" +"3117","33","38","0","1715","-765","69","0","0" +"3118","33","39","0","1722","-824","67","0","0" +"3119","33","40","0","1692","-848","71","0","0" +"3120","33","41","0","1663","-869","71","0","0" +"3121","33","42","0","1629","-902","71","0","0" +"3122","33","43","0","1582","-924","72","0","0" +"3123","33","44","0","1537","-945","75","0","0" +"3124","33","45","0","1505","-961","84","0","0" +"3125","33","46","0","1410","-1013","88","0","0" +"3126","33","47","0","1366","-1105","84","0","0" +"3127","33","48","0","1337","-1209","87","0","0" +"3128","33","49","0","1345","-1279","85","0","0" +"3129","33","50","0","1341","-1343","85","0","0" +"3130","33","51","0","1321","-1447","85","0","0" +"3131","33","52","0","1368","-1494","86","0","0" +"3132","33","53","0","1386","-1552","85","0","0" +"3133","33","54","0","1359","-1609","84","0","0" +"3134","33","55","0","1319","-1655","85","0","0" +"3135","33","56","0","1312","-1732","80","0","0" +"3136","33","57","0","1270","-1824","62","0","0" +"3137","33","58","0","1254","-1906","62","0","0" +"3138","33","59","0","1166","-2022","67","0","0" +"3139","33","60","0","1045","-2121","67","0","0" +"3140","33","61","0","986","-2159","75","0","0" +"3141","33","62","0","864","-2095","58","0","0" +"3142","33","63","0","724","-2014","49","0","0" +"3143","33","64","0","645","-1826","43","0","0" +"3144","33","65","0","595","-1688","46","0","0" +"3145","33","66","0","486","-1524","45","0","0" +"3146","33","67","0","341","-1407","46","0","0" +"3147","33","68","0","278","-1293","48","0","0" +"3148","33","69","0","207","-1204","52","0","0" +"3149","33","70","0","67","-1123","47","0","0" +"3153","33","71","0","-97","-1122","47","0","0" +"3154","33","72","0","-192","-1238","125","0","0" +"3155","33","73","0","-295","-1405","90","0","0" +"3156","33","74","0","-320","-1532","100","0","0" +"3157","33","75","0","-447","-1616","97","0","0" +"3158","33","76","0","-542","-1667","126","0","0" +"3159","33","77","0","-659","-1774","75","0","0" +"3160","33","78","0","-716","-1942","58","0","0" +"3161","33","79","0","-750","-2124","53","0","0" +"3162","33","80","0","-812","-2232","57","0","0" +"3163","33","81","0","-894","-2362","69","0","0" +"3164","33","82","0","-1032","-2536","61","0","0" +"3165","33","83","0","-1059","-2733","52","0","0" +"3166","33","84","0","-1141","-2831","56","0","0" +"3167","33","85","0","-1102","-2950","55","0","0" +"3168","33","86","0","-1173","-3279","63","0","0" +"3169","33","87","0","-1059","-3481","84","0","0" +"3170","33","88","0","-982","-3503","86","0","0" +"3171","33","89","0","-914","-3488","73","0","0" +"1580","34","0","0","-12408","148","4","0","0" +"1581","34","1","0","-12402","157","6","0","0" +"1582","34","2","0","-12390","195","14","0","0" +"1583","34","3","0","-12399","260","22","0","0" +"1584","34","4","0","-12479","331","29","0","0" +"1585","34","5","0","-12933","535","57","0","0" +"1586","34","6","0","-13368","698","81","0","0" +"5016","34","7","0","-13732","699","81","0","0" +"9357","34","8","0","-14112","704","43","0","0" +"9358","34","9","0","-14331","619","45","0","0" +"9359","34","10","0","-14445","513","27","0","0" +"1588","35","0","0","-14445","508","27","0","0" +"1589","35","1","0","-14442","510","27","0","0" +"1590","35","2","0","-14421","522","34","0","0" +"1591","35","3","0","-14350","554","55","0","0" +"1592","35","4","0","-14233","597","79","0","0" +"1593","35","5","0","-13799","698","45","0","0" +"1594","35","6","0","-13484","641","101","0","0" +"1595","35","7","0","-12880","264","112","0","0" +"1596","35","8","0","-12600","116","42","0","0" +"1597","35","9","0","-12453","131","22","0","0" +"1598","35","10","0","-12406","147","5","0","0" +"1610","36","0","0","-14446","507","27","0","0" +"1611","36","1","0","-14444","511","27","0","0" +"1612","36","2","0","-14417","532","32","0","0" +"1613","36","3","0","-14266","636","63","0","0" +"1614","36","4","0","-14125","567","95","0","0" +"1615","36","5","0","-14058","263","114","0","0" +"1616","36","6","0","-13250","-33","121","0","0" +"1617","36","7","0","-12738","-254","121","0","0" +"1618","36","8","0","-12046","-355","88","0","0" +"1619","36","9","0","-11386","-292","131","0","0" +"1620","36","10","0","-11027","-489","131","0","0" +"1621","36","11","0","-10749","-762","131","0","0" +"1622","36","12","0","-10000","-933","131","0","0" +"1623","36","13","0","-9341","-1049","153","0","0" +"1624","36","14","0","-8905","-1129","179","0","0" +"1625","36","15","0","-8497","-1198","270","0","0" +"1626","36","16","0","-8273","-1275","213","0","0" +"1627","36","17","0","-7665","-1531","244","0","0" +"1628","36","18","0","-7489","-1599","297","0","0" +"1629","36","19","0","-7393","-1617","352","0","0" +"1630","36","20","0","-7027","-1689","313","0","0" +"1631","36","21","0","-6904","-1829","315","0","0" +"1632","36","22","0","-6946","-2057","314","0","0" +"1633","36","23","0","-6895","-2212","297","0","0" +"1634","36","24","0","-6779","-2454","286","0","0" +"1635","36","25","0","-6683","-2465","285","0","0" +"1636","36","26","0","-6619","-2349","266","0","0" +"1637","36","27","0","-6620","-2237","255","0","0" +"1638","36","28","0","-6634","-2180","246","0","0" +"1667","37","0","0","-6632","-2188","245","0","0" +"1668","37","1","0","-6649","-2195","252","0","0" +"1669","37","2","0","-6696","-2199","275","0","0" +"1670","37","3","0","-6780","-2232","301","0","0" +"1671","37","4","0","-6885","-2213","319","0","0" +"1672","37","5","0","-6926","-2055","342","0","0" +"1673","37","6","0","-6933","-1800","289","0","0" +"1674","37","7","0","-7147","-1690","281","0","0" +"1675","37","8","0","-7377","-1620","335","0","0" +"1676","37","9","0","-7699","-1566","232","0","0" +"1677","37","10","0","-8200","-1266","169","0","0" +"1678","37","11","0","-8501","-1202","265","0","0" +"1679","37","12","0","-8891","-1184","181","0","0" +"1680","37","13","0","-9570","-1141","125","0","0" +"1681","37","14","0","-10250","-977","114","0","0" +"1682","37","15","0","-10549","-871","118","0","0" +"1683","37","16","0","-10783","-779","131","0","0" +"1684","37","17","0","-11248","-371","134","0","0" +"1685","37","18","0","-11643","-156","101","0","0" +"1686","37","19","0","-12056","-58","88","0","0" +"1687","37","20","0","-12508","164","59","0","0" +"1688","37","21","0","-12834","433","59","0","0" +"1689","37","22","0","-13431","683","95","0","0" +"1690","37","23","0","-13765","667","95","0","0" +"1691","37","24","0","-14335","611","41","0","0" +"1692","37","25","0","-14446","513","27","0","0" +"1726","38","0","0","-6635","-2187","245","0","0" +"1727","38","1","0","-6644","-2189","247","0","0" +"1728","38","2","0","-6663","-2192","250","0","0" +"1729","38","3","0","-6744","-2201","262","0","0" +"1730","38","4","0","-6817","-2230","268","0","0" +"1731","38","5","0","-6873","-2306","276","0","0" +"1732","38","6","0","-6885","-2392","256","0","0" +"1733","38","7","0","-6860","-2484","249","0","0" +"1734","38","8","0","-6794","-2544","258","0","0" +"1735","38","9","0","-6767","-2615","255","0","0" +"1736","38","10","0","-6783","-2769","249","0","0" +"1737","38","11","0","-6652","-2911","249","0","0" +"1738","38","12","0","-6569","-2971","255","0","0" +"1739","38","13","0","-6548","-3014","266","0","0" +"1740","38","14","0","-6543","-3090","275","0","0" +"1741","38","15","0","-6506","-3163","291","0","0" +"1742","38","16","0","-6377","-3310","276","0","0" +"1748","38","17","0","-6298","-3347","275","0","0" +"1749","38","18","0","-6187","-3375","248","0","0" +"1750","38","19","0","-6122","-3347","260","0","0" +"1751","38","20","0","-6006","-3297","272","0","0" +"1752","38","21","0","-5910","-3289","292","0","0" +"1753","38","22","0","-5857","-3346","306","0","0" +"1754","38","23","0","-5849","-3440","324","0","0" +"1755","38","24","0","-5899","-3487","329","0","0" +"1756","38","25","0","-5920","-3541","341","0","0" +"1757","38","26","0","-5894","-3585","366","0","0" +"1758","38","27","0","-5831","-3649","379","0","0" +"1759","38","28","0","-5820","-3708","394","0","0" +"1760","38","29","0","-5720","-3875","370","0","0" +"1761","38","30","0","-5506","-3852","380","0","0" +"1762","38","31","0","-5242","-3689","336","0","0" +"1763","38","32","0","-5097","-3627","319","0","0" +"2825","38","33","0","-4923","-3547","301","0","0" +"2826","38","34","0","-4706","-3404","323","0","0" +"2827","38","35","0","-4557","-3319","233","0","0" +"2828","38","36","0","-4414","-3257","193","0","0" +"2829","38","37","0","-4250","-3185","134","0","0" +"2830","38","38","0","-4138","-3138","40","0","0" +"2831","38","39","0","-4090","-3111","14","0","0" +"2832","38","40","0","-4011","-3048","14","0","0" +"2833","38","41","0","-3905","-2998","14","0","0" +"2834","38","42","0","-3769","-2971","14","0","0" +"2835","38","43","0","-3648","-2941","14","0","0" +"2836","38","44","0","-3509","-2846","14","0","0" +"2837","38","45","0","-3432","-2740","14","0","0" +"2838","38","46","0","-3367","-2730","32","0","0" +"2839","38","47","0","-3153","-2751","26","0","0" +"2840","38","48","0","-3077","-2646","25","0","0" +"2841","38","49","0","-2838","-2603","57","0","0" +"2842","38","50","0","-2761","-2518","72","0","0" +"2843","38","51","0","-2677","-2484","84","0","0" +"2844","38","52","0","-2534","-2495","93","0","0" +"2845","38","53","0","-2469","-2503","86","0","0" +"2846","38","54","0","-2371","-2502","103","0","0" +"2847","38","55","0","-2278","-2504","84","0","0" +"3330","38","56","0","-2137","-2475","82","0","0" +"3331","38","57","0","-1996","-2422","92","0","0" +"3332","38","58","0","-1802","-2314","52","0","0" +"3333","38","59","0","-1739","-2217","55","0","0" +"3334","38","60","0","-1770","-2049","121","0","0" +"3335","38","61","0","-1697","-1917","102","0","0" +"3336","38","62","0","-1651","-1865","91","0","0" +"3337","38","63","0","-1643","-1820","87","0","0" +"3338","38","64","0","-1648","-1761","92","0","0" +"3339","38","65","0","-1631","-1704","93","0","0" +"3340","38","66","0","-1586","-1666","98","0","0" +"3341","38","67","0","-1467","-1687","97","0","0" +"3343","38","68","0","-1397","-1470","92","0","0" +"3344","38","69","0","-1260","-1491","90","0","0" +"3345","38","70","0","-1159","-1437","101","0","0" +"3346","38","71","0","-1081","-1432","114","0","0" +"3347","38","72","0","-975","-1480","114","0","0" +"3348","38","73","0","-894","-1440","88","0","0" +"3349","38","74","0","-829","-1439","72","0","0" +"3350","38","75","0","-770","-1387","75","0","0" +"3351","38","76","0","-728","-1260","69","0","0" +"3352","38","77","0","-620","-1223","73","0","0" +"3353","38","78","0","-568","-1146","73","0","0" +"3354","38","79","0","-438","-1097","60","0","0" +"3355","38","80","0","-314","-1115","52","0","0" +"3356","38","81","0","-136","-1128","67","0","0" +"3357","38","82","0","53","-1127","98","0","0" +"3358","38","83","0","289","-1296","101","0","0" +"3359","38","84","0","432","-1273","135","0","0" +"3360","38","85","0","536","-1303","152","0","0" +"3361","38","86","0","727","-1449","146","0","0" +"3363","38","87","0","904","-1476","135","0","0" +"3364","38","88","0","1041","-1424","128","0","0" +"3365","38","89","0","1136","-1360","117","0","0" +"3366","38","90","0","1299","-1373","105","0","0" +"3367","38","91","0","1432","-1273","124","0","0" +"3368","38","92","0","1596","-1057","136","0","0" +"3369","38","93","0","1707","-885","133","0","0" +"3370","38","94","0","1679","-767","89","0","0" +"3371","38","95","0","1722","-669","61","0","0" +"3372","38","96","0","1809","-665","55","0","0" +"3373","38","97","0","1851","-572","47","0","0" +"3374","38","98","0","1936","-471","55","0","0" +"3375","38","99","0","1963","-370","40","0","0" +"3376","38","100","0","1913","-221","45","0","0" +"3377","38","101","0","1931","91","55","0","0" +"3378","38","102","0","1958","306","60","0","0" +"3379","38","103","0","2004","474","44","0","0" +"3380","38","104","0","1958","585","63","0","0" +"3381","38","105","0","1900","689","44","0","0" +"3382","38","106","0","1814","750","60","0","0" +"3383","38","107","0","1745","732","64","0","0" +"3384","38","108","0","1691","726","79","0","0" +"3387","38","109","0","1640","730","89","0","0" +"3388","38","110","0","1600","718","77","0","0" +"3389","38","111","0","1591","674","57","0","0" +"3390","38","112","0","1616","645","49","0","0" +"3391","38","113","0","1658","645","33","0","0" +"3392","38","114","0","1687","623","17","0","0" +"3393","38","115","0","1681","590","1","0","0" +"3394","38","116","0","1683","546","-2","0","0" +"3395","38","117","0","1710","513","-2","0","0" +"3396","38","118","0","1726","474","1","0","0" +"3397","38","119","0","1702","420","5","0","0" +"3398","38","120","0","1683","386","1","0","0" +"3399","38","121","0","1687","352","-38","0","0" +"3400","38","122","0","1715","331","-42","0","0" +"3401","38","123","0","1741","292","-42","0","0" +"3404","38","124","0","1751","264","-42","0","0" +"3405","38","125","0","1733","243","-38","0","0" +"3406","38","126","0","1663","239","-30","0","0" +"3407","38","127","0","1635","239","-26","0","0" +"3408","38","128","0","1606","217","-26","0","0" +"3409","38","129","0","1573","225","-34","0","0" +"3410","38","130","0","1568","268","-42","0","0" +"2315","39","0","0","1568","268","-41","0","0" +"2316","39","1","0","1567","256","-39","0","0" +"2317","39","2","0","1571","228","-33","0","0" +"2318","39","3","0","1598","216","-28","0","0" +"2319","39","4","0","1630","239","-30","0","0" +"2320","39","5","0","1737","242","-40","0","0" +"2321","39","6","0","1748","281","-44","0","0" +"2322","39","7","0","1711","330","-46","0","0" +"2323","39","8","0","1686","356","-25","0","0" +"2324","39","9","0","1683","386","1","0","0" +"2325","39","10","0","1702","420","5","0","0" +"2326","39","11","0","1726","474","1","0","0" +"2327","39","12","0","1710","513","-2","0","0" +"2328","39","13","0","1683","546","-2","0","0" +"2329","39","14","0","1681","590","1","0","0" +"2330","39","15","0","1687","623","17","0","0" +"2331","39","16","0","1658","645","33","0","0" +"2332","39","17","0","1616","645","49","0","0" +"2333","39","18","0","1591","674","57","0","0" +"2334","39","19","0","1600","718","77","0","0" +"2335","39","20","0","1640","730","89","0","0" +"2336","39","21","0","1691","726","90","0","0" +"2337","39","22","0","1734","734","74","0","0" +"3205","39","23","0","1789","752","78","0","0" +"3206","39","24","0","1823","725","79","0","0" +"3207","39","25","0","1827","646","78","0","0" +"3208","39","26","0","1718","640","77","0","0" +"3209","39","27","0","1631","631","75","0","0" +"3210","39","28","0","1558","619","58","0","0" +"3211","39","29","0","1461","606","58","0","0" +"3212","39","30","0","1378","658","41","0","0" +"3213","39","31","0","1326","767","40","0","0" +"3214","39","32","0","1279","848","40","0","0" +"3215","39","33","0","1228","918","43","0","0" +"3216","39","34","0","1177","1004","43","0","0" +"3217","39","35","0","1045","1054","42","0","0" +"3218","39","36","0","884","1059","57","0","0" +"3219","39","37","0","718","1005","56","0","0" +"3220","39","38","0","615","868","73","0","0" +"3221","39","39","0","540","776","81","0","0" +"3222","39","40","0","444","689","50","0","0" +"3223","39","41","0","375","646","45","0","0" +"3224","39","42","0","249","632","51","0","0" +"3225","39","43","0","179","597","78","0","0" +"3226","39","44","0","118","553","96","0","0" +"3227","39","45","0","42","494","62","0","0" +"3228","39","46","0","24","371","56","0","0" +"3229","39","47","0","-96","341","82","0","0" +"3230","39","48","0","-160","304","122","0","0" +"3231","39","49","0","-202","175","86","0","0" +"3232","39","50","0","-255","143","88","0","0" +"3233","39","51","0","-310","190","100","0","0" +"3234","39","52","0","-378","214","97","0","0" +"3235","39","53","0","-497","204","82","0","0" +"3236","39","54","0","-614","163","66","0","0" +"3237","39","55","0","-733","128","50","0","0" +"3238","39","56","0","-863","113","45","0","0" +"3239","39","57","0","-978","116","60","0","0" +"3240","39","58","0","-1079","95","65","0","0" +"3241","39","59","0","-1120","48","55","0","0" +"3243","39","60","0","-1119","-74","27","0","0" +"3244","39","61","0","-1117","-212","12","0","0" +"3245","39","62","0","-1093","-383","5","0","0" +"3246","39","63","0","-1065","-572","6","0","0" +"3247","39","64","0","-1145","-717","2","0","0" +"3248","39","65","0","-1293","-876","5","0","0" +"3249","39","66","0","-1399","-1002","3","0","0" +"3250","39","67","0","-1565","-1077","4","0","0" +"3251","39","68","0","-1690","-1136","9","0","0" +"3252","39","69","0","-1826","-1304","6","0","0" +"3253","39","70","0","-1974","-1431","6","0","0" +"3254","39","71","0","-2125","-1602","5","0","0" +"3255","39","72","0","-2250","-1850","43","0","0" +"3256","39","73","0","-2317","-1932","8","0","0" +"3257","39","74","0","-2343","-2045","8","0","0" +"3258","39","75","0","-2322","-2216","18","0","0" +"3259","39","76","0","-2350","-2377","20","0","0" +"3260","39","77","0","-2343","-2431","31","0","0" +"3261","39","78","0","-2348","-2457","53","0","0" +"3262","39","79","0","-2387","-2462","79","0","0" +"3263","39","80","0","-2461","-2467","127","0","0" +"3264","39","81","0","-2512","-2476","96","0","0" +"3265","39","82","0","-2592","-2489","88","0","0" +"3266","39","83","0","-2684","-2482","83","0","0" +"3267","39","84","0","-2802","-2505","66","0","0" +"3268","39","85","0","-2879","-2585","46","0","0" +"3269","39","86","0","-2954","-2618","34","0","0" +"3270","39","87","0","-3040","-2596","17","0","0" +"3271","39","88","0","-3174","-2581","16","0","0" +"3272","39","89","0","-3262","-2590","17","0","0" +"3273","39","90","0","-3371","-2565","23","0","0" +"3274","39","91","0","-3414","-2519","33","0","0" +"3275","39","92","0","-3457","-2500","40","0","0" +"3276","39","93","0","-3498","-2484","58","0","0" +"3277","39","94","0","-3552","-2502","59","0","0" +"3278","39","95","0","-3581","-2508","60","0","0" +"3279","39","96","0","-3628","-2547","67","0","0" +"3280","39","97","0","-3691","-2608","78","0","0" +"3281","39","98","0","-3761","-2630","88","0","0" +"3282","39","99","0","-3856","-2642","95","0","0" +"3283","39","100","0","-3927","-2629","93","0","0" +"3284","39","101","0","-3987","-2577","102","0","0" +"3285","39","102","0","-4049","-2485","172","0","0" +"3286","39","103","0","-4160","-2423","236","0","0" +"3287","39","104","0","-4243","-2455","268","0","0" +"3288","39","105","0","-4314","-2625","312","0","0" +"3289","39","106","0","-4409","-2667","350","0","0" +"3290","39","107","0","-4536","-2668","411","0","0" +"3291","39","108","0","-4582","-2677","432","0","0" +"3292","39","109","0","-4637","-2713","392","0","0" +"3293","39","110","0","-4710","-2760","334","0","0" +"3294","39","111","0","-4746","-2819","336","0","0" +"3295","39","112","0","-4731","-2876","335","0","0" +"3296","39","113","0","-4734","-2940","351","0","0" +"3297","39","114","0","-4757","-3005","337","0","0" +"3298","39","115","0","-4819","-3099","331","0","0" +"3299","39","116","0","-4908","-3276","313","0","0" +"3300","39","117","0","-5025","-3383","305","0","0" +"3301","39","118","0","-5133","-3458","328","0","0" +"3302","39","119","0","-5256","-3504","333","0","0" +"3303","39","120","0","-5453","-3510","308","0","0" +"3304","39","121","0","-5530","-3484","307","0","0" +"3305","39","122","0","-5637","-3542","303","0","0" +"3306","39","123","0","-5721","-3494","308","0","0" +"3307","39","124","0","-5757","-3417","309","0","0" +"3308","39","125","0","-5807","-3391","313","0","0" +"3309","39","126","0","-5871","-3336","305","0","0" +"3310","39","127","0","-5899","-3299","293","0","0" +"3311","39","128","0","-5942","-3289","287","0","0" +"3312","39","129","0","-6030","-3304","275","0","0" +"3313","39","130","0","-6175","-3380","255","0","0" +"3314","39","131","0","-6334","-3397","248","0","0" +"3315","39","132","0","-6439","-3353","249","0","0" +"3316","39","133","0","-6554","-3354","271","0","0" +"3317","39","134","0","-6739","-3249","251","0","0" +"3318","39","135","0","-6777","-3108","257","0","0" +"3319","39","136","0","-6705","-2998","271","0","0" +"3320","39","137","0","-6663","-2881","249","0","0" +"3321","39","138","0","-6687","-2712","250","0","0" +"3322","39","139","0","-6624","-2632","272","0","0" +"3323","39","140","0","-6611","-2539","282","0","0" +"3324","39","141","0","-6638","-2415","264","0","0" +"3325","39","142","0","-6619","-2334","264","0","0" +"3326","39","143","0","-6613","-2251","252","0","0" +"3327","39","144","0","-6631","-2184","248","0","0" +"1814","40","0","0","-8850","497","111","0","0" +"1815","40","1","0","-8852","495","111","0","0" +"1816","40","2","0","-8868","484","114","0","0" +"1817","40","3","0","-8920","444","121","0","0" +"1818","40","4","0","-9028","491","142","0","0" +"1819","40","5","0","-9114","472","160","0","0" +"1820","40","6","0","-9350","343","150","0","0" +"1821","40","7","0","-9599","398","137","0","0" +"1822","40","8","0","-9933","499","119","0","0" +"1823","40","9","0","-10366","451","105","0","0" +"1832","40","10","0","-10833","335","102","0","0" +"1833","40","11","0","-11077","299","102","0","0" +"1834","40","12","0","-11350","299","102","0","0" +"1835","40","13","0","-11583","277","103","0","0" +"2940","40","14","0","-11933","333","83","0","0" +"2941","40","15","0","-12224","423","23","0","0" +"2942","40","16","0","-12501","533","23","0","0" +"2943","40","17","0","-12832","532","23","0","0" +"2944","40","18","0","-13166","533","49","0","0" +"2945","40","19","0","-13387","690","108","0","0" +"2946","40","20","0","-13566","666","74","0","0" +"2947","40","21","0","-13833","700","35","0","0" +"2948","40","22","0","-14082","637","20","0","0" +"2949","40","23","0","-14196","600","28","0","0" +"2950","40","24","0","-14266","533","49","0","0" +"2951","40","25","0","-14306","472","37","0","0" +"2952","40","26","0","-14370","427","34","0","0" +"2953","40","27","0","-14430","429","41","0","0" +"2954","40","28","0","-14459","454","40","0","0" +"2955","40","29","0","-14474","465","39","0","0" +"1836","41","0","0","-14475","462","37","0","0" +"1837","41","1","0","-14472","460","38","0","0" +"1838","41","2","0","-14422","420","51","0","0" +"1839","41","3","0","-14347","448","70","0","0" +"1840","41","4","0","-14270","556","81","0","0" +"1841","41","5","0","-14155","680","90","0","0" +"1842","41","6","0","-13954","660","69","0","0" +"1843","41","7","0","-13876","645","37","0","0" +"1844","41","8","0","-13751","639","36","0","0" +"1845","41","9","0","-13566","631","85","0","0" +"1846","41","10","0","-13299","633","92","0","0" +"1847","41","11","0","-13034","500","46","0","0" +"1848","41","12","0","-12797","465","15","0","0" +"1849","41","13","0","-12366","432","14","0","0" +"1850","41","14","0","-12066","399","23","0","0" +"2971","41","15","0","-11833","333","109","0","0" +"2972","41","16","0","-11583","304","109","0","0" +"2973","41","17","0","-11085","311","109","0","0" +"2974","41","18","0","-10735","300","105","0","0" +"2975","41","19","0","-10300","332","109","0","0" +"2976","41","20","0","-9900","366","111","0","0" +"2977","41","21","0","-9561","240","135","0","0" +"2978","41","22","0","-9320","228","153","0","0" +"2979","41","23","0","-9130","296","162","0","0" +"2980","41","24","0","-9036","376","161","0","0" +"2981","41","25","0","-8917","421","132","0","0" +"2982","41","26","0","-8834","479","112","0","0" +"1875","42","0","1","1679","-4316","62","0","0" +"1876","42","1","1","1677","-4314","62","0","0" +"1877","42","2","1","1667","-4304","65","0","0" +"1878","42","3","1","1657","-4292","69","0","0" +"1879","42","4","1","1615","-4255","65","0","0" +"1880","42","5","1","1598","-4181","63","0","0" +"1881","42","6","1","1642","-4124","67","0","0" +"1882","42","7","1","1744","-4078","60","0","0" +"1883","42","8","1","1761","-3978","86","0","0" +"1884","42","9","1","1714","-3907","94","0","0" +"1885","42","10","1","1584","-3869","71","0","0" +"1886","42","11","1","1465","-3859","46","0","0" +"1887","42","12","1","1315","-3869","38","0","0" +"1888","42","13","1","1165","-3799","42","0","0" +"1889","42","14","1","1050","-3706","37","0","0" +"1890","42","15","1","1038","-3597","60","0","0" +"1891","42","16","1","1097","-3473","91","0","0" +"1892","42","17","1","1098","-3239","101","0","0" +"1893","42","18","1","1001","-3135","114","0","0" +"1894","42","19","1","932","-2900","99","0","0" +"1895","42","20","1","734","-2668","99","0","0" +"1896","42","21","1","694","-2415","102","0","0" +"1897","42","22","1","684","-2178","102","0","0" +"1898","42","23","1","614","-1981","101","0","0" +"1974","42","24","1","490","-1883","99","0","0" +"1975","42","25","1","291","-1826","99","0","0" +"1976","42","26","1","243","-1700","101","0","0" +"2442","42","27","1","-34","-1666","99","0","0" +"2443","42","28","1","-169","-1629","101","0","0" +"2444","42","29","1","-404","-1610","100","0","0" +"2445","42","30","1","-466","-1500","101","0","0" +"2446","42","31","1","-463","-1366","118","0","0" +"2447","42","32","1","-497","-1299","161","0","0" +"2448","42","33","1","-634","-1280","228","0","0" +"2449","42","34","1","-768","-1214","185","0","0" +"2450","42","35","1","-869","-1133","149","0","0" +"2451","42","36","1","-1097","-901","27","0","0" +"2452","42","37","1","-1298","-598","-45","0","0" +"2453","42","38","1","-1365","-363","-25","0","0" +"2454","42","39","1","-1195","-218","86","0","0" +"2455","42","40","1","-1042","-128","145","0","0" +"2456","42","41","1","-1050","-52","172","0","0" +"9431","42","42","1","-1136","11","183","0","0" +"9432","42","43","1","-1196","29","180","0","0" +"1900","44","0","1","-441","-2597","97","0","0" +"1901","44","1","1","-447","-2633","107","0","0" +"1902","44","2","1","-430","-2675","118","0","0" +"1903","44","3","1","-345","-2678","121","0","0" +"1904","44","4","1","-284","-2567","121","0","0" +"1905","44","5","1","-396","-2354","102","0","0" +"1906","44","6","1","-435","-2198","139","0","0" +"1907","44","7","1","-449","-2050","103","0","0" +"1908","44","8","1","-434","-1767","145","0","0" +"1909","44","9","1","-639","-1301","226","0","0" +"1910","44","10","1","-788","-934","205","0","0" +"1911","44","11","1","-867","-600","205","0","0" +"1912","44","12","1","-965","-133","205","0","0" +"1913","44","13","1","-1033","2","184","0","0" +"1914","44","14","1","-1155","23","181","0","0" +"1915","44","15","1","-1197","30","180","0","0" +"1936","45","0","1","-439","-2596","97","0","0" +"1937","45","1","1","-453","-2641","107","0","0" +"1938","45","2","1","-484","-2721","117","0","0" +"1939","45","3","1","-432","-2833","117","0","0" +"1940","45","4","1","-232","-2900","119","0","0" +"1941","45","5","1","99","-3167","119","0","0" +"1942","45","6","1","546","-3562","120","0","0" +"1943","45","7","1","932","-3666","112","0","0" +"1944","45","8","1","1233","-3799","78","0","0" +"1945","45","9","1","1624","-3846","97","0","0" +"1946","45","10","1","1699","-3953","95","0","0" +"1947","45","11","1","1724","-4051","82","0","0" +"1978","45","12","1","1590","-4126","77","0","0" +"1979","45","13","1","1571","-4191","75","0","0" +"1980","45","14","1","1617","-4272","65","0","0" +"1983","45","15","1","1609","-4336","65","0","0" +"3416","45","16","1","1630","-4397","54","0","0" +"9167","45","17","1","1683","-4407","62","0","0" +"12420","45","18","1","1726","-4374","62","0","0" +"12443","45","19","1","1718","-4326","65","0","0" +"12444","45","20","1","1679","-4314","65","0","0" +"1919","46","0","1","-1196","29","179","0","0" +"1920","46","1","1","-1199","30","179","0","0" +"1921","46","2","1","-1220","35","180","0","0" +"1922","46","3","1","-1279","29","168","0","0" +"1923","46","4","1","-1380","-51","174","0","0" +"1924","46","5","1","-1400","-166","191","0","0" +"1925","46","6","1","-1339","-390","156","0","0" +"1926","46","7","1","-998","-798","156","0","0" +"1927","46","8","1","-666","-1266","227","0","0" +"1928","46","9","1","-533","-1633","195","0","0" +"1929","46","10","1","-433","-2000","165","0","0" +"1930","46","11","1","-400","-2332","154","0","0" +"1931","46","12","1","-408","-2524","125","0","0" +"1932","46","13","1","-441","-2595","100","0","0" +"1948","47","0","1","1678","-4317","62","0","0" +"1949","47","1","1","1676","-4315","62","0","0" +"1950","47","2","1","1667","-4308","64","0","0" +"1951","47","3","1","1615","-4261","65","0","0" +"1952","47","4","1","1606","-4175","63","0","0" +"1953","47","5","1","1685","-4131","56","0","0" +"1954","47","6","1","1750","-4057","66","0","0" +"1955","47","7","1","1764","-3993","78","0","0" +"1956","47","8","1","1721","-3903","94","0","0" +"1957","47","9","1","1622","-3866","94","0","0" +"1958","47","10","1","1342","-3811","82","0","0" +"1959","47","11","1","1067","-3733","78","0","0" +"1960","47","12","1","701","-3600","116","0","0" +"1961","47","13","1","435","-3464","120","0","0" +"1962","47","14","1","214","-3189","121","0","0" +"1963","47","15","1","55","-2975","115","0","0" +"1964","47","16","1","-161","-2686","109","0","0" +"1965","47","17","1","-252","-2579","124","0","0" +"1966","47","18","1","-341","-2551","115","0","0" +"2508","47","19","1","-398","-2570","107","0","0" +"2509","47","20","1","-439","-2595","99","0","0" +"2007","50","0","1","2827","-289","108","0","0" +"2008","50","1","1","2845","-289","113","0","0" +"2009","50","2","1","2876","-266","124","0","0" +"2010","50","3","1","2867","-189","125","0","0" +"2011","50","4","1","2867","-85","113","0","0" +"2012","50","5","1","2832","21","107","0","0" +"2013","50","6","1","2816","102","105","0","0" +"2014","50","7","1","2843","164","108","0","0" +"2015","50","8","1","2907","186","107","0","0" +"2016","50","9","1","3021","150","79","0","0" +"2017","50","10","1","3107","222","43","0","0" +"2018","50","11","1","3211","183","32","0","0" +"2019","50","12","1","3302","178","27","0","0" +"2020","50","13","1","3418","250","24","0","0" +"2021","50","14","1","3641","217","18","0","0" +"2022","50","15","1","3776","150","19","0","0" +"2023","50","16","1","3905","36","23","0","0" +"2024","50","17","1","4030","-7","28","0","0" +"2025","50","18","1","4181","59","51","0","0" +"2026","50","19","1","4263","131","53","0","0" +"2027","50","20","1","4348","180","54","0","0" +"2028","50","21","1","4445","242","66","0","0" +"2029","50","22","1","4515","284","65","0","0" +"2030","50","23","1","4666","275","61","0","0" +"2347","50","24","1","4767","226","56","0","0" +"2348","50","25","1","4866","216","53","0","0" +"2364","50","26","1","4905","239","57","0","0" +"2365","50","27","1","4910","338","52","0","0" +"2366","50","28","1","4975","448","34","0","0" +"2367","50","29","1","5071","465","29","0","0" +"2368","50","30","1","5168","518","20","0","0" +"2369","50","31","1","5284","521","23","0","0" +"2370","50","32","1","5600","554","31","0","0" +"2371","50","33","1","5963","577","18","0","0" +"2372","50","34","1","6227","515","27","0","0" +"2373","50","35","1","6311","520","24","0","0" +"2374","50","36","1","6341","556","18","0","0" +"2031","51","0","1","6341","558","17","0","0" +"2032","51","1","1","6341","617","26","0","0" +"2033","51","2","1","6262","653","25","0","0" +"2034","51","3","1","6034","632","25","0","0" +"2035","51","4","1","5198","543","26","0","0" +"2036","51","5","1","4670","720","29","0","0" +"2037","51","6","1","4493","855","32","0","0" +"2038","51","7","1","4362","1103","36","0","0" +"2039","51","8","1","4205","1167","67","0","0" +"2040","51","9","1","4090","930","38","0","0" +"2041","51","10","1","3886","871","18","0","0" +"2042","51","11","1","3786","676","19","0","0" +"2043","51","12","1","3563","620","22","0","0" +"2044","51","13","1","3504","548","18","0","0" +"2045","51","14","1","3444","534","17","0","0" +"2046","51","15","1","3359","580","19","0","0" +"2047","51","16","1","3252","544","20","0","0" +"2048","51","17","1","3182","441","66","0","0" +"2049","51","18","1","3000","495","93","0","0" +"2050","51","19","1","2924","418","111","0","0" +"2051","51","20","1","2852","383","107","0","0" +"2052","51","21","1","2763","305","109","0","0" +"2053","51","22","1","2793","201","115","0","0" +"2054","51","23","1","2821","67","109","0","0" +"2055","51","24","1","2756","-143","118","0","0" +"2056","51","25","1","2766","-238","118","0","0" +"2057","51","26","1","2803","-280","118","0","0" +"2058","51","27","1","2825","-287","110","0","0" +"2059","52","0","1","964","1041","106","0","0" +"2060","52","1","1","978","1052","111","0","0" +"2061","52","2","1","1005","1053","122","0","0" +"2062","52","3","1","1040","1021","144","0","0" +"2063","52","4","1","1023","966","157","0","0" +"2064","52","5","1","958","926","170","0","0" +"2065","52","6","1","929","831","182","0","0" +"2066","52","7","1","930","690","187","0","0" +"2067","52","8","1","877","505","181","0","0" +"2068","52","9","1","756","362","164","0","0" +"2069","52","10","1","543","270","141","0","0" +"2070","52","11","1","350","258","135","0","0" +"2071","52","12","1","200","153","128","0","0" +"2072","52","13","1","105","-66","99","0","0" +"2073","52","14","1","37","-364","78","0","0" +"2074","52","15","1","-51","-603","60","0","0" +"2075","52","16","1","-213","-793","56","0","0" +"2076","52","17","1","-247","-1099","65","0","0" +"2077","52","18","1","-346","-1270","103","0","0" +"2078","52","19","1","-490","-1301","163","0","0" +"2079","52","20","1","-625","-1282","220","0","0" +"2379","52","21","1","-667","-1265","224","0","0" +"6793","52","22","1","-771","-1213","184","0","0" +"6794","52","23","1","-870","-1135","148","0","0" +"6795","52","24","1","-922","-1031","88","0","0" +"6796","52","25","1","-852","-883","92","0","0" +"6797","52","26","1","-775","-801","108","0","0" +"6798","52","27","1","-667","-530","138","0","0" +"6799","52","28","1","-690","-246","175","0","0" +"6800","52","29","1","-804","-90","176","0","0" +"6801","52","30","1","-1064","-11","184","0","0" +"6802","52","31","1","-1174","25","181","0","0" +"9485","52","32","1","-1196","30","179","0","0" +"2080","53","0","1","-1197","30","179","0","0" +"2081","53","1","1","-1200","30","180","0","0" +"2082","53","2","1","-1221","38","183","0","0" +"2083","53","3","1","-1289","64","184","0","0" +"2084","53","4","1","-1335","137","170","0","0" +"2085","53","5","1","-1307","217","154","0","0" +"2086","53","6","1","-1159","208","136","0","0" +"2087","53","7","1","-930","-68","85","0","0" +"2088","53","8","1","-854","-661","32","0","0" +"2089","53","9","1","-983","-841","14","0","0" +"2090","53","10","1","-997","-1063","70","0","0" +"2091","53","11","1","-852","-1186","167","0","0" +"2092","53","12","1","-646","-1261","221","0","0" +"2093","53","13","1","-426","-1177","218","0","0" +"2094","53","14","1","-266","-1099","110","0","0" +"2095","53","15","1","-218","-944","61","0","0" +"2096","53","16","1","-258","-629","95","0","0" +"2097","53","17","1","-94","-344","75","0","0" +"2098","53","18","1","45","-160","59","0","0" +"2099","53","19","1","145","28","83","0","0" +"2486","53","20","1","218","244","98","0","0" +"6810","53","21","1","383","347","126","0","0" +"6811","53","22","1","669","436","137","0","0" +"6812","53","23","1","885","650","158","0","0" +"6813","53","24","1","941","828","161","0","0" +"6814","53","25","1","916","923","145","0","0" +"6815","53","26","1","927","991","122","0","0" +"9517","53","27","1","966","1040","105","0","0" +"2103","54","0","1","-5408","-2416","91","0","0" +"2104","54","1","1","-5415","-2412","95","0","0" +"2105","54","2","1","-5450","-2404","100","0","0" +"2106","54","3","1","-5499","-2365","100","0","0" +"2107","54","4","1","-5499","-2266","100","0","0" +"2108","54","5","1","-5275","-2076","104","0","0" +"2109","54","6","1","-5086","-1972","124","0","0" +"2110","54","7","1","-4668","-1842","122","0","0" +"2111","54","8","1","-4335","-1882","106","0","0" +"2112","54","9","1","-4159","-1899","115","0","0" +"2113","54","10","1","-4072","-1876","126","0","0" +"2114","54","11","1","-3952","-1886","142","0","0" +"2115","54","12","1","-3665","-1899","139","0","0" +"2116","54","13","1","-3328","-1793","133","0","0" +"2117","54","14","1","-3112","-1991","129","0","0" +"2118","54","15","1","-2737","-1953","133","0","0" +"2119","54","16","1","-2544","-1819","134","0","0" +"2120","54","17","1","-2460","-1532","122","0","0" +"2121","54","18","1","-2465","-1299","10","0","0" +"2122","54","19","1","-2425","-1200","0","0","0" +"2123","54","20","1","-2416","-1033","-1","0","0" +"2124","54","21","1","-2402","-831","40","0","0" +"2125","54","22","1","-2396","-615","-1","0","0" +"2126","54","23","1","-2366","-467","18","0","0" +"2127","54","24","1","-2332","-364","37","0","0" +"2128","54","25","1","-2166","-167","29","0","0" +"2129","54","26","1","-1817","93","44","0","0" +"2130","54","27","1","-1440","263","56","0","0" +"2131","54","28","1","-1180","213","138","0","0" +"2132","54","29","1","-1075","135","171","0","0" +"2133","54","30","1","-1101","29","171","0","0" +"2466","54","31","1","-1166","26","180","0","0" +"2467","54","32","1","-1196","30","180","0","0" +"2135","55","0","1","-1198","30","180","0","0" +"2136","55","1","1","-1200","30","181","0","0" +"2137","55","2","1","-1214","34","183","0","0" +"2138","55","3","1","-1263","51","183","0","0" +"2139","55","4","1","-1309","6","164","0","0" +"2140","55","5","1","-1381","-198","69","0","0" +"2141","55","6","1","-1733","-267","6","0","0" +"2142","55","7","1","-1965","-367","9","0","0" +"2143","55","8","1","-2251","-382","35","0","0" +"2144","55","9","1","-2368","-471","29","0","0" +"2145","55","10","1","-2386","-665","4","0","0" +"2146","55","11","1","-2328","-830","8","0","0" +"2147","55","12","1","-2493","-1036","8","0","0" +"2148","55","13","1","-2523","-1303","11","0","0" +"2149","55","14","1","-2460","-1533","123","0","0" +"2150","55","15","1","-2460","-1650","135","0","0" +"2151","55","16","1","-2518","-1787","100","0","0" +"2152","55","17","1","-2737","-1955","106","0","0" +"2153","55","18","1","-2932","-2012","99","0","0" +"2154","55","19","1","-3130","-2048","100","0","0" +"2155","55","20","1","-3425","-2008","112","0","0" +"2156","55","21","1","-3753","-2053","99","0","0" +"2157","55","22","1","-3993","-2038","105","0","0" +"2158","55","23","1","-4134","-1966","100","0","0" +"2457","55","24","1","-4227","-1894","99","0","0" +"2458","55","25","1","-4383","-1890","95","0","0" +"2459","55","26","1","-4523","-1854","102","0","0" +"2460","55","27","1","-4623","-1875","93","0","0" +"2461","55","28","1","-4772","-1978","35","0","0" +"2462","55","29","1","-4864","-2109","28","0","0" +"2463","55","30","1","-5049","-2214","9","0","0" +"2464","55","31","1","-5151","-2281","11","0","0" +"2465","55","32","1","-5208","-2309","92","0","0" +"2487","55","33","1","-5271","-2345","113","0","0" +"3418","55","34","1","-5387","-2401","97","0","0" +"9516","55","35","1","-5407","-2416","94","0","0" +"2181","56","0","1","-3826","-4519","11","0","0" +"2182","56","1","1","-3829","-4522","13","0","0" +"2183","56","2","1","-3888","-4565","20","0","0" +"2184","56","3","1","-3953","-4527","26","0","0" +"2185","56","4","1","-3987","-4430","48","0","0" +"2186","56","5","1","-4028","-3938","115","0","0" +"2187","56","6","1","-3888","-3619","124","0","0" +"2188","56","7","1","-3679","-2878","124","0","0" +"2189","56","8","1","-3653","-2363","127","0","0" +"2190","56","9","1","-4080","-2226","129","0","0" +"2191","56","10","1","-4193","-1907","123","0","0" +"2192","56","11","1","-4401","-1875","118","0","0" +"2193","56","12","1","-4500","-1867","118","0","0" +"2194","56","13","1","-4593","-1792","109","0","0" +"2195","56","14","1","-4633","-1682","55","0","0" +"2196","56","15","1","-4662","-1577","-5","0","0" +"2197","56","16","1","-4647","-1446","-30","0","0" +"2198","56","17","1","-4608","-1315","-28","0","0" +"2199","56","18","1","-4524","-1182","-36","0","0" +"2200","56","19","1","-4512","-1132","-41","0","0" +"2201","56","20","1","-4449","-1109","-33","0","0" +"2202","56","21","1","-4384","-1044","-32","0","0" +"2203","56","22","1","-4365","-966","-32","0","0" +"2259","56","23","1","-4366","-833","-25","0","0" +"2260","56","24","1","-4389","-774","-18","0","0" +"2263","56","25","1","-4440","-761","-18","0","0" +"2264","56","26","1","-4491","-775","-35","0","0" +"2159","57","0","1","-4491","-775","-38","0","0" +"2160","57","1","1","-4492","-778","-37","0","0" +"2161","57","2","1","-4502","-806","-31","0","0" +"2162","57","3","1","-4552","-849","-31","0","0" +"2163","57","4","1","-4677","-931","-33","0","0" +"2164","57","5","1","-4733","-1000","-32","0","0" +"2165","57","6","1","-4740","-1128","-23","0","0" +"2166","57","7","1","-4766","-1199","-34","0","0" +"2167","57","8","1","-4770","-1322","-32","0","0" +"2168","57","9","1","-4866","-1443","-31","0","0" +"2169","57","10","1","-4818","-1595","-21","0","0" +"2170","57","11","1","-4781","-1783","-20","0","0" +"2171","57","12","1","-4602","-1812","105","0","0" +"2172","57","13","1","-4432","-1875","130","0","0" +"2173","57","14","1","-4223","-1909","120","0","0" +"2174","57","15","1","-3952","-2117","132","0","0" +"2175","57","16","1","-3765","-2299","139","0","0" +"2176","57","17","1","-3716","-2458","139","0","0" +"2177","57","18","1","-3694","-2801","124","0","0" +"2178","57","19","1","-3654","-3198","131","0","0" +"2179","57","20","1","-3583","-3472","104","0","0" +"2180","57","21","1","-3512","-3860","62","0","0" +"2254","57","22","1","-3519","-4096","51","0","0" +"2255","57","23","1","-3576","-4240","50","0","0" +"2256","57","24","1","-3793","-4378","61","0","0" +"2257","57","25","1","-3818","-4484","33","0","0" +"2258","57","26","1","-3825","-4516","13","0","0" +"2204","58","0","1","2678","1463","235","0","0" +"2205","58","1","1","2675","1476","236","0","0" +"2206","58","2","1","2670","1501","242","0","0" +"2207","58","3","1","2663","1569","275","0","0" +"2208","58","4","1","2659","1672","328","0","0" +"2209","58","5","1","2703","1743","356","0","0" +"2210","58","6","1","2713","1865","387","0","0" +"2211","58","7","1","2739","2113","275","0","0" +"2212","58","8","1","2812","2248","231","0","0" +"2213","58","9","1","2866","2349","212","0","0" +"2214","58","10","1","2916","2449","156","0","0" +"2215","58","11","1","3099","2463","162","0","0" +"2216","58","12","1","3204","2364","99","0","0" +"2217","58","13","1","3399","2099","91","0","0" +"2218","58","14","1","3521","1758","84","0","0" +"2219","58","15","1","3742","1515","42","0","0" +"2266","58","16","1","4088","1277","15","0","0" +"2267","58","17","1","4592","1137","17","0","0" +"2268","58","18","1","4918","980","11","0","0" +"3608","58","19","1","5394","787","47","0","0" +"3609","58","20","1","6069","572","33","0","0" +"3610","58","21","1","6300","522","26","0","0" +"3611","58","22","1","6341","556","16","0","0" +"2220","59","0","1","6342","558","17","0","0" +"2221","59","1","1","6354","598","27","0","0" +"2222","59","2","1","6315","643","35","0","0" +"2223","59","3","1","6166","638","35","0","0" +"2224","59","4","1","5620","692","11","0","0" +"2225","59","5","1","5072","827","8","0","0" +"2226","59","6","1","4721","911","16","0","0" +"2227","59","7","1","4295","1064","45","0","0" +"2228","59","8","1","4150","1323","30","0","0" +"2229","59","9","1","3881","1562","13","0","0" +"2230","59","10","1","3484","1792","12","0","0" +"2231","59","11","1","3360","2142","52","0","0" +"2232","59","12","1","3204","2342","78","0","0" +"2233","59","13","1","3102","2470","170","0","0" +"2234","59","14","1","2910","2445","161","0","0" +"2235","59","15","1","2868","2338","227","0","0" +"2236","59","16","1","2773","2174","261","0","0" +"2338","59","17","1","2740","1929","368","0","0" +"2339","59","18","1","2729","1865","385","0","0" +"2340","59","19","1","2710","1794","390","0","0" +"2341","59","20","1","2694","1669","383","0","0" +"3576","59","21","1","2659","1606","338","0","0" +"3577","59","22","1","2681","1462","236","0","0" +"3436","82","0","0","-14442","507","28","0","0" +"3437","82","1","0","-14440","513","29","0","0" +"3438","82","2","0","-14419","547","36","0","0" +"3439","82","3","0","-14376","595","39","0","0" +"3440","82","4","0","-14234","666","56","0","0" +"3441","82","5","0","-14000","699","69","0","0" +"3442","82","6","0","-13735","699","104","0","0" +"3443","82","7","0","-13481","640","104","0","0" +"3444","82","8","0","-13066","400","116","0","0" +"3445","82","9","0","-12733","266","116","0","0" +"3446","82","10","0","-12339","4","113","0","0" +"3447","82","11","0","-11792","-122","113","0","0" +"3448","82","12","0","-11330","-320","129","0","0" +"3449","82","13","0","-11028","-704","129","0","0" +"3450","82","14","0","-10733","-1099","139","0","0" +"3451","82","15","0","-10567","-1311","132","0","0" +"3452","82","16","0","-10447","-1496","147","0","0" +"3453","82","17","0","-10463","-1853","175","0","0" +"3454","82","18","0","-10465","-2000","163","0","0" +"3455","82","19","0","-10586","-2236","175","0","0" +"3456","82","20","0","-10525","-2485","117","0","0" +"3457","82","21","0","-10434","-2787","85","0","0" +"3458","82","22","0","-10308","-3017","85","0","0" +"3459","82","23","0","-10237","-3251","87","0","0" +"3460","82","24","0","-10281","-3420","81","0","0" +"3461","82","25","0","-10403","-3413","75","0","0" +"3462","82","26","0","-10420","-3328","49","0","0" +"3463","82","27","0","-10434","-3291","30","0","0" +"3464","82","28","0","-10456","-3280","24","0","0" +"3582","101","0","1","6342","559","17","0","0" +"3583","101","1","1","6347","566","18","0","0" +"3584","101","2","1","6364","606","29","0","0" +"3585","101","3","1","6389","706","60","0","0" +"3586","101","4","1","6566","659","59","0","0" +"3587","101","5","1","6690","542","57","0","0" +"3588","101","6","1","6937","541","72","0","0" +"3589","101","7","1","7122","661","74","0","0" +"3590","101","8","1","7366","716","82","0","0" +"3591","101","9","1","7744","746","87","0","0" +"3592","101","10","1","8059","768","96","0","0" +"3593","101","11","1","8271","824","84","0","0" +"3594","101","12","1","8495","832","58","0","0" +"9073","101","13","1","8595","839","31","0","0" +"9074","101","14","1","8643","840","27","0","0" +"3595","102","0","1","8643","841","25","0","0" +"3596","102","1","1","8635","839","27","0","0" +"3597","102","2","1","8601","833","39","0","0" +"3598","102","3","1","8531","827","63","0","0" +"3599","102","4","1","8359","834","95","0","0" +"3600","102","5","1","7986","864","99","0","0" +"3601","102","6","1","7680","861","108","0","0" +"3602","102","7","1","7301","784","111","0","0" +"3603","102","8","1","7005","719","91","0","0" +"3604","102","9","1","6659","805","84","0","0" +"3605","102","10","1","6518","553","56","0","0" +"3606","102","11","1","6422","484","36","0","0" +"3607","102","12","1","6354","516","26","0","0" +"9447","102","13","1","6340","557","17","0","0" +"3617","121","0","0","-10458","-3279","22","0","0" +"3618","121","1","0","-10456","-3277","22","0","0" +"3619","121","2","0","-10450","-3269","25","0","0" +"3620","121","3","0","-10446","-3257","28","0","0" +"3621","121","4","0","-10461","-3225","36","0","0" +"3622","121","5","0","-10460","-3147","71","0","0" +"3623","121","6","0","-10463","-3051","90","0","0" +"3624","121","7","0","-10488","-2832","90","0","0" +"3625","121","8","0","-10575","-2411","132","0","0" +"3626","121","9","0","-10584","-2273","171","0","0" +"3627","121","10","0","-10499","-2033","185","0","0" +"3628","121","11","0","-10439","-1733","178","0","0" +"3629","121","12","0","-10448","-1566","163","0","0" +"3630","121","13","0","-10501","-1394","146","0","0" +"3631","121","14","0","-10690","-794","150","0","0" +"3632","121","15","0","-11232","-382","136","0","0" +"3633","121","16","0","-11499","-250","118","0","0" +"3634","121","17","0","-11726","-175","100","0","0" +"3635","121","18","0","-12018","-65","84","0","0" +"3636","121","19","0","-12331","74","63","0","0" +"3637","121","20","0","-12500","166","22","0","0" +"3638","121","21","0","-12731","361","16","0","0" +"3639","121","22","0","-13177","749","14","0","0" +"3640","121","23","0","-13485","811","15","0","0" +"3641","121","24","0","-13766","732","18","0","0" +"3642","121","25","0","-14249","659","33","0","0" +"3643","121","26","0","-14362","593","35","0","0" +"3644","121","27","0","-14422","536","28","0","0" +"3645","121","28","0","-14447","511","29","0","0" +"3788","141","0","1","139","1325","194","0","0" +"3789","141","1","1","137","1327","195","0","0" +"3790","141","2","1","130","1332","198","0","0" +"3791","141","3","1","108","1351","205","0","0" +"3792","141","4","1","56","1375","197","0","0" +"3793","141","5","1","-23","1369","174","0","0" +"3794","141","6","1","-144","1337","153","0","0" +"3795","141","7","1","-376","1344","145","0","0" +"3796","141","8","1","-515","1402","98","0","0" +"3797","141","9","1","-712","1374","101","0","0" +"3798","141","10","1","-851","1310","115","0","0" +"3799","141","11","1","-1060","1311","102","0","0" +"3800","141","12","1","-1219","1311","107","0","0" +"3801","141","13","1","-1310","1248","113","0","0" +"3802","141","14","1","-1402","1083","106","0","0" +"3803","141","15","1","-1586","942","98","0","0" +"3804","141","16","1","-1766","931","124","0","0" +"3805","141","17","1","-1926","904","144","0","0" +"3806","141","18","1","-2001","870","181","0","0" +"3807","141","19","1","-2082","837","198","0","0" +"3808","141","20","1","-2157","780","195","0","0" +"3809","141","21","1","-2197","720","159","0","0" +"3810","141","22","1","-2207","657","141","0","0" +"3811","141","23","1","-2189","617","146","0","0" +"3812","141","24","1","-2193","583","147","0","0" +"3813","141","25","1","-2219","550","147","0","0" +"3814","141","26","1","-2219","508","153","0","0" +"3815","141","27","1","-2219","427","194","0","0" +"3816","141","28","1","-2228","354","191","0","0" +"3817","141","29","1","-2288","220","99","0","0" +"3818","141","30","1","-2437","138","65","0","0" +"3819","141","31","1","-2568","44","37","0","0" +"3820","141","32","1","-2702","-111","38","0","0" +"3821","141","33","1","-2698","-201","36","0","0" +"3822","141","34","1","-2699","-268","32","0","0" +"3823","141","35","1","-2683","-355","33","0","0" +"3824","141","36","1","-2683","-560","35","0","0" +"3825","141","37","1","-2732","-732","29","0","0" +"3826","141","38","1","-2735","-876","32","0","0" +"3827","141","39","1","-2696","-977","27","0","0" +"3828","141","40","1","-2658","-1147","27","0","0" +"3829","141","41","1","-2571","-1266","31","0","0" +"3830","141","42","1","-2499","-1433","85","0","0" +"3831","141","43","1","-2466","-1590","139","0","0" +"3832","141","44","1","-2540","-1739","151","0","0" +"3833","141","45","1","-2665","-1921","109","0","0" +"3834","141","46","1","-2753","-2041","158","0","0" +"3835","141","47","1","-2911","-2107","113","0","0" +"3836","141","48","1","-3101","-2139","107","0","0" +"3837","141","49","1","-3303","-2230","119","0","0" +"3838","141","50","1","-3447","-2250","107","0","0" +"3839","141","51","1","-3552","-2435","100","0","0" +"3840","141","52","1","-3553","-2581","97","0","0" +"3841","141","53","1","-3578","-2752","81","0","0" +"3842","141","54","1","-3529","-2946","78","0","0" +"3843","141","55","1","-3498","-3126","85","0","0" +"3844","141","56","1","-3377","-3269","83","0","0" +"3845","141","57","1","-3240","-3502","39","0","0" +"3846","141","58","1","-3292","-3713","43","0","0" +"3847","141","59","1","-3441","-3907","26","0","0" +"3848","141","60","1","-3570","-4111","19","0","0" +"3849","141","61","1","-3595","-4234","28","0","0" +"3850","141","62","1","-3663","-4295","14","0","0" +"3851","141","63","1","-3698","-4320","35","0","0" +"3852","141","64","1","-3752","-4372","19","0","0" +"3853","141","65","1","-3800","-4402","19","0","0" +"9412","141","66","1","-3811","-4491","29","0","0" +"9413","141","67","1","-3831","-4521","14","0","0" +"3716","161","0","1","-1767","3263","6","0","0" +"3717","161","1","1","-1771","3265","6","0","0" +"3718","161","2","1","-1823","3271","11","0","0" +"3719","161","3","1","-1906","3151","51","0","0" +"3720","161","4","1","-1918","2926","82","0","0" +"3721","161","5","1","-1847","2637","83","0","0" +"3722","161","6","1","-1895","2380","97","0","0" +"3723","161","7","1","-1809","2086","92","0","0" +"3724","161","8","1","-1868","1797","88","0","0" +"3725","161","9","1","-1794","1564","79","0","0" +"3726","161","10","1","-1565","1425","90","0","0" +"3727","161","11","1","-1520","1274","99","0","0" +"3728","161","12","1","-1552","1153","98","0","0" +"3729","161","13","1","-1615","1060","98","0","0" +"3730","161","14","1","-1689","1001","96","0","0" +"3731","161","15","1","-1745","1003","97","0","0" +"3732","161","16","1","-1860","962","113","0","0" +"3733","161","17","1","-1967","896","163","0","0" +"3734","161","18","1","-2045","845","197","0","0" +"3735","161","19","1","-2150","836","199","0","0" +"3736","161","20","1","-2203","827","186","0","0" +"3737","161","21","1","-2219","804","170","0","0" +"3738","161","22","1","-2204","751","170","0","0" +"3739","161","23","1","-2211","666","166","0","0" +"3740","161","24","1","-2253","587","173","0","0" +"3741","161","25","1","-2211","504","159","0","0" +"3742","161","26","1","-2203","437","174","0","0" +"3743","161","27","1","-2206","372","191","0","0" +"3744","161","28","1","-2207","316","175","0","0" +"3745","161","29","1","-2119","240","106","0","0" +"3746","161","30","1","-2007","197","78","0","0" +"3747","161","31","1","-1792","158","37","0","0" +"3748","161","32","1","-1648","99","23","0","0" +"3749","161","33","1","-1450","168","40","0","0" +"3750","161","34","1","-1303","219","106","0","0" +"6571","161","35","1","-1130","245","138","0","0" +"6572","161","36","1","-1006","110","171","0","0" +"6573","161","37","1","-1084","17","186","0","0" +"6574","161","38","1","-1163","21","185","0","0" +"8895","161","39","1","-1197","29","180","0","0" +"3756","162","0","1","-1197","29","180","0","0" +"3757","162","1","1","-1200","30","180","0","0" +"3758","162","2","1","-1227","42","182","0","0" +"3759","162","3","1","-1276","83","172","0","0" +"3760","162","4","1","-1333","108","146","0","0" +"3761","162","5","1","-1385","105","79","0","0" +"3762","162","6","1","-1526","71","18","0","0" +"3763","162","7","1","-1650","66","3","0","0" +"3764","162","8","1","-1732","102","10","0","0" +"3765","162","9","1","-1885","84","39","0","0" +"3766","162","10","1","-2032","43","37","0","0" +"3767","162","11","1","-2137","65","54","0","0" +"3768","162","12","1","-2265","167","94","0","0" +"3769","162","13","1","-2268","309","162","0","0" +"3770","162","14","1","-2232","389","193","0","0" +"3771","162","15","1","-2210","515","183","0","0" +"3772","162","16","1","-2190","607","170","0","0" +"3773","162","17","1","-2206","666","168","0","0" +"3774","162","18","1","-2197","723","168","0","0" +"3775","162","19","1","-2150","782","166","0","0" +"3776","162","20","1","-2107","830","174","0","0" +"3777","162","21","1","-2029","853","169","0","0" +"3778","162","22","1","-1972","901","161","0","0" +"3779","162","23","1","-1837","1074","111","0","0" +"3780","162","24","1","-1711","1160","108","0","0" +"3781","162","25","1","-1651","1310","109","0","0" +"3782","162","26","1","-1707","1491","90","0","0" +"3783","162","27","1","-1640","1815","76","0","0" +"3784","162","28","1","-1816","2051","85","0","0" +"3785","162","29","1","-1758","2394","138","0","0" +"3786","162","30","1","-1732","2797","171","0","0" +"3787","162","31","1","-1752","3015","127","0","0" +"6577","162","32","1","-1685","3120","83","0","0" +"6578","162","33","1","-1686","3209","43","0","0" +"6579","162","34","1","-1732","3256","21","0","0" +"9513","162","35","1","-1767","3263","6","0","0" +"3854","163","0","1","-3827","-4517","11","0","0" +"3855","163","1","1","-3839","-4527","13","0","0" +"3856","163","2","1","-3858","-4550","17","0","0" +"3857","163","3","1","-3879","-4613","30","0","0" +"3858","163","4","1","-3813","-4674","39","0","0" +"3859","163","5","1","-3718","-4676","35","0","0" +"3860","163","6","1","-3599","-4561","23","0","0" +"3861","163","7","1","-3527","-4439","25","0","0" +"3862","163","8","1","-3403","-4337","13","0","0" +"3863","163","9","1","-3186","-4256","12","0","0" +"3864","163","10","1","-3006","-4240","9","0","0" +"3865","163","11","1","-2819","-4232","11","0","0" +"3866","163","12","1","-2603","-4168","14","0","0" +"3867","163","13","1","-2366","-4092","22","0","0" +"3868","163","14","1","-2193","-3883","24","0","0" +"3869","163","15","1","-2029","-3761","41","0","0" +"3870","163","16","1","-1951","-3604","63","0","0" +"3871","163","17","1","-1922","-3376","79","0","0" +"3872","163","18","1","-1807","-3126","95","0","0" +"3873","163","19","1","-1900","-2835","108","0","0" +"3874","163","20","1","-2108","-2694","107","0","0" +"3875","163","21","1","-2188","-2436","112","0","0" +"3876","163","22","1","-2188","-2157","112","0","0" +"3877","163","23","1","-2161","-1893","106","0","0" +"3878","163","24","1","-2232","-1726","119","0","0" +"3879","163","25","1","-2325","-1546","93","0","0" +"3896","163","26","1","-2327","-1214","16","0","0" +"3897","163","27","1","-2395","-945","4","0","0" +"3898","163","28","1","-2619","-661","16","0","0" +"3899","163","29","1","-2666","-385","21","0","0" +"3900","163","30","1","-2616","-133","25","0","0" +"3901","163","31","1","-2416","20","45","0","0" +"3902","163","32","1","-2278","253","125","0","0" +"3903","163","33","1","-2208","355","189","0","0" +"3904","163","34","1","-2211","512","180","0","0" +"3905","163","35","1","-2187","604","167","0","0" +"3906","163","36","1","-2208","691","171","0","0" +"3907","163","37","1","-2172","771","183","0","0" +"3908","163","38","1","-2120","827","181","0","0" +"3909","163","39","1","-2052","850","176","0","0" +"3910","163","40","1","-1926","920","160","0","0" +"3911","163","41","1","-1769","988","112","0","0" +"3912","163","42","1","-1673","1001","104","0","0" +"3913","163","43","1","-1574","974","98","0","0" +"3914","163","44","1","-1439","987","101","0","0" +"3915","163","45","1","-1345","931","99","0","0" +"3916","163","46","1","-1207","936","118","0","0" +"3917","163","47","1","-957","898","114","0","0" +"3918","163","48","1","-788","965","113","0","0" +"3919","163","49","1","-639","992","114","0","0" +"3920","163","50","1","-470","947","107","0","0" +"3921","163","51","1","-322","977","103","0","0" +"3922","163","52","1","-175","1062","102","0","0" +"3923","163","53","1","-49","1200","143","0","0" +"3924","163","54","1","115","1222","214","0","0" +"3925","163","55","1","157","1294","205","0","0" +"3926","163","56","1","136","1323","194","0","0" +"3936","181","0","1","6341","558","17","0","0" +"3937","181","1","1","6352","609","32","0","0" +"3938","181","2","1","6302","642","40","0","0" +"3939","181","3","1","6150","624","38","0","0" +"3940","181","4","1","5499","566","37","0","0" +"3941","181","5","1","5183","610","33","0","0" +"3942","181","6","1","4822","631","25","0","0" +"3943","181","7","1","4659","709","32","0","0" +"3944","181","8","1","4431","933","32","0","0" +"3945","181","9","1","4233","1033","46","0","0" +"3946","181","10","1","3966","877","46","0","0" +"3947","181","11","1","3702","836","29","0","0" +"3948","181","12","1","3547","733","26","0","0" +"3949","181","13","1","3502","532","20","0","0" +"3950","181","14","1","3400","400","17","0","0" +"3951","181","15","1","3311","300","17","0","0" +"3952","181","16","1","3266","223","26","0","0" +"3953","181","17","1","3125","124","62","0","0" +"3954","181","18","1","2997","154","79","0","0" +"3955","181","19","1","2889","160","107","0","0" +"3956","181","20","1","2820","133","107","0","0" +"3957","181","21","1","2819","0","107","0","0" +"3958","181","22","1","2707","-100","112","0","0" +"3959","181","23","1","2639","-249","118","0","0" +"3960","181","24","1","2573","-431","125","0","0" +"3961","181","25","1","2495","-566","134","0","0" +"3962","181","26","1","2459","-666","139","0","0" +"3965","181","27","1","2487","-799","146","0","0" +"3966","181","28","1","2518","-926","146","0","0" +"3967","181","29","1","2507","-1066","140","0","0" +"3968","181","30","1","2456","-1233","137","0","0" +"3969","181","31","1","2446","-1301","142","0","0" +"3970","181","32","1","2377","-1499","133","0","0" +"3971","181","33","1","2343","-1634","135","0","0" +"3972","181","34","1","2261","-1733","124","0","0" +"3973","181","35","1","2133","-1809","112","0","0" +"3974","181","36","1","2026","-1890","111","0","0" +"3975","181","37","1","1964","-2011","109","0","0" +"3976","181","38","1","1930","-2158","103","0","0" +"3977","181","39","1","1797","-2177","105","0","0" +"3978","181","40","1","1634","-2204","105","0","0" +"3979","181","41","1","1466","-2246","105","0","0" +"3980","181","42","1","1367","-2261","110","0","0" +"3981","181","43","1","1258","-2297","160","0","0" +"3982","181","44","1","1078","-2399","177","0","0" +"3983","181","45","1","766","-2466","177","0","0" +"3984","181","46","1","333","-2699","177","0","0" +"3985","181","47","1","-533","-3066","159","0","0" +"3986","181","48","1","-1300","-3533","159","0","0" +"3987","181","49","1","-1533","-3620","159","0","0" +"3988","181","50","1","-2166","-3841","75","0","0" +"3989","181","51","1","-2787","-4171","65","0","0" +"3990","181","52","1","-3200","-4300","36","0","0" +"3991","181","53","1","-3562","-4499","39","0","0" +"3992","181","54","1","-3680","-4624","38","0","0" +"3993","181","55","1","-3783","-4660","27","0","0" +"3994","181","56","1","-3846","-4613","17","0","0" +"3998","181","57","1","-3855","-4546","15","0","0" +"3999","181","58","1","-3826","-4515","13","0","0" +"4324","182","0","1","-3826","-4517","11","0","0" +"4323","182","1","1","-3840","-4532","13","0","0" +"4322","182","2","1","-3856","-4568","17","0","0" +"4321","182","3","1","-3843","-4613","24","0","0" +"4320","182","4","1","-3782","-4646","41","0","0" +"4319","182","5","1","-3689","-4618","46","0","0" +"4318","182","6","1","-3562","-4491","49","0","0" +"4316","182","7","1","-3399","-4350","39","0","0" +"4315","182","8","1","-3151","-4242","30","0","0" +"4314","182","9","1","-2957","-4224","31","0","0" +"4313","182","10","1","-2713","-4240","43","0","0" +"4312","182","11","1","-2399","-4099","42","0","0" +"4311","182","12","1","-2065","-3934","49","0","0" +"4310","182","13","1","-1608","-3766","103","0","0" +"4309","182","14","1","-1277","-3576","150","0","0" +"4308","182","15","1","-1000","-3366","151","0","0" +"4307","182","16","1","-531","-3063","159","0","0" +"4306","182","17","1","-86","-2867","173","0","0" +"4305","182","18","1","532","-2599","179","0","0" +"4304","182","19","1","1066","-2366","207","0","0" +"4303","182","20","1","1225","-2309","184","0","0" +"4302","182","21","1","1399","-2256","105","0","0" +"4301","182","22","1","1573","-2221","109","0","0" +"4300","182","23","1","1833","-2173","109","0","0" +"4299","182","24","1","1940","-2145","109","0","0" +"4298","182","25","1","1960","-2013","111","0","0" +"4297","182","26","1","2014","-1899","113","0","0" +"4296","182","27","1","2098","-1835","114","0","0" +"4295","182","28","1","2196","-1766","120","0","0" +"4294","182","29","1","2320","-1676","135","0","0" +"4293","182","30","1","2360","-1566","135","0","0" +"4292","182","31","1","2373","-1499","132","0","0" +"4291","182","32","1","2410","-1399","132","0","0" +"4290","182","33","1","2447","-1302","142","0","0" +"4289","182","34","1","2474","-1200","141","0","0" +"4288","182","35","1","2503","-1066","140","0","0" +"4287","182","36","1","2519","-933","144","0","0" +"4286","182","37","1","2480","-799","145","0","0" +"4285","182","38","1","2453","-633","131","0","0" +"4284","182","39","1","2441","-533","127","0","0" +"4283","182","40","1","2505","-481","127","0","0" +"4282","182","41","1","2599","-421","127","0","0" +"4281","182","42","1","2643","-291","120","0","0" +"4280","182","43","1","2731","-169","118","0","0" +"4279","182","44","1","2811","32","108","0","0" +"4278","182","45","1","2833","153","119","0","0" +"4277","182","46","1","2943","158","100","0","0" +"4276","182","47","1","3098","149","95","0","0" +"4275","182","48","1","3273","161","57","0","0" +"4274","182","49","1","3387","233","21","0","0" +"4273","182","50","1","3450","301","21","0","0" +"4272","182","51","1","3466","474","17","0","0" +"4271","182","52","1","3532","549","21","0","0" +"4270","182","53","1","3628","595","25","0","0" +"4269","182","54","1","3805","732","29","0","0" +"4268","182","55","1","4076","960","44","0","0" +"4267","182","56","1","4326","987","64","0","0" +"4266","182","57","1","4719","806","24","0","0" +"4265","182","58","1","5168","666","13","0","0" +"4264","182","59","1","5429","649","13","0","0" +"4263","182","60","1","5738","578","10","0","0" +"4262","182","61","1","5991","502","14","0","0" +"4261","182","62","1","6150","501","24","0","0" +"4260","182","63","1","6297","521","26","0","0" +"4259","182","64","1","6341","556","17","0","0" +"4476","201","0","1","-7224","-3733","9","0","0" +"4477","201","1","1","-7224","-3737","10","0","0" +"4478","201","2","1","-7224","-3752","12","0","0" +"4496","201","3","1","-7225","-3842","24","0","0" +"4497","201","4","1","-7178","-3977","25","0","0" +"4498","201","5","1","-7107","-4161","30","0","0" +"4499","201","6","1","-7054","-4372","17","0","0" +"4500","201","7","1","-7010","-4584","18","0","0" +"4501","201","8","1","-6924","-4711","15","0","0" +"4502","201","9","1","-6789","-4792","13","0","0" +"4503","201","10","1","-6732","-4859","2","0","0" +"4504","201","11","1","-6595","-5073","3","0","0" +"4505","201","12","1","-6204","-5053","8","0","0" +"4506","201","13","1","-5371","-5221","6","0","0" +"4507","201","14","1","-4816","-5265","9","0","0" +"4508","201","15","1","-4499","-5129","64","0","0" +"4509","201","16","1","-4299","-4970","58","0","0" +"4510","201","17","1","-4067","-4797","63","0","0" +"4511","201","18","1","-3947","-4658","26","0","0" +"4512","201","19","1","-3873","-4573","20","0","0" +"4513","201","20","1","-3836","-4527","15","0","0" +"4514","201","21","1","-3826","-4515","11","0","0" +"4515","222","0","1","-3826","-4517","11","0","0" +"4516","222","1","1","-3834","-4527","13","0","0" +"4517","222","2","1","-3851","-4541","15","0","0" +"4518","222","3","1","-3892","-4558","16","0","0" +"4519","222","4","1","-3971","-4539","23","0","0" +"4520","222","5","1","-4048","-4575","21","0","0" +"4521","222","6","1","-4123","-4685","11","0","0" +"4522","222","7","1","-4252","-4864","9","0","0" +"4523","222","8","1","-4517","-5029","9","0","0" +"4524","222","9","1","-5068","-5133","8","0","0" +"4525","222","10","1","-5734","-5100","11","0","0" +"4526","222","11","1","-6197","-5167","10","0","0" +"4527","222","12","1","-6566","-5066","10","0","0" +"4528","222","13","1","-6705","-4903","11","0","0" +"4529","222","14","1","-6827","-4820","35","0","0" +"4530","222","15","1","-6962","-4764","19","0","0" +"4531","222","16","1","-7068","-4620","17","0","0" +"4532","222","17","1","-7108","-4424","21","0","0" +"4533","222","18","1","-7247","-4329","17","0","0" +"4534","222","19","1","-7329","-4195","19","0","0" +"4535","222","20","1","-7330","-3958","15","0","0" +"4536","222","21","1","-7287","-3828","16","0","0" +"4537","222","22","1","-7233","-3766","13","0","0" +"9504","222","23","1","-7224","-3734","9","0","0" +"4538","223","0","1","-7049","-3780","11","0","0" +"4539","223","1","1","-7067","-3789","17","0","0" +"4540","223","2","1","-7084","-3814","24","0","0" +"4541","223","3","1","-7099","-3860","30","0","0" +"4542","223","4","1","-7084","-3960","30","0","0" +"4543","223","5","1","-6993","-4082","33","0","0" +"4544","223","6","1","-6930","-4203","60","0","0" +"4545","223","7","1","-6958","-4461","21","0","0" +"4546","223","8","1","-6866","-4695","39","0","0" +"4547","223","9","1","-6713","-4837","10","0","0" +"4548","223","10","1","-6432","-4933","15","0","0" +"4549","223","11","1","-6099","-5001","7","0","0" +"4550","223","12","1","-5501","-5031","11","0","0" +"4551","223","13","1","-4899","-5035","9","0","0" +"4552","223","14","1","-4467","-5234","49","0","0" +"4553","223","15","1","-4132","-5265","62","0","0" +"4554","223","16","1","-3666","-5230","67","0","0" +"4555","223","17","1","-3466","-5097","64","0","0" +"4556","223","18","1","-3229","-4808","4","0","0" +"4557","223","19","1","-2952","-4697","11","0","0" +"4558","223","20","1","-2763","-4715","38","0","0" +"4559","223","21","1","-2631","-4731","12","0","0" +"4560","223","22","1","-2389","-4807","6","0","0" +"4561","223","23","1","-2148","-4922","11","0","0" +"4562","223","24","1","-1866","-5094","18","0","0" +"4563","223","25","1","-1644","-5164","7","0","0" +"4564","223","26","1","-1539","-5246","16","0","0" +"4565","223","27","1","-1435","-5295","9","0","0" +"4566","223","28","1","-1338","-5295","5","0","0" +"4567","223","29","1","-1234","-5241","6","0","0" +"4568","223","30","1","-1115","-5203","7","0","0" +"4569","223","31","1","-951","-5234","10","0","0" +"4570","223","32","1","-803","-5262","10","0","0" +"4571","223","33","1","-612","-5248","17","0","0" +"4572","223","34","1","-490","-5237","36","0","0" +"4573","223","35","1","-383","-5198","56","0","0" +"4574","223","36","1","-321","-5085","49","0","0" +"4575","223","37","1","-189","-5034","30","0","0" +"4576","223","38","1","-80","-4920","25","0","0" +"4577","223","39","1","55","-4843","26","0","0" +"4578","223","40","1","179","-4795","26","0","0" +"4579","223","41","1","242","-4751","29","0","0" +"4580","223","42","1","331","-4733","17","0","0" +"4581","223","43","1","400","-4728","14","0","0" +"4582","223","44","1","470","-4733","10","0","0" +"4583","223","45","1","516","-4728","5","0","0" +"4584","223","46","1","558","-4736","1","0","0" +"4585","223","47","1","640","-4725","-2","0","0" +"4586","223","48","1","721","-4662","1","0","0" +"4587","223","49","1","815","-4538","11","0","0" +"4588","223","50","1","932","-4499","15","0","0" +"4589","223","51","1","1045","-4433","23","0","0" +"4590","223","52","1","1178","-4411","30","0","0" +"4591","223","53","1","1285","-4392","31","0","0" +"4592","223","54","1","1381","-4370","31","0","0" +"4593","223","55","1","1416","-4364","31","0","0" +"4594","223","56","1","1431","-4373","31","0","0" +"4595","223","57","1","1435","-4416","33","0","0" +"4596","223","58","1","1453","-4421","33","0","0" +"4597","223","59","1","1491","-4417","32","0","0" +"4598","223","60","1","1535","-4423","34","0","0" +"4599","223","61","1","1604","-4421","41","0","0" +"4600","223","62","1","1675","-4386","62","0","0" +"4601","223","63","1","1698","-4342","64","0","0" +"4602","223","64","1","1692","-4318","64","0","0" +"4603","223","65","1","1678","-4314","62","0","0" +"4604","224","0","1","1679","-4314","62","0","0" +"4605","224","1","1","1676","-4314","62","0","0" +"4606","224","2","1","1667","-4312","64","0","0" +"4607","224","3","1","1644","-4312","66","0","0" +"4608","224","4","1","1600","-4340","48","0","0" +"4609","224","5","1","1549","-4387","33","0","0" +"4610","224","6","1","1511","-4410","32","0","0" +"4611","224","7","1","1475","-4417","32","0","0" +"4612","224","8","1","1445","-4420","33","0","0" +"4613","224","9","1","1434","-4408","33","0","0" +"4614","224","10","1","1430","-4371","33","0","0" +"4615","224","11","1","1416","-4364","33","0","0" +"4616","224","12","1","1385","-4368","33","0","0" +"4617","224","13","1","1310","-4388","37","0","0" +"4618","224","14","1","1265","-4459","41","0","0" +"4619","224","15","1","1233","-4599","36","0","0" +"4620","224","16","1","1228","-4691","28","0","0" +"4621","224","17","1","1177","-4788","28","0","0" +"4622","224","18","1","1129","-4848","36","0","0" +"4623","224","19","1","1040","-4920","32","0","0" +"4624","224","20","1","912","-4968","26","0","0" +"4625","224","21","1","757","-4957","24","0","0" +"4626","224","22","1","632","-4866","35","0","0" +"4627","224","23","1","535","-4853","56","0","0" +"4628","224","24","1","343","-4900","26","0","0" +"4629","224","25","1","148","-4864","46","0","0" +"4630","224","26","1","-3","-4764","31","0","0" +"4631","224","27","1","-194","-4780","32","0","0" +"4632","224","28","1","-332","-4826","45","0","0" +"4633","224","29","1","-487","-4813","45","0","0" +"4634","224","30","1","-604","-4712","52","0","0" +"4635","224","31","1","-627","-4589","83","0","0" +"4636","224","32","1","-589","-4489","80","0","0" +"4637","224","33","1","-638","-4372","56","0","0" +"4638","224","34","1","-703","-4306","52","0","0" +"4639","224","35","1","-755","-4186","46","0","0" +"4640","224","36","1","-803","-4124","74","0","0" +"4641","224","37","1","-865","-3991","69","0","0" +"4642","224","38","1","-945","-3838","74","0","0" +"4643","224","39","1","-1036","-3716","99","0","0" +"4644","224","40","1","-1130","-3663","114","0","0" +"4645","224","41","1","-1248","-3646","102","0","0" +"4646","224","42","1","-1402","-3712","107","0","0" +"4647","224","43","1","-1606","-3649","106","0","0" +"4648","224","44","1","-1714","-3544","122","0","0" +"4649","224","45","1","-1784","-3350","108","0","0" +"4650","224","46","1","-1815","-3191","99","0","0" +"4651","224","47","1","-1832","-3003","98","0","0" +"4652","224","48","1","-1902","-2815","102","0","0" +"4653","224","49","1","-2114","-2653","105","0","0" +"4654","224","50","1","-2231","-2465","107","0","0" +"4655","224","51","1","-2453","-2335","101","0","0" +"4656","224","52","1","-2627","-2282","101","0","0" +"4657","224","53","1","-2904","-2132","103","0","0" +"4658","224","54","1","-3113","-2051","101","0","0" +"4659","224","55","1","-3371","-2014","107","0","0" +"4660","224","56","1","-3600","-2019","106","0","0" +"4661","224","57","1","-3832","-2066","106","0","0" +"4662","224","58","1","-4067","-2013","103","0","0" +"4663","224","59","1","-4201","-1925","112","0","0" +"4664","224","60","1","-4432","-1866","103","0","0" +"4665","224","61","1","-4621","-1875","94","0","0" +"4666","224","62","1","-4721","-1924","22","0","0" +"4667","224","63","1","-4839","-2038","8","0","0" +"4668","224","64","1","-4911","-2023","3","0","0" +"4669","224","65","1","-5066","-2055","-31","0","0" +"4670","224","66","1","-5134","-2037","-32","0","0" +"4671","224","67","1","-5223","-2101","-16","0","0" +"4672","224","68","1","-5297","-2194","-7","0","0" +"4673","224","69","1","-5367","-2321","11","0","0" +"4674","224","70","1","-5437","-2337","57","0","0" +"4675","224","71","1","-5536","-2390","59","0","0" +"4676","224","72","1","-5561","-2489","2","0","0" +"4677","224","73","1","-5512","-2633","-16","0","0" +"4678","224","74","1","-5540","-2730","-22","0","0" +"4679","224","75","1","-5561","-2842","-31","0","0" +"4680","224","76","1","-5618","-2933","-20","0","0" +"4681","224","77","1","-5610","-3066","-31","0","0" +"4682","224","78","1","-5582","-3177","-24","0","0" +"4683","224","79","1","-5607","-3265","-30","0","0" +"4684","224","80","1","-5599","-3339","-20","0","0" +"4685","224","81","1","-5638","-3465","-37","0","0" +"4686","224","82","1","-5830","-3681","-44","0","0" +"4687","224","83","1","-6003","-3800","-43","0","0" +"4688","224","84","1","-6214","-3875","-39","0","0" +"4689","224","85","1","-6392","-3885","-50","0","0" +"4690","224","86","1","-6602","-3798","-22","0","0" +"4691","224","87","1","-6807","-3787","65","0","0" +"4692","224","88","1","-6877","-3779","82","0","0" +"4693","224","89","1","-6955","-3724","59","0","0" +"9426","224","90","1","-6998","-3758","41","0","0" +"9428","224","91","1","-7048","-3780","11","0","0" +"4694","225","0","1","-4373","3338","13","0","0" +"4695","225","1","1","-4395","3329","18","0","0" +"4696","225","2","1","-4433","3292","25","0","0" +"4697","225","3","1","-4434","3205","30","0","0" +"4698","225","4","1","-4433","3061","25","0","0" +"4699","225","5","1","-4415","2810","72","0","0" +"4700","225","6","1","-4357","2528","91","0","0" +"4701","225","7","1","-4150","2212","97","0","0" +"4702","225","8","1","-4049","2110","120","0","0" +"4703","225","9","1","-3981","2090","141","0","0" +"4704","225","10","1","-3897","2073","128","0","0" +"4705","225","11","1","-3837","2016","104","0","0" +"4706","225","12","1","-3721","1982","87","0","0" +"4707","225","13","1","-3603","1959","86","0","0" +"4708","225","14","1","-3428","1916","63","0","0" +"4709","225","15","1","-3299","1928","89","0","0" +"4710","225","16","1","-3233","1886","78","0","0" +"4711","225","17","1","-3097","1953","70","0","0" +"4712","225","18","1","-2913","2092","65","0","0" +"4713","225","19","1","-2781","2161","62","0","0" +"4714","225","20","1","-2613","2191","104","0","0" +"4715","225","21","1","-2495","2304","132","0","0" +"4716","225","22","1","-2384","2360","126","0","0" +"4717","225","23","1","-2287","2384","94","0","0" +"4718","225","24","1","-2197","2433","69","0","0" +"4719","225","25","1","-2041","2471","73","0","0" +"4720","225","26","1","-1853","2461","78","0","0" +"4721","225","27","1","-1720","2439","109","0","0" +"4722","225","28","1","-1534","2406","111","0","0" +"4723","225","29","1","-1394","2418","108","0","0" +"4724","225","30","1","-1283","2387","112","0","0" +"4725","225","31","1","-1123","2380","109","0","0" +"4726","225","32","1","-928","2358","105","0","0" +"4727","225","33","1","-723","2280","96","0","0" +"4728","225","34","1","-584","2159","105","0","0" +"4729","225","35","1","-448","2004","119","0","0" +"4730","225","36","1","-352","1907","148","0","0" +"4731","225","37","1","-266","1821","174","0","0" +"4732","225","38","1","-149","1755","145","0","0" +"4733","225","39","1","2","1734","127","0","0" +"4734","225","40","1","196","1827","109","0","0" +"4735","225","41","1","352","1806","82","0","0" +"4736","225","42","1","503","1742","53","0","0" +"4737","225","43","1","676","1637","43","0","0" +"4738","225","44","1","847","1581","50","0","0" +"4739","225","45","1","1042","1542","66","0","0" +"4740","225","46","1","1161","1520","91","0","0" +"4741","225","47","1","1286","1442","126","0","0" +"4742","225","48","1","1438","1403","168","0","0" +"4743","225","49","1","1581","1302","222","0","0" +"4744","225","50","1","1717","1327","213","0","0" +"4745","225","51","1","1806","1376","197","0","0" +"4746","225","52","1","1906","1429","257","0","0" +"4747","225","53","1","2043","1415","359","0","0" +"4748","225","54","1","2279","1371","385","0","0" +"4749","225","55","1","2471","1423","376","0","0" +"4750","225","56","1","2660","1571","375","0","0" +"4751","225","57","1","2718","1663","374","0","0" +"4752","225","58","1","2707","1791","383","0","0" +"4753","225","59","1","2741","1905","374","0","0" +"4754","225","60","1","2752","2094","277","0","0" +"4755","225","61","1","2800","2241","236","0","0" +"4756","225","62","1","2877","2357","222","0","0" +"4757","225","63","1","2917","2448","166","0","0" +"4758","225","64","1","3011","2472","144","0","0" +"4759","225","65","1","3095","2404","125","0","0" +"4760","225","66","1","3167","2334","95","0","0" +"4761","225","67","1","3274","2231","22","0","0" +"4762","225","68","1","3433","2092","8","0","0" +"4763","225","69","1","3683","1746","11","0","0" +"4764","225","70","1","3992","1524","19","0","0" +"4765","225","71","1","4377","1186","18","0","0" +"4766","225","72","1","4682","982","11","0","0" +"4767","225","73","1","5173","778","14","0","0" +"4768","225","74","1","5542","714","16","0","0" +"4769","225","75","1","5868","693","10","0","0" +"4770","225","76","1","6059","607","15","0","0" +"4771","225","77","1","6202","547","25","0","0" +"4772","225","78","1","6313","519","23","0","0" +"4773","225","79","1","6342","560","17","0","0" +"4786","226","0","1","6342","558","17","0","0" +"4787","226","1","1","6352","615","29","0","0" +"4788","226","2","1","6291","657","36","0","0" +"4789","226","3","1","6001","667","30","0","0" +"4790","226","4","1","5137","773","28","0","0" +"4791","226","5","1","4506","1106","11","0","0" +"4792","226","6","1","4285","1333","8","0","0" +"4793","226","7","1","4047","1457","7","0","0" +"4794","226","8","1","3694","1566","8","0","0" +"4795","226","9","1","3496","1753","19","0","0" +"4796","226","10","1","3376","1933","26","0","0" +"4797","226","11","1","3264","2230","55","0","0" +"4798","226","12","1","3074","2432","130","0","0" +"4799","226","13","1","2909","2463","197","0","0" +"4800","226","14","1","2827","2354","247","0","0" +"4801","226","15","1","2749","2172","277","0","0" +"4802","226","16","1","2735","1995","339","0","0" +"4803","226","17","1","2715","1828","392","0","0" +"4804","226","18","1","2665","1661","392","0","0" +"4805","226","19","1","2421","1423","396","0","0" +"4806","226","20","1","2094","1401","381","0","0" +"4807","226","21","1","1875","1388","251","0","0" +"4808","226","22","1","1586","1300","226","0","0" +"4809","226","23","1","1477","1383","183","0","0" +"4810","226","24","1","1263","1431","115","0","0" +"4811","226","25","1","1176","1530","107","0","0" +"4812","226","26","1","843","1587","76","0","0" +"4813","226","27","1","592","1718","62","0","0" +"4814","226","28","1","393","1789","77","0","0" +"4815","226","29","1","245","1828","109","0","0" +"4816","226","30","1","22","1708","116","0","0" +"4817","226","31","1","-170","1673","130","0","0" +"4818","226","32","1","-355","1673","154","0","0" +"4819","226","33","1","-541","1701","124","0","0" +"4820","226","34","1","-710","1684","101","0","0" +"4821","226","35","1","-817","1705","98","0","0" +"4822","226","36","1","-1037","1694","79","0","0" +"4823","226","37","1","-1231","1836","78","0","0" +"4824","226","38","1","-1459","1812","83","0","0" +"4825","226","39","1","-1744","1851","76","0","0" +"4826","226","40","1","-1922","2005","75","0","0" +"4827","226","41","1","-2101","2160","92","0","0" +"4828","226","42","1","-2125","2297","86","0","0" +"4829","226","43","1","-2212","2381","81","0","0" +"4830","226","44","1","-2389","2362","128","0","0" +"4831","226","45","1","-2514","2298","140","0","0" +"4832","226","46","1","-2672","2297","94","0","0" +"4833","226","47","1","-2882","2299","67","0","0" +"4834","226","48","1","-3064","2252","67","0","0" +"4835","226","49","1","-3300","2199","47","0","0" +"4836","226","50","1","-3425","2148","52","0","0" +"4837","226","51","1","-3621","2154","86","0","0" +"4838","226","52","1","-3756","2136","115","0","0" +"4839","226","53","1","-3852","2109","123","0","0" +"4840","226","54","1","-3896","2082","125","0","0" +"4841","226","55","1","-3949","2082","123","0","0" +"4842","226","56","1","-3982","2089","141","0","0" +"4843","226","57","1","-4057","2118","119","0","0" +"4844","226","58","1","-4123","2179","76","0","0" +"4845","226","59","1","-4177","2321","15","0","0" +"4846","226","60","1","-4181","2499","14","0","0" +"4847","226","61","1","-4128","2713","12","0","0" +"4848","226","62","1","-4076","2909","30","0","0" +"4849","226","63","1","-4070","3136","60","0","0" +"4850","226","64","1","-4112","3307","80","0","0" +"4851","226","65","1","-4217","3375","68","0","0" +"4852","226","66","1","-4341","3358","29","0","0" +"4853","226","67","1","-4375","3337","13","0","0" +"4885","227","0","1","-4419","199","26","0","0" +"4886","227","1","1","-4422","197","26","0","0" +"4887","227","2","1","-4426","195","27","0","0" +"4888","227","3","1","-4453","168","33","0","0" +"4889","227","4","1","-4406","83","45","0","0" +"4890","227","5","1","-4386","4","81","0","0" +"4891","227","6","1","-4264","-123","70","0","0" +"4892","227","7","1","-4250","-249","65","0","0" +"4893","227","8","1","-4302","-353","58","0","0" +"4894","227","9","1","-4295","-441","41","0","0" +"4895","227","10","1","-4348","-565","16","0","0" +"4896","227","11","1","-4269","-684","-5","0","0" +"4897","227","12","1","-4325","-822","-38","0","0" +"4898","227","13","1","-4432","-944","-32","0","0" +"4899","227","14","1","-4540","-1020","-41","0","0" +"4900","227","15","1","-4598","-1076","-21","0","0" +"4901","227","16","1","-4627","-1159","-23","0","0" +"4902","227","17","1","-4608","-1282","-16","0","0" +"4903","227","18","1","-4633","-1399","-17","0","0" +"4904","227","19","1","-4767","-1511","-15","0","0" +"4905","227","20","1","-4808","-1638","-27","0","0" +"4906","227","21","1","-4801","-1751","-33","0","0" +"4907","227","22","1","-4745","-1799","11","0","0" +"4908","227","23","1","-4618","-1818","97","0","0" +"4909","227","24","1","-4429","-1888","108","0","0" +"4910","227","25","1","-4123","-1898","106","0","0" +"4911","227","26","1","-3864","-1781","104","0","0" +"4912","227","27","1","-3652","-1807","136","0","0" +"4913","227","28","1","-3430","-1932","117","0","0" +"4914","227","29","1","-3140","-2028","109","0","0" +"4915","227","30","1","-2905","-2028","110","0","0" +"4916","227","31","1","-2707","-1952","110","0","0" +"4917","227","32","1","-2532","-1831","102","0","0" +"4918","227","33","1","-2381","-1643","98","0","0" +"4919","227","34","1","-2334","-1396","40","0","0" +"4920","227","35","1","-2228","-1128","44","0","0" +"4921","227","36","1","-1935","-932","50","0","0" +"4922","227","37","1","-1707","-766","49","0","0" +"4923","227","38","1","-1333","-723","40","0","0" +"4924","227","39","1","-986","-572","62","0","0" +"4925","227","40","1","-854","-345","116","0","0" +"4926","227","41","1","-932","-134","157","0","0" +"4927","227","42","1","-1040","-21","181","0","0" +"4928","227","43","1","-1119","13","185","0","0" +"9155","227","44","1","-1167","24","183","0","0" +"9156","227","45","1","-1197","30","178","0","0" +"4929","228","0","1","-1197","30","178","0","0" +"4930","228","1","1","-1200","30","179","0","0" +"4931","228","2","1","-1226","41","182","0","0" +"4932","228","3","1","-1269","87","168","0","0" +"4933","228","4","1","-1326","121","146","0","0" +"4934","228","5","1","-1429","200","81","0","0" +"4935","228","6","1","-1577","159","34","0","0" +"4936","228","7","1","-1707","-34","10","0","0" +"4937","228","8","1","-1817","-438","6","0","0" +"4938","228","9","1","-2117","-689","0","0","0" +"4939","228","10","1","-2336","-939","0","0","0" +"4940","228","11","1","-2412","-1152","23","0","0" +"4941","228","12","1","-2365","-1435","63","0","0" +"4942","228","13","1","-2368","-1670","102","0","0" +"4943","228","14","1","-2472","-1880","108","0","0" +"4944","228","15","1","-2756","-2050","154","0","0" +"4945","228","16","1","-3158","-2046","109","0","0" +"4946","228","17","1","-3566","-1950","105","0","0" +"4947","228","18","1","-3797","-1960","103","0","0" +"4948","228","19","1","-3936","-2025","116","0","0" +"4949","228","20","1","-4248","-1906","109","0","0" +"4950","228","21","1","-4465","-1871","98","0","0" +"4951","228","22","1","-4588","-1789","95","0","0" +"4952","228","23","1","-4633","-1686","23","0","0" +"4953","228","24","1","-4669","-1521","-13","0","0" +"4954","228","25","1","-4752","-1410","-30","0","0" +"4955","228","26","1","-4777","-1267","-30","0","0" +"4956","228","27","1","-4755","-1162","-28","0","0" +"4957","228","28","1","-4684","-1100","-36","0","0" +"4958","228","29","1","-4590","-1066","-38","0","0" +"4959","228","30","1","-4529","-994","-42","0","0" +"4960","228","31","1","-4447","-961","-46","0","0" +"4961","228","32","1","-4390","-859","-39","0","0" +"4962","228","33","1","-4292","-794","-37","0","0" +"4963","228","34","1","-4273","-692","-7","0","0" +"4964","228","35","1","-4352","-581","11","0","0" +"4965","228","36","1","-4299","-438","45","0","0" +"4966","228","37","1","-4299","-338","59","0","0" +"4967","228","38","1","-4251","-269","65","0","0" +"4968","228","39","1","-4255","-135","69","0","0" +"4969","228","40","1","-4281","-49","71","0","0" +"4970","228","41","1","-4260","45","76","0","0" +"4971","228","42","1","-4280","139","75","0","0" +"4972","228","43","1","-4389","165","38","0","0" +"9512","228","44","1","-4420","198","26","0","0" +"4973","229","0","0","285","-2005","195","0","0" +"4974","229","1","0","283","-2009","195","0","0" +"4975","229","2","0","257","-2036","201","0","0" +"4976","229","3","0","182","-2075","201","0","0" +"4977","229","4","0","45","-1956","197","0","0" +"4978","229","5","0","-134","-1766","177","0","0" +"4979","229","6","0","-230","-1702","159","0","0" +"4980","229","7","0","-309","-1563","139","0","0" +"4981","229","8","0","-293","-1394","95","0","0" +"4982","229","9","0","-352","-1130","76","0","0" +"4983","229","10","0","-512","-906","79","0","0" +"4984","229","11","0","-595","-607","49","0","0" +"4985","229","12","0","-694","-554","40","0","0" +"9046","229","13","0","-713","-516","27","0","0" +"4986","230","0","0","-714","-515","26","0","0" +"4987","230","1","0","-714","-518","27","0","0" +"4988","230","2","0","-716","-533","29","0","0" +"4989","230","3","0","-728","-593","34","0","0" +"4990","230","4","0","-741","-679","19","0","0" +"4991","230","5","0","-692","-787","46","0","0" +"4992","230","6","0","-696","-893","46","0","0" +"4993","230","7","0","-598","-948","60","0","0" +"4994","230","8","0","-564","-1059","70","0","0" +"4995","230","9","0","-593","-1199","70","0","0" +"4996","230","10","0","-549","-1339","100","0","0" +"4997","230","11","0","-439","-1420","115","0","0" +"4998","230","12","0","-463","-1527","102","0","0" +"4999","230","13","0","-404","-1585","92","0","0" +"5000","230","14","0","-286","-1634","129","0","0" +"5001","230","15","0","-220","-1723","154","0","0" +"5002","230","16","0","-137","-1759","183","0","0" +"5003","230","17","0","-2","-1911","207","0","0" +"5004","230","18","0","73","-1980","211","0","0" +"5005","230","19","0","149","-1951","206","0","0" +"9461","230","20","0","237","-2016","206","0","0" +"9462","230","21","0","283","-2002","195","0","0" +"5036","241","0","1","-1370","-4266","0","0","0" +"5037","241","1","1","-1264","-4139","0","0","0" +"5038","241","2","1","-1212","-4019","0","0","0" +"5039","241","3","1","-1154","-3887","0","0","0" +"5040","241","4","1","-1105","-3824","0","0","0" +"5041","241","5","1","-1058","-3818","0","0","0" +"5042","241","6","1","-1005","-3841","0","2","60" +"5043","241","7","1","-956","-3877","0","0","0" +"5044","241","8","1","-935","-3917","0","0","0" +"5045","241","9","1","-950","-3981","0","0","0" +"5046","241","10","1","-1037","-4093","0","0","0" +"5047","241","11","1","-1149","-4232","0","0","0" +"5048","241","12","0","-14338","1081","0","0","0" +"5049","241","13","0","-14366","867","0","0","0" +"5050","241","14","0","-14351","733","0","0","0" +"5051","241","15","0","-14342","635","0","0","0" +"5052","241","16","0","-14277","582","0","2","60" +"5053","241","17","0","-14171","578","0","0","0" +"5054","241","18","0","-14088","626","0","0","0" +"5055","241","19","0","-14052","732","0","0","0" +"5056","241","20","0","-14122","852","0","0","0" +"5057","241","21","0","-14267","964","0","0","0" +"5080","242","0","1","3661","-4390","114","0","0" +"5081","242","1","1","3664","-4380","116","0","0" +"5082","242","2","1","3671","-4334","127","0","0" +"5083","242","3","1","3630","-4256","135","0","0" +"5084","242","4","1","3537","-4187","145","0","0" +"5085","242","5","1","3381","-4124","155","0","0" +"5086","242","6","1","3006","-3992","155","0","0" +"5087","242","7","1","2634","-3809","172","0","0" +"5088","242","8","1","2181","-3676","103","0","0" +"5089","242","9","1","1812","-3747","82","0","0" +"5090","242","10","1","1700","-3848","100","0","0" +"5091","242","11","1","1715","-4038","79","0","0" +"5092","242","12","1","1619","-4148","64","0","0" +"5093","242","13","1","1599","-4258","69","0","0" +"5094","242","14","1","1594","-4358","70","0","0" +"5095","242","15","1","1622","-4404","63","0","0" +"5096","242","16","1","1674","-4402","63","0","0" +"5097","242","17","1","1706","-4364","66","0","0" +"5098","242","18","1","1703","-4327","67","0","0" +"5099","242","19","1","1677","-4314","62","0","0" +"5112","243","0","1","1678","-4315","62","0","0" +"5113","243","1","1","1676","-4313","62","0","0" +"5114","243","2","1","1658","-4300","63","0","0" +"5115","243","3","1","1626","-4273","65","0","0" +"5116","243","4","1","1579","-4200","63","0","0" +"5117","243","5","1","1602","-4127","62","0","0" +"5118","243","6","1","1716","-4078","69","0","0" +"5119","243","7","1","1734","-4006","81","0","0" +"5120","243","8","1","1697","-3916","95","0","0" +"5121","243","9","1","1703","-3830","93","0","0" +"5122","243","10","1","1886","-3717","100","0","0" +"5123","243","11","1","2376","-3708","94","0","0" +"5124","243","12","1","2791","-3800","107","0","0" +"5125","243","13","1","2948","-3989","154","0","0" +"5126","243","14","1","3125","-4207","160","0","0" +"5127","243","15","1","3305","-4283","148","0","0" +"5128","243","16","1","3460","-4339","147","0","0" +"5129","243","17","1","3559","-4366","129","0","0" +"5130","243","18","1","3618","-4379","119","0","0" +"5131","243","19","1","3661","-4390","115","0","0" +"5135","244","0","0","-11112","-3435","80","0","0" +"5136","244","1","0","-11110","-3437","80","0","0" +"5137","244","2","0","-11105","-3447","83","0","0" +"5138","244","3","0","-11084","-3467","85","0","0" +"5139","244","4","0","-11006","-3463","90","0","0" +"5140","244","5","0","-10958","-3439","95","0","0" +"5141","244","6","0","-10926","-3397","103","0","0" +"5142","244","7","0","-10902","-3257","73","0","0" +"5143","244","8","0","-10898","-3178","74","0","0" +"5144","244","9","0","-10873","-3047","60","0","0" +"5145","244","10","0","-10751","-2985","66","0","0" +"5146","244","11","0","-10605","-2968","61","0","0" +"5147","244","12","0","-10545","-2917","74","0","0" +"5148","244","13","0","-10474","-2829","81","0","0" +"5149","244","14","0","-10463","-2733","90","0","0" +"5150","244","15","0","-10530","-2634","90","0","0" +"5151","244","16","0","-10605","-2521","123","0","0" +"5152","244","17","0","-10592","-2397","144","0","0" +"5160","244","18","0","-10589","-2276","181","0","0" +"5161","244","19","0","-10570","-2147","171","0","0" +"5162","244","20","0","-10462","-2065","166","0","0" +"5163","244","21","0","-10427","-1978","163","0","0" +"5164","244","22","0","-10440","-1899","114","0","0" +"5165","244","23","0","-10432","-1798","105","0","0" +"5166","244","24","0","-10461","-1728","89","0","0" +"5167","244","25","0","-10459","-1585","79","0","0" +"5168","244","26","0","-10406","-1488","142","0","0" +"5169","244","27","0","-10541","-1317","137","0","0" +"5170","244","28","0","-10433","-1184","128","0","0" +"5171","244","29","0","-10049","-1144","96","0","0" +"5172","244","30","0","-9953","-1059","70","0","0" +"5173","244","31","0","-9949","-904","34","0","0" +"5174","244","32","0","-9902","-763","31","0","0" +"5175","244","33","0","-9723","-708","50","0","0" +"5176","244","34","0","-9641","-636","59","0","0" +"5177","244","35","0","-9596","-497","62","0","0" +"5178","244","36","0","-9619","-363","64","0","0" +"5179","244","37","0","-9595","-230","64","0","0" +"5180","244","38","0","-9544","-137","66","0","0" +"5181","244","39","0","-9476","-128","82","0","0" +"5182","244","40","0","-9317","-121","142","0","0" +"5183","244","41","0","-9155","161","143","0","0" +"5184","244","42","0","-9125","282","162","0","0" +"5185","244","43","0","-9041","382","152","0","0" +"5186","244","44","0","-8922","420","137","0","0" +"5187","244","45","0","-8834","479","112","0","0" +"5191","245","0","0","-8850","498","110","0","0" +"5192","245","1","0","-8852","496","110","0","0" +"5193","245","2","0","-8879","478","113","0","0" +"5194","245","3","0","-8924","462","117","0","0" +"5195","245","4","0","-9028","495","136","0","0" +"5196","245","5","0","-9102","477","145","0","0" +"5197","245","6","0","-9230","414","161","0","0" +"5198","245","7","0","-9264","267","148","0","0" +"5199","245","8","0","-9486","28","149","0","0" +"5200","245","9","0","-9522","-387","148","0","0" +"5201","245","10","0","-9663","-527","128","0","0" +"5202","245","11","0","-9805","-605","120","0","0" +"5203","245","12","0","-9942","-869","101","0","0" +"5204","245","13","0","-9988","-1091","112","0","0" +"5205","245","14","0","-10377","-1253","117","0","0" +"5206","245","15","0","-10449","-1412","154","0","0" +"5207","245","16","0","-10431","-1822","157","0","0" +"5208","245","17","0","-10429","-1997","116","0","0" +"5209","245","18","0","-10494","-2049","112","0","0" +"5210","245","19","0","-10586","-2139","103","0","0" +"5211","245","20","0","-10573","-2244","101","0","0" +"5212","245","21","0","-10549","-2356","100","0","0" +"5213","245","22","0","-10501","-2564","120","0","0" +"5214","245","23","0","-10493","-2767","89","0","0" +"5215","245","24","0","-10608","-2948","82","0","0" +"5216","245","25","0","-10848","-3023","72","0","0" +"5217","245","26","0","-11031","-3153","73","0","0" +"5218","245","27","0","-11131","-3287","84","0","0" +"5219","245","28","0","-11153","-3389","90","0","0" +"5220","245","29","0","-11131","-3429","86","0","0" +"9477","245","30","0","-11112","-3435","80","0","0" +"5221","248","0","0","-4822","-1157","503","0","0" +"5222","248","1","0","-4830","-1124","513","0","0" +"5223","248","2","0","-4839","-1077","543","0","0" +"5224","248","3","0","-4867","-1047","550","0","0" +"5225","248","4","0","-4889","-1032","548","0","0" +"5226","248","5","0","-4921","-1008","544","0","0" +"5227","248","6","0","-4947","-972","540","0","0" +"5228","248","7","0","-4958","-914","543","0","0" +"5229","248","8","0","-4965","-901","543","0","0" +"5230","248","9","0","-4986","-874","527","0","0" +"5231","248","10","0","-5022","-831","507","0","0" +"5232","248","11","0","-5044","-796","507","0","0" +"5233","248","12","0","-5065","-752","496","0","0" +"5234","248","13","0","-5133","-744","483","0","0" +"5235","248","14","0","-5195","-746","483","0","0" +"5236","248","15","0","-5303","-788","492","0","0" +"5237","248","16","0","-5474","-994","460","0","0" +"5238","248","17","0","-5639","-1133","456","0","0" +"5239","248","18","0","-5681","-1300","455","0","0" +"5240","248","19","0","-5537","-1506","475","0","0" +"5241","248","20","0","-5417","-1588","521","0","0" +"5242","248","21","0","-5323","-1641","547","0","0" +"5243","248","22","0","-5004","-1663","558","0","0" +"5244","248","23","0","-4867","-1644","559","0","0" +"5245","248","24","0","-4569","-1640","559","0","0" +"5246","248","25","0","-4444","-1597","520","0","0" +"5247","248","26","0","-4358","-1500","474","0","0" +"5248","248","27","0","-4318","-1352","447","0","0" +"5249","248","28","0","-4262","-1223","407","0","0" +"5250","248","29","0","-4190","-1084","307","0","0" +"5251","248","30","0","-4125","-938","200","0","0" +"5252","248","31","0","-4035","-866","103","0","0" +"5253","248","32","0","-3833","-896","23","0","0" +"5254","248","33","0","-3772","-875","25","0","0" +"5255","248","34","0","-3732","-860","14","0","0" +"5256","248","35","0","-3703","-855","14","0","0" +"5257","248","36","0","-3650","-843","17","0","0" +"5258","248","37","0","-3533","-902","17","0","0" +"5259","248","38","0","-3416","-992","16","0","0" +"5260","248","39","0","-3197","-1056","18","0","0" +"5261","248","40","0","-3128","-1131","22","0","0" +"5262","248","41","0","-3041","-1205","20","0","0" +"5263","248","42","0","-2897","-1367","21","0","0" +"5264","248","43","0","-2707","-1447","20","0","0" +"5265","248","44","0","-2557","-1647","19","0","0" +"5266","248","45","0","-2078","-1632","68","0","0" +"5267","248","46","0","-1862","-1534","79","0","0" +"5268","248","47","0","-1806","-1411","84","0","0" +"5269","248","48","0","-1593","-1168","102","0","0" +"5270","248","49","0","-1400","-1050","19","0","0" +"5271","248","50","0","-1133","-797","17","0","0" +"5272","248","51","0","-966","-596","18","0","0" +"5273","248","52","0","-888","-535","15","0","0" +"5274","248","53","0","-780","-532","28","0","0" +"5275","248","54","0","-736","-524","34","0","0" +"5276","248","55","0","-714","-517","29","0","0" +"5277","248","56","0","-714","-515","26","0","0" +"5278","248","57","0","-723","-573","33","0","0" +"5279","248","58","0","-741","-679","19","0","0" +"5280","248","59","0","-692","-787","46","0","0" +"5281","248","60","0","-696","-893","46","0","0" +"5282","248","61","0","-598","-948","60","0","0" +"5283","248","62","0","-564","-1059","70","0","0" +"5284","248","63","0","-593","-1199","70","0","0" +"5285","248","64","0","-557","-1293","88","0","0" +"5286","248","65","0","-500","-1406","95","0","0" +"5287","248","66","0","-461","-1508","92","0","0" +"5288","248","67","0","-404","-1585","92","0","0" +"5289","248","68","0","-286","-1634","129","0","0" +"5290","248","69","0","-220","-1723","154","0","0" +"5291","248","70","0","-137","-1759","183","0","0" +"5292","248","71","0","-2","-1911","207","0","0" +"5293","248","72","0","73","-1980","211","0","0" +"5294","248","73","0","193","-2040","206","0","0" +"5295","248","74","0","251","-2036","205","0","0" +"5296","248","75","0","283","-2002","195","0","0" +"5309","249","0","0","-10632","1036","34","0","0" +"5310","249","1","0","-10630","1039","35","0","0" +"5311","249","2","0","-10618","1049","39","0","0" +"5312","249","3","0","-10606","1058","43","0","0" +"5313","249","4","0","-10576","1058","56","0","0" +"5314","249","5","0","-10527","1023","73","0","0" +"5315","249","6","0","-10485","940","76","0","0" +"5316","249","7","0","-10372","866","56","0","0" +"5317","249","8","0","-10300","799","61","0","0" +"5318","249","9","0","-10264","706","43","0","0" +"5319","249","10","0","-10218","629","35","0","0" +"5320","249","11","0","-10171","550","34","0","0" +"5321","249","12","0","-10109","464","37","0","0" +"5322","249","13","0","-10080","327","37","0","0" +"5323","249","14","0","-10131","152","37","0","0" +"5324","249","15","0","-10100","-1","37","0","0" +"5325","249","16","0","-10006","-154","37","0","0" +"5326","249","17","0","-9979","-356","37","0","0" +"5327","249","18","0","-9883","-536","37","0","0" +"5328","249","19","0","-9893","-692","37","0","0" +"5329","249","20","0","-9941","-820","37","0","0" +"5330","249","21","0","-9976","-1075","43","0","0" +"5331","249","22","0","-9987","-1329","43","0","0" +"5332","249","23","0","-9970","-1472","43","0","0" +"5333","249","24","0","-9874","-1596","38","0","0" +"5334","249","25","0","-9840","-1760","80","0","0" +"5335","249","26","0","-9643","-1852","70","0","0" +"5336","249","27","0","-9571","-1977","85","0","0" +"5337","249","28","0","-9553","-2100","112","0","0" +"5338","249","29","0","-9472","-2145","102","0","0" +"9449","249","30","0","-9427","-2204","82","0","0" +"9450","249","31","0","-9433","-2238","70","0","0" +"5342","250","0","0","-10632","1036","35","0","0" +"5343","250","1","0","-10628","1039","35","0","0" +"5344","250","2","0","-10616","1050","38","0","0" +"5345","250","3","0","-10601","1074","44","0","0" +"5346","250","4","0","-10622","1129","60","0","0" +"5347","250","5","0","-10691","1162","64","0","0" +"5348","250","6","0","-10776","1112","56","0","0" +"5349","250","7","0","-10850","938","56","0","0" +"5350","250","8","0","-10873","776","65","0","0" +"5351","250","9","0","-10859","595","99","0","0" +"5352","250","10","0","-10773","283","107","0","0" +"5353","250","11","0","-10782","-61","115","0","0" +"5354","250","12","0","-10918","-364","122","0","0" +"5355","250","13","0","-10933","-715","137","0","0" +"5356","250","14","0","-10791","-976","138","0","0" +"5357","250","15","0","-10611","-1150","90","0","0" +"5358","250","16","0","-10547","-1189","64","0","0" +"9451","250","17","0","-10512","-1225","51","0","0" +"9452","250","18","0","-10515","-1262","42","0","0" +"5451","252","0","0","-10515","-1260","42","0","0" +"5450","252","1","0","-10515","-1249","45","0","0" +"5449","252","2","0","-10514","-1239","49","0","0" +"5448","252","3","0","-10514","-1209","60","0","0" +"5447","252","4","0","-10521","-1157","86","0","0" +"5446","252","5","0","-10561","-1058","119","0","0" +"5445","252","6","0","-10628","-876","145","0","0" +"5444","252","7","0","-10828","-582","146","0","0" +"5443","252","8","0","-10808","-129","113","0","0" +"5442","252","9","0","-10532","227","107","0","0" +"5441","252","10","0","-10379","671","110","0","0" +"5440","252","11","0","-10356","922","92","0","0" +"5439","252","12","0","-10416","1061","74","0","0" +"5438","252","13","0","-10520","1087","68","0","0" +"5437","252","14","0","-10595","1062","53","0","0" +"9185","252","15","0","-10632","1035","35","0","0" +"5452","253","0","0","-987","-545","0","0","0" +"5453","253","1","0","-1009","-599","0","0","0" +"5454","253","2","0","-1089","-664","0","0","0" +"5455","253","3","0","-1279","-747","0","0","0" +"5456","253","4","0","-1454","-882","0","0","0" +"5457","253","5","0","-1619","-920","0","0","0" +"5458","253","6","0","-1793","-887","0","0","0" +"5459","253","7","0","-2030","-854","0","0","0" +"5460","253","8","0","-2456","-852","0","0","0" +"5461","253","9","0","-2694","-716","0","0","0" +"5462","253","10","0","-2773","-527","0","0","0" +"5463","253","11","0","-2926","-400","0","0","0" +"5464","253","12","0","-3187","-353","0","0","0" +"5465","253","13","0","-3453","-524","0","0","0" +"5466","253","14","0","-3627","-622","0","0","0" +"5467","253","15","0","-3748","-536","0","0","0" +"5468","253","16","0","-3678","-402","0","0","0" +"5469","253","17","0","-3534","-377","0","0","0" +"5470","253","18","0","-3292","-500","0","0","0" +"5471","253","19","0","-3073","-701","0","0","0" +"5472","253","20","0","-2758","-812","0","0","0" +"5473","253","21","0","-2455","-859","0","0","0" +"5474","253","22","0","-1975","-876","0","0","0" +"5475","253","23","0","-1829","-746","0","0","0" +"5476","253","24","0","-1697","-658","0","0","0" +"5477","253","25","0","-1557","-626","0","0","0" +"5478","253","26","0","-1410","-528","0","0","0" +"5479","253","27","0","-1265","-493","0","0","0" +"5480","253","28","0","-1139","-480","0","0","0" +"5481","253","29","0","-1035","-499","0","0","0" +"5511","254","0","0","-9433","-2238","70","0","0" +"5510","254","1","0","-9436","-2239","71","0","0" +"5509","254","2","0","-9450","-2243","76","0","0" +"5508","254","3","0","-9495","-2244","87","0","0" +"5507","254","4","0","-9533","-2219","105","0","0" +"5506","254","5","0","-9574","-2105","98","0","0" +"5505","254","6","0","-9562","-1971","87","0","0" +"5504","254","7","0","-9665","-1832","89","0","0" +"5503","254","8","0","-9842","-1767","87","0","0" +"5502","254","9","0","-9895","-1557","88","0","0" +"5501","254","10","0","-9977","-1366","82","0","0" +"5500","254","11","0","-9984","-1105","81","0","0" +"5499","254","12","0","-9899","-700","102","0","0" +"5498","254","13","0","-9978","-362","79","0","0" +"5497","254","14","0","-10014","-133","70","0","0" +"5496","254","15","0","-10129","70","48","0","0" +"5495","254","16","0","-10080","327","49","0","0" +"5494","254","17","0","-10172","539","46","0","0" +"5493","254","18","0","-10184","742","42","0","0" +"5492","254","19","0","-10248","924","60","0","0" +"5491","254","20","0","-10374","1052","52","0","0" +"5490","254","21","0","-10482","1095","61","0","0" +"5489","254","22","0","-10566","1084","54","0","0" +"9395","254","23","0","-10617","1050","43","0","0" +"9396","254","24","0","-10632","1036","34","0","0" +"5512","255","0","0","-10631","1036","35","0","0" +"5513","255","1","0","-10629","1038","35","0","0" +"5514","255","2","0","-10618","1051","39","0","0" +"5515","255","3","0","-10619","1067","44","0","0" +"5516","255","4","0","-10644","1136","62","0","0" +"5517","255","5","0","-10698","1187","71","0","0" +"5518","255","6","0","-10789","1326","43","0","0" +"5519","255","7","0","-10880","1395","52","0","0" +"5520","255","8","0","-10922","1518","58","0","0" +"5521","255","9","0","-10954","1719","56","0","0" +"5522","255","10","0","-11115","1844","57","0","0" +"5523","255","11","0","-11287","1865","49","0","0" +"5524","255","12","0","-11469","1741","36","0","0" +"5525","255","13","0","-11627","1599","29","0","0" +"5526","255","14","0","-11726","1431","18","0","0" +"5527","255","15","0","-11722","1227","18","0","0" +"5528","255","16","0","-11763","1020","18","0","0" +"5529","255","17","0","-11900","867","18","0","0" +"5530","255","18","0","-12047","811","18","0","0" +"5531","255","19","0","-12190","580","18","0","0" +"5532","255","20","0","-12299","433","18","0","0" +"5533","255","21","0","-12448","354","18","0","0" +"5534","255","22","0","-12651","352","18","0","0" +"5535","255","23","0","-12881","506","18","0","0" +"5536","255","24","0","-13049","588","18","0","0" +"5537","255","25","0","-13174","749","18","0","0" +"5538","255","26","0","-13294","800","18","0","0" +"5539","255","27","0","-13523","789","17","0","0" +"5540","255","28","0","-13672","715","17","0","0" +"5541","255","29","0","-13860","687","20","0","0" +"5542","255","30","0","-14036","559","43","0","0" +"5543","255","31","0","-14158","413","102","0","0" +"5544","255","32","0","-14248","403","120","0","0" +"5545","255","33","0","-14361","417","87","0","0" +"9455","255","34","0","-14453","450","42","0","0" +"9456","255","35","0","-14473","465","37","0","0" +"5579","256","0","0","-14473","465","38","0","0" +"5578","256","1","0","-14471","462","39","0","0" +"5577","256","2","0","-14434","429","49","0","0" +"5576","256","3","0","-14367","453","70","0","0" +"5575","256","4","0","-14232","608","71","0","0" +"5574","256","5","0","-14082","632","71","0","0" +"5573","256","6","0","-13899","666","60","0","0" +"5572","256","7","0","-13663","734","34","0","0" +"5571","256","8","0","-13466","776","40","0","0" +"5570","256","9","0","-13232","733","40","0","0" +"5569","256","10","0","-13033","633","37","0","0" +"5568","256","11","0","-12799","533","38","0","0" +"5567","256","12","0","-12566","466","39","0","0" +"5566","256","13","0","-12239","386","42","0","0" +"5565","256","14","0","-11936","324","72","0","0" +"5564","256","15","0","-11645","293","96","0","0" +"5563","256","16","0","-11363","290","89","0","0" +"5562","256","17","0","-11125","384","90","0","0" +"5561","256","18","0","-10951","645","108","0","0" +"5560","256","19","0","-10833","931","68","0","0" +"5559","256","20","0","-10733","1015","63","0","0" +"5558","256","21","0","-10631","1036","35","0","0" +"5580","257","0","0","-9434","-2238","70","0","0" +"5581","257","1","0","-9437","-2240","71","0","0" +"5582","257","2","0","-9452","-2248","75","0","0" +"5583","257","3","0","-9493","-2254","86","0","0" +"5584","257","4","0","-9528","-2239","99","0","0" +"5585","257","5","0","-9559","-2183","107","0","0" +"5586","257","6","0","-9591","-2090","82","0","0" +"5587","257","7","0","-9584","-1941","79","0","0" +"5588","257","8","0","-9704","-1891","62","0","0" +"5589","257","9","0","-9766","-1810","67","0","0" +"5590","257","10","0","-9923","-1697","82","0","0" +"5591","257","11","0","-10007","-1567","109","0","0" +"5592","257","12","0","-10091","-1355","108","0","0" +"5593","257","13","0","-10174","-1233","109","0","0" +"5594","257","14","0","-10293","-1170","112","0","0" +"5595","257","15","0","-10419","-1153","114","0","0" +"5596","257","16","0","-10493","-1197","73","0","0" +"9393","257","17","0","-10513","-1240","52","0","0" +"9394","257","18","0","-10515","-1262","42","0","0" +"5613","258","0","0","-10515","-1261","42","0","0" +"5612","258","1","0","-10515","-1255","43","0","0" +"5611","258","2","0","-10513","-1241","47","0","0" +"5610","258","3","0","-10507","-1204","61","0","0" +"5609","258","4","0","-10479","-1158","84","0","0" +"5608","258","5","0","-10406","-1129","100","0","0" +"5607","258","6","0","-10309","-1140","105","0","0" +"5606","258","7","0","-10165","-1215","103","0","0" +"5605","258","8","0","-10069","-1350","108","0","0" +"5604","258","9","0","-10015","-1563","109","0","0" +"5603","258","10","0","-9899","-1767","91","0","0" +"5602","258","11","0","-9739","-1954","131","0","0" +"5601","258","12","0","-9591","-2090","123","0","0" +"5600","258","13","0","-9463","-2140","105","0","0" +"9184","258","14","0","-9423","-2199","84","0","0" +"9188","258","15","0","-9434","-2238","69","0","0" +"5614","259","0","0","-10515","-1260","42","0","0" +"5615","259","1","0","-10515","-1253","44","0","0" +"5616","259","2","0","-10516","-1240","48","0","0" +"5617","259","3","0","-10532","-1204","58","0","0" +"5618","259","4","0","-10582","-1170","70","0","0" +"5619","259","5","0","-10737","-1102","104","0","0" +"5620","259","6","0","-10805","-887","121","0","0" +"5621","259","7","0","-10842","-649","121","0","0" +"5622","259","8","0","-10908","-503","119","0","0" +"5623","259","9","0","-11074","-413","121","0","0" +"5624","259","10","0","-11248","-373","124","0","0" +"5625","259","11","0","-11392","-287","119","0","0" +"5626","259","12","0","-11532","-182","85","0","0" +"5627","259","13","0","-11585","87","87","0","0" +"5628","259","14","0","-11695","222","86","0","0" +"5629","259","15","0","-11941","330","71","0","0" +"5630","259","16","0","-12152","359","24","0","0" +"5631","259","17","0","-12391","334","7","0","0" +"5632","259","18","0","-12637","395","21","0","0" +"5633","259","19","0","-12893","422","111","0","0" +"5634","259","20","0","-13454","759","83","0","0" +"5635","259","21","0","-13809","687","57","0","0" +"5636","259","22","0","-14012","690","91","0","0" +"5637","259","23","0","-14244","615","116","0","0" +"5638","259","24","0","-14376","448","88","0","0" +"5639","259","25","0","-14474","464","38","0","0" +"5677","260","0","0","-14473","465","37","0","0" +"5676","260","1","0","-14466","460","40","0","0" +"5675","260","2","0","-14401","440","63","0","0" +"5674","260","3","0","-14324","482","77","0","0" +"5673","260","4","0","-14200","566","69","0","0" +"5672","260","5","0","-13900","666","87","0","0" +"5671","260","6","0","-13483","552","153","0","0" +"5670","260","7","0","-13066","266","123","0","0" +"5669","260","8","0","-12733","-99","123","0","0" +"5668","260","9","0","-12287","-227","93","0","0" +"5667","260","10","0","-11899","-199","93","0","0" +"5666","260","11","0","-11564","-212","93","0","0" +"5665","260","12","0","-11427","-263","119","0","0" +"5664","260","13","0","-11264","-396","131","0","0" +"5663","260","14","0","-11103","-462","113","0","0" +"5662","260","15","0","-11063","-669","116","0","0" +"5661","260","16","0","-10990","-854","103","0","0" +"5660","260","17","0","-11003","-1024","134","0","0" +"5659","260","18","0","-10842","-1161","115","0","0" +"5658","260","19","0","-10656","-1154","103","0","0" +"5657","260","20","0","-10561","-1183","75","0","0" +"5656","260","21","0","-10522","-1221","55","0","0" +"5655","260","22","0","-10515","-1261","42","0","0" +"5678","261","0","0","-10516","-1260","42","0","0" +"5679","261","1","0","-10516","-1252","44","0","0" +"5680","261","2","0","-10516","-1239","47","0","0" +"5681","261","3","0","-10514","-1206","56","0","0" +"5682","261","4","0","-10486","-1182","74","0","0" +"5683","261","5","0","-10418","-1222","113","0","0" +"5684","261","6","0","-10414","-1333","139","0","0" +"5685","261","7","0","-10433","-1600","159","0","0" +"5686","261","8","0","-10583","-1812","185","0","0" +"5687","261","9","0","-10466","-1982","163","0","0" +"5688","261","10","0","-10557","-2119","178","0","0" +"5689","261","11","0","-10591","-2338","166","0","0" +"5690","261","12","0","-10512","-2565","95","0","0" +"5691","261","13","0","-10488","-2777","89","0","0" +"5692","261","14","0","-10600","-2936","81","0","0" +"5693","261","15","0","-10803","-2997","70","0","0" +"5694","261","16","0","-10973","-3106","70","0","0" +"5695","261","17","0","-11133","-3305","78","0","0" +"9186","261","18","0","-11151","-3397","93","0","0" +"9195","261","19","0","-11112","-3435","80","0","0" +"5713","262","0","0","-11112","-3435","80","0","0" +"5712","262","1","0","-11110","-3437","80","0","0" +"5711","262","2","0","-11098","-3449","81","0","0" +"5710","262","3","0","-11071","-3467","83","0","0" +"5709","262","4","0","-11001","-3413","73","0","0" +"5708","262","5","0","-11013","-3285","70","0","0" +"5707","262","6","0","-10961","-3121","71","0","0" +"5706","262","7","0","-10803","-2997","75","0","0" +"5705","262","8","0","-10600","-2936","89","0","0" +"5704","262","9","0","-10483","-2789","91","0","0" +"5703","262","10","0","-10590","-2542","103","0","0" +"5702","262","11","0","-10574","-2268","181","0","0" +"5701","262","12","0","-10583","-2130","161","0","0" +"5700","262","13","0","-10422","-1942","162","0","0" +"5699","262","14","0","-10453","-1700","148","0","0" +"5698","262","15","0","-10466","-1473","156","0","0" +"5697","262","16","0","-10545","-1388","143","0","0" +"9410","262","17","0","-10555","-1316","95","0","0" +"9411","262","18","0","-10515","-1262","42","0","0" +"5715","263","0","0","-4822","-1157","503","0","0" +"5716","263","1","0","-4823","-1154","504","0","0" +"5717","263","2","0","-4826","-1144","508","0","0" +"5718","263","3","0","-4830","-1124","517","0","0" +"5719","263","4","0","-4839","-1077","543","0","0" +"5720","263","5","0","-4867","-1047","550","0","0" +"5721","263","6","0","-4889","-1032","548","0","0" +"5722","263","7","0","-4921","-1008","544","0","0" +"5723","263","8","0","-4947","-972","540","0","0" +"5724","263","9","0","-4958","-914","543","0","0" +"5725","263","10","0","-4965","-901","543","0","0" +"5726","263","11","0","-4986","-874","527","0","0" +"5727","263","12","0","-5022","-831","507","0","0" +"5728","263","13","0","-5077","-798","507","0","0" +"5729","263","14","0","-5166","-803","508","0","0" +"5730","263","15","0","-5233","-933","517","0","0" +"5731","263","16","0","-5266","-1300","576","0","0" +"5732","263","17","0","-5248","-1574","555","0","0" +"5733","263","18","0","-5078","-1677","536","0","0" +"5734","263","19","0","-4865","-1648","540","0","0" +"5735","263","20","0","-4566","-1641","533","0","0" +"5736","263","21","0","-4366","-1600","464","0","0" +"5737","263","22","0","-3931","-1427","226","0","0" +"5738","263","23","0","-3577","-1433","84","0","0" +"5739","263","24","0","-3199","-1433","37","0","0" +"5740","263","25","0","-2866","-1433","36","0","0" +"5741","263","26","0","-2266","-1400","14","0","0" +"5742","263","27","0","-1815","-1439","83","0","0" +"5743","263","28","0","-1393","-1533","95","0","0" +"5744","263","29","0","-965","-1633","109","0","0" +"5745","263","30","0","-704","-1698","118","0","0" +"5746","263","31","0","-499","-1733","146","0","0" +"5747","263","32","0","-300","-1752","185","0","0" +"5748","263","33","0","-119","-1799","196","0","0" +"5749","263","34","0","-2","-1911","207","0","0" +"5750","263","35","0","59","-1942","211","0","0" +"5751","263","36","0","144","-1951","206","0","0" +"5752","263","37","0","234","-2013","205","0","0" +"5753","263","38","0","283","-2002","195","0","0" +"5851","264","0","0","284","-2004","195","0","0" +"5850","264","1","0","282","-2007","196","0","0" +"5849","264","2","0","261","-2037","203","0","0" +"5848","264","3","0","200","-2067","206","0","0" +"5847","264","4","0","73","-1980","197","0","0" +"5846","264","5","0","-32","-1881","188","0","0" +"5845","264","6","0","-154","-1738","191","0","0" +"5844","264","7","0","-334","-1683","168","0","0" +"5843","264","8","0","-461","-1585","110","0","0" +"5842","264","9","0","-632","-1304","116","0","0" +"5841","264","10","0","-995","-1180","96","0","0" +"5840","264","11","0","-1261","-1009","75","0","0" +"5839","264","12","0","-1429","-1068","81","0","0" +"5838","264","13","0","-1593","-1168","125","0","0" +"5837","264","14","0","-1747","-1554","104","0","0" +"5836","264","15","0","-2016","-1692","133","0","0" +"5835","264","16","0","-2557","-1647","46","0","0" +"5834","264","17","0","-2883","-1542","20","0","0" +"5833","264","18","0","-3095","-1411","21","0","0" +"5832","264","19","0","-3273","-1257","20","0","0" +"5831","264","20","0","-3426","-1008","16","0","0" +"5830","264","21","0","-3533","-902","17","0","0" +"5829","264","22","0","-3658","-853","48","0","0" +"5828","264","23","0","-3812","-843","76","0","0" +"5827","264","24","0","-4126","-935","193","0","0" +"5826","264","25","0","-4373","-1009","508","0","0" +"5825","264","26","0","-4537","-843","654","0","0" +"5824","264","27","0","-4717","-648","681","0","0" +"5823","264","28","0","-4868","-488","618","0","0" +"5822","264","29","0","-5019","-501","609","0","0" +"5821","264","30","0","-5107","-616","559","0","0" +"5820","264","31","0","-5089","-716","524","0","0" +"5819","264","32","0","-5022","-831","507","0","0" +"5818","264","33","0","-4986","-874","527","0","0" +"5817","264","34","0","-4965","-901","544","0","0" +"5816","264","35","0","-4958","-914","543","0","0" +"5815","264","36","0","-4947","-972","540","0","0" +"5814","264","37","0","-4921","-1008","544","0","0" +"5813","264","38","0","-4889","-1032","548","0","0" +"5812","264","39","0","-4867","-1047","550","0","0" +"5811","264","40","0","-4839","-1077","541","0","0" +"5810","264","41","0","-4836","-1126","517","0","0" +"9051","264","42","0","-4822","-1157","503","0","0" +"5852","265","0","0","-5422","-2925","348","0","0" +"5853","265","1","0","-5425","-2927","350","0","0" +"5854","265","2","0","-5435","-2936","355","0","0" +"5855","265","3","0","-5464","-2966","369","0","0" +"5856","265","4","0","-5470","-3037","387","0","0" +"5857","265","5","0","-5387","-3123","371","0","0" +"5858","265","6","0","-5197","-3162","347","0","0" +"5859","265","7","0","-4893","-3189","329","0","0" +"5860","265","8","0","-4729","-3266","318","0","0" +"5861","265","9","0","-4593","-3290","245","0","0" +"5862","265","10","0","-4459","-3242","190","0","0" +"5863","265","11","0","-4261","-3135","134","0","0" +"5864","265","12","0","-4106","-3007","26","0","0" +"5865","265","13","0","-4008","-2808","34","0","0" +"5866","265","14","0","-3724","-2715","43","0","0" +"5867","265","15","0","-3542","-2556","100","0","0" +"5868","265","16","0","-3396","-2324","65","0","0" +"5869","265","17","0","-3369","-2159","69","0","0" +"5870","265","18","0","-3431","-2067","120","0","0" +"5871","265","19","0","-3412","-1958","126","0","0" +"5872","265","20","0","-3396","-1828","37","0","0" +"5873","265","21","0","-3369","-1740","75","0","0" +"5874","265","22","0","-3370","-1545","32","0","0" +"5875","265","23","0","-3459","-1397","19","0","0" +"5876","265","24","0","-3684","-1278","18","0","0" +"5877","265","25","0","-3783","-1087","39","0","0" +"5878","265","26","0","-3769","-919","33","0","0" +"5879","265","27","0","-3783","-818","17","0","0" +"9501","265","28","0","-3792","-782","10","0","0" +"5907","266","0","0","-3792","-782","10","0","0" +"5906","266","1","0","-3791","-786","11","0","0" +"5905","266","2","0","-3790","-798","14","0","0" +"5904","266","3","0","-3789","-823","20","0","0" +"5903","266","4","0","-3788","-898","36","0","0" +"5902","266","5","0","-3748","-1040","39","0","0" +"5901","266","6","0","-3627","-1201","23","0","0" +"5900","266","7","0","-3475","-1266","18","0","0" +"5899","266","8","0","-3307","-1433","19","0","0" +"5898","266","9","0","-3249","-1605","21","0","0" +"5897","266","10","0","-3171","-1758","21","0","0" +"5896","266","11","0","-3169","-1992","23","0","0" +"5895","266","12","0","-3055","-2251","20","0","0" +"5894","266","13","0","-3155","-2604","20","0","0" +"5893","266","14","0","-3340","-2756","32","0","0" +"5892","266","15","0","-3563","-2812","34","0","0" +"5891","266","16","0","-3722","-3019","29","0","0" +"5890","266","17","0","-3900","-3098","22","0","0" +"5889","266","18","0","-4092","-3115","43","0","0" +"5888","266","19","0","-4254","-3181","141","0","0" +"5887","266","20","0","-4447","-3230","202","0","0" +"5886","266","21","0","-4724","-3408","330","0","0" +"5885","266","22","0","-5028","-3317","328","0","0" +"5884","266","23","0","-5248","-3037","363","0","0" +"9403","266","24","0","-5403","-2955","355","0","0" +"9404","266","25","0","-5422","-2925","348","0","0" +"5908","267","0","0","-5423","-2926","348","0","0" +"5909","267","1","0","-5426","-2927","349","0","0" +"5910","267","2","0","-5443","-2938","356","0","0" +"5911","267","3","0","-5466","-2962","371","0","0" +"5912","267","4","0","-5471","-3050","372","0","0" +"5913","267","5","0","-5384","-3112","364","0","0" +"5914","267","6","0","-5196","-3169","364","0","0" +"5915","267","7","0","-4937","-3205","343","0","0" +"5916","267","8","0","-4808","-3297","328","0","0" +"5917","267","9","0","-4697","-3310","310","0","0" +"5918","267","10","0","-4456","-3246","217","0","0" +"5919","267","11","0","-4256","-3208","154","0","0" +"5920","267","12","0","-3977","-3157","79","0","0" +"5921","267","13","0","-3680","-3131","48","0","0" +"5922","267","14","0","-3378","-3133","38","0","0" +"5923","267","15","0","-3082","-2915","37","0","0" +"5924","267","16","0","-2996","-2626","44","0","0" +"5925","267","17","0","-2875","-2496","58","0","0" +"5926","267","18","0","-2688","-2493","80","0","0" +"5927","267","19","0","-2511","-2497","110","0","0" +"5928","267","20","0","-2370","-2501","122","0","0" +"5929","267","21","0","-2256","-2503","111","0","0" +"5930","267","22","0","-2074","-2537","97","0","0" +"5931","267","23","0","-1902","-2500","75","0","0" +"5932","267","24","0","-1716","-2490","77","0","0" +"5933","267","25","0","-1593","-2441","93","0","0" +"5934","267","26","0","-1390","-2431","71","0","0" +"9499","267","27","0","-1299","-2458","51","0","0" +"9500","267","28","0","-1244","-2515","21","0","0" +"5961","268","0","0","-1244","-2515","21","0","0" +"5960","268","1","0","-1243","-2519","22","0","0" +"5959","268","2","0","-1240","-2530","26","0","0" +"5958","268","3","0","-1231","-2571","41","0","0" +"5957","268","4","0","-1192","-2641","58","0","0" +"5956","268","5","0","-1239","-2705","62","0","0" +"5955","268","6","0","-1368","-2657","80","0","0" +"5954","268","7","0","-1487","-2561","77","0","0" +"5953","268","8","0","-1711","-2506","77","0","0" +"5952","268","9","0","-1902","-2500","75","0","0" +"5951","268","10","0","-2074","-2537","97","0","0" +"5950","268","11","0","-2256","-2503","111","0","0" +"5949","268","12","0","-2370","-2501","122","0","0" +"5948","268","13","0","-2511","-2497","110","0","0" +"5947","268","14","0","-2688","-2493","80","0","0" +"5946","268","15","0","-2875","-2496","58","0","0" +"5945","268","16","0","-2996","-2626","44","0","0" +"5944","268","17","0","-3082","-2915","37","0","0" +"5943","268","18","0","-3378","-3133","38","0","0" +"5942","268","19","0","-3680","-3131","48","0","0" +"5941","268","20","0","-3977","-3157","79","0","0" +"5940","268","21","0","-4256","-3208","162","0","0" +"5939","268","22","0","-4456","-3246","242","0","0" +"5938","268","23","0","-4692","-3292","314","0","0" +"5937","268","24","0","-4937","-3205","321","0","0" +"5936","268","25","0","-5196","-3169","338","0","0" +"5935","268","26","0","-5384","-3112","364","0","0" +"5962","268","27","0","-5471","-3050","372","0","0" +"5963","268","28","0","-5466","-2962","371","0","0" +"9443","268","29","0","-5423","-2926","348","0","0" +"5964","269","0","0","-3790","-781","10","0","0" +"5965","269","1","0","-3790","-784","11","0","0" +"5966","269","2","0","-3790","-797","13","0","0" +"5967","269","3","0","-3784","-828","20","0","0" +"5968","269","4","0","-3754","-855","26","0","0" +"5969","269","5","0","-3669","-853","41","0","0" +"5970","269","6","0","-3512","-813","11","0","0" +"5971","269","7","0","-3332","-799","5","0","0" +"5972","269","8","0","-3134","-833","5","0","0" +"5973","269","9","0","-2915","-944","11","0","0" +"5974","269","10","0","-2733","-1137","11","0","0" +"5975","269","11","0","-2459","-1294","11","0","0" +"5976","269","12","0","-2164","-1359","24","0","0" +"5977","269","13","0","-1885","-1621","52","0","0" +"5978","269","14","0","-1789","-1762","71","0","0" +"5979","269","15","0","-1756","-1940","76","0","0" +"5980","269","16","0","-1636","-2064","66","0","0" +"5981","269","17","0","-1389","-2235","75","0","0" +"5982","269","18","0","-1315","-2413","71","0","0" +"9400","269","19","0","-1266","-2494","33","0","0" +"9401","269","20","0","-1242","-2514","22","0","0" +"6001","270","0","0","-1242","-2514","22","0","0" +"6000","270","1","0","-1241","-2518","23","0","0" +"5999","270","2","0","-1240","-2527","26","0","0" +"5998","270","3","0","-1230","-2570","38","0","0" +"5997","270","4","0","-1168","-2622","69","0","0" +"5996","270","5","0","-1086","-2605","78","0","0" +"5995","270","6","0","-1060","-2475","73","0","0" +"5994","270","7","0","-1202","-2278","70","0","0" +"5993","270","8","0","-1380","-2150","75","0","0" +"5992","270","9","0","-1735","-1966","99","0","0" +"5991","270","10","0","-1821","-1712","92","0","0" +"5990","270","11","0","-2027","-1523","14","0","0" +"5989","270","12","0","-2341","-1471","12","0","0" +"5988","270","13","0","-2622","-1169","11","0","0" +"5987","270","14","0","-2928","-1026","16","0","0" +"5986","270","15","0","-3146","-933","18","0","0" +"5985","270","16","0","-3344","-889","12","0","0" +"5984","270","17","0","-3623","-793","34","0","0" +"5983","270","18","0","-3729","-752","23","0","0" +"6002","270","19","0","-3771","-757","14","0","0" +"9441","270","20","0","-3790","-781","10","0","0" +"6005","271","0","0","-3789","-780","10","0","0" +"6006","271","1","0","-3787","-798","15","0","0" +"6007","271","2","0","-3773","-844","29","0","0" +"6008","271","3","0","-3727","-858","39","0","0" +"6009","271","4","0","-3535","-797","47","0","0" +"6010","271","5","0","-3267","-631","38","0","0" +"6011","271","6","0","-2459","-474","7","0","0" +"6012","271","7","0","-1907","-429","15","0","0" +"6013","271","8","0","-1143","-520","47","0","0" +"6014","271","9","0","-928","-528","40","0","0" +"6015","271","10","0","-766","-531","35","0","0" +"6016","271","11","0","-713","-517","27","0","0" +"6036","272","0","0","-713","-517","26","0","0" +"6035","272","1","0","-717","-541","28","0","0" +"6034","272","2","0","-727","-597","42","0","0" +"6033","272","3","0","-759","-654","50","0","0" +"6032","272","4","0","-886","-652","40","0","0" +"6031","272","5","0","-1093","-652","24","0","0" +"6030","272","6","0","-1930","-620","10","0","0" +"6029","272","7","0","-2632","-598","7","0","0" +"6028","272","8","0","-3165","-538","7","0","0" +"6027","272","9","0","-3565","-652","30","0","0" +"6026","272","10","0","-3699","-659","40","0","0" +"9463","272","11","0","-3789","-716","33","0","0" +"9464","272","12","0","-3809","-754","17","0","0" +"12727","272","13","0","-3789","-785","10","0","0" +"6037","273","0","0","-1243","-2514","22","0","0" +"6038","273","1","0","-1242","-2517","22","0","0" +"6039","273","2","0","-1240","-2532","25","0","0" +"6040","273","3","0","-1231","-2575","35","0","0" +"6041","273","4","0","-1176","-2622","61","0","0" +"6042","273","5","0","-1079","-2606","71","0","0" +"6043","273","6","0","-1004","-2469","70","0","0" +"6044","273","7","0","-955","-2149","67","0","0" +"6045","273","8","0","-1001","-1823","90","0","0" +"6046","273","9","0","-1113","-1405","111","0","0" +"6047","273","10","0","-1004","-1026","114","0","0" +"6048","273","11","0","-1005","-714","66","0","0" +"9439","273","12","0","-934","-552","41","0","0" +"9440","273","13","0","-775","-527","35","0","0" +"12726","273","14","0","-711","-520","28","0","0" +"6060","274","0","0","-714","-516","26","0","0" +"6059","274","1","0","-713","-520","27","0","0" +"6058","274","2","0","-714","-537","28","0","0" +"6057","274","3","0","-727","-600","44","0","0" +"6056","274","4","0","-770","-776","60","0","0" +"6055","274","5","0","-803","-890","80","0","0" +"6054","274","6","0","-900","-1190","112","0","0" +"6053","274","7","0","-1080","-1431","119","0","0" +"6052","274","8","0","-1280","-1798","83","0","0" +"6051","274","9","0","-1382","-2072","82","0","0" +"9459","274","10","0","-1350","-2356","90","0","0" +"9460","274","11","0","-1312","-2455","55","0","0" +"11953","274","12","0","-1243","-2514","22","0","0" +"6061","275","0","0","-1242","-2515","22","0","0" +"6062","275","1","0","-1242","-2518","23","0","0" +"6063","275","2","0","-1240","-2530","27","0","0" +"6064","275","3","0","-1231","-2568","41","0","0" +"6065","275","4","0","-1159","-2624","78","0","0" +"6066","275","5","0","-1050","-2591","93","0","0" +"6067","275","6","0","-893","-2367","77","0","0" +"6068","275","7","0","-840","-2178","76","0","0" +"6069","275","8","0","-701","-1988","110","0","0" +"6070","275","9","0","-520","-1826","155","0","0" +"6071","275","10","0","-348","-1747","206","0","0" +"6072","275","11","0","-113","-1798","223","0","0" +"6073","275","12","0","65","-1969","221","0","0" +"9437","275","13","0","146","-1955","215","0","0" +"9438","275","14","0","235","-2014","196","0","0" +"12844","275","15","0","284","-2003","196","0","0" +"6086","276","0","0","286","-2006","195","0","0" +"6085","276","1","0","283","-2009","196","0","0" +"6084","276","2","0","266","-2026","199","0","0" +"6083","276","3","0","196","-2082","210","0","0" +"6082","276","4","0","133","-2041","213","0","0" +"6081","276","5","0","-25","-1900","235","0","0" +"6080","276","6","0","-287","-1729","189","0","0" +"6079","276","7","0","-481","-1723","146","0","0" +"6078","276","8","0","-892","-1866","88","0","0" +"6077","276","9","0","-1201","-2077","117","0","0" +"6076","276","10","0","-1328","-2235","108","0","0" +"9047","276","11","0","-1340","-2371","89","0","0" +"9048","276","12","0","-1293","-2468","54","0","0" +"9055","276","13","0","-1242","-2515","22","0","0" +"6138","279","0","1","-440","-2595","97","0","0" +"6139","279","1","1","-443","-2603","99","0","0" +"6140","279","2","1","-453","-2648","110","0","0" +"6141","279","3","1","-420","-2682","115","0","0" +"6142","279","4","1","-321","-2683","127","0","0" +"6143","279","5","1","-290","-2512","118","0","0" +"6144","279","6","1","-189","-2178","124","0","0" +"6145","279","7","1","-145","-1836","119","0","0" +"6146","279","8","1","-129","-1619","124","0","0" +"6147","279","9","1","-69","-1469","124","0","0" +"6148","279","10","1","-100","-1307","124","0","0" +"6149","279","11","1","-181","-1084","96","0","0" +"6150","279","12","1","-243","-840","86","0","0" +"6151","279","13","1","-182","-635","82","0","0" +"6803","279","14","1","-60","-437","78","0","0" +"6804","279","15","1","58","-181","92","0","0" +"6805","279","16","1","140","83","109","0","0" +"6806","279","17","1","318","247","126","0","0" +"6807","279","18","1","603","345","144","0","0" +"6808","279","19","1","836","544","170","0","0" +"6809","279","20","1","929","733","169","0","0" +"9165","279","21","1","929","890","140","0","0" +"9166","279","22","1","949","1004","114","0","0" +"12732","279","23","1","966","1041","107","0","0" +"6165","280","0","1","965","1041","105","0","0" +"6164","280","1","1","976","1050","109","0","0" +"6163","280","2","1","1000","1056","119","0","0" +"6162","280","3","1","1034","1039","139","0","0" +"6161","280","4","1","1041","991","153","0","0" +"6160","280","5","1","1011","948","160","0","0" +"6159","280","6","1","942","886","172","0","0" +"6158","280","7","1","927","703","175","0","0" +"6157","280","8","1","881","553","169","0","0" +"6156","280","9","1","809","452","158","0","0" +"6155","280","10","1","691","369","146","0","0" +"6154","280","11","1","555","349","147","0","0" +"6153","280","12","1","391","340","141","0","0" +"6152","280","13","1","234","255","135","0","0" +"6777","280","14","1","113","111","124","0","0" +"6778","280","15","1","50","-70","97","0","0" +"6779","280","16","1","-10","-190","81","0","0" +"6780","280","17","1","-113","-338","77","0","0" +"6781","280","18","1","-208","-568","85","0","0" +"6782","280","19","1","-199","-740","64","0","0" +"6783","280","20","1","-235","-1045","56","0","0" +"6784","280","21","1","-338","-1262","103","0","0" +"6785","280","22","1","-416","-1548","133","0","0" +"6786","280","23","1","-408","-1850","116","0","0" +"6787","280","24","1","-274","-2090","119","0","0" +"6788","280","25","1","-271","-2284","111","0","0" +"6789","280","26","1","-340","-2459","122","0","0" +"6790","280","27","1","-407","-2538","123","0","0" +"9484","280","28","1","-440","-2595","97","0","0" +"6166","281","0","1","-439","-2598","97","0","0" +"6167","281","1","1","-462","-2643","106","0","0" +"6168","281","2","1","-558","-2647","111","0","0" +"6169","281","3","1","-693","-2555","115","0","0" +"6170","281","4","1","-783","-2480","105","0","0" +"6171","281","5","1","-1050","-2454","103","0","0" +"6172","281","6","1","-1267","-2468","111","0","0" +"6173","281","7","1","-1761","-2589","113","0","0" +"6174","281","8","1","-2234","-2434","114","0","0" +"6175","281","9","1","-2481","-2222","109","0","0" +"6176","281","10","1","-2889","-2125","106","0","0" +"6177","281","11","1","-3267","-2030","119","0","0" +"6178","281","12","1","-3579","-2030","104","0","0" +"6179","281","13","1","-3789","-2044","111","0","0" +"6180","281","14","1","-4070","-2042","107","0","0" +"6181","281","15","1","-4244","-1907","116","0","0" +"6182","281","16","1","-4559","-1860","106","0","0" +"6183","281","17","1","-4769","-1873","104","0","0" +"6184","281","18","1","-5050","-1951","118","0","0" +"6185","281","19","1","-5297","-2123","116","0","0" +"6186","281","20","1","-5305","-2285","109","0","0" +"6187","281","21","1","-5387","-2395","97","0","0" +"6188","281","22","1","-5406","-2416","91","0","0" +"6213","282","0","1","-5407","-2415","91","0","0" +"6212","282","1","1","-5416","-2412","94","0","0" +"6211","282","2","1","-5449","-2403","101","0","0" +"6210","282","3","1","-5523","-2361","98","0","0" +"6209","282","4","1","-5525","-2281","79","0","0" +"6208","282","5","1","-5399","-2199","67","0","0" +"6207","282","6","1","-5200","-2087","61","0","0" +"6206","282","7","1","-4889","-1985","102","0","0" +"6205","282","8","1","-4597","-1866","109","0","0" +"6204","282","9","1","-4254","-1914","116","0","0" +"6203","282","10","1","-3907","-2051","107","0","0" +"6202","282","11","1","-3471","-2016","111","0","0" +"6201","282","12","1","-3206","-2030","119","0","0" +"6200","282","13","1","-2889","-2135","113","0","0" +"6199","282","14","1","-2387","-2157","109","0","0" +"6198","282","15","1","-1979","-2062","114","0","0" +"6197","282","16","1","-1385","-2096","106","0","0" +"6196","282","17","1","-1097","-2411","104","0","0" +"6195","282","18","1","-751","-2439","134","0","0" +"6194","282","19","1","-568","-2414","126","0","0" +"6214","282","20","1","-412","-2518","130","0","0" +"9208","282","21","1","-441","-2597","97","0","0" +"6215","283","0","1","-440","-2595","97","0","0" +"6216","283","1","1","-447","-2625","102","0","0" +"6217","283","2","1","-476","-2719","124","0","0" +"6218","283","3","1","-420","-2787","124","0","0" +"6219","283","4","1","-170","-2927","111","0","0" +"6220","283","5","1","64","-2965","108","0","0" +"6221","283","6","1","271","-3083","121","0","0" +"6222","283","7","1","499","-3293","230","0","0" +"6223","283","8","1","819","-3352","230","0","0" +"6224","283","9","1","1219","-3724","119","0","0" +"6225","283","10","1","1570","-3827","119","0","0" +"6226","283","11","1","2099","-3700","119","0","0" +"6227","283","12","1","2747","-3786","118","0","0" +"6228","283","13","1","2950","-3989","159","0","0" +"6229","283","14","1","3100","-4199","159","0","0" +"6230","283","15","1","3303","-4284","159","0","0" +"6231","283","16","1","3512","-4354","141","0","0" +"6232","283","17","1","3615","-4379","124","0","0" +"6233","283","18","1","3661","-4390","115","0","0" +"6262","284","0","1","3661","-4390","114","0","0" +"6261","284","1","1","3663","-4387","115","0","0" +"6260","284","2","1","3666","-4381","118","0","0" +"6259","284","3","1","3679","-4343","138","0","0" +"6258","284","4","1","3623","-4251","161","0","0" +"6257","284","5","1","3421","-4128","173","0","0" +"6256","284","6","1","3046","-4020","158","0","0" +"6255","284","7","1","2624","-3809","171","0","0" +"6254","284","8","1","2233","-3688","111","0","0" +"6253","284","9","1","1900","-3729","104","0","0" +"6252","284","10","1","1468","-3849","105","0","0" +"6251","284","11","1","1125","-3841","86","0","0" +"6250","284","12","1","708","-3617","128","0","0" +"6249","284","13","1","479","-3431","132","0","0" +"6248","284","14","1","232","-3199","129","0","0" +"6247","284","15","1","66","-2966","128","0","0" +"6246","284","16","1","-200","-2601","119","0","0" +"6245","284","17","1","-366","-2559","120","0","0" +"6244","284","18","1","-440","-2595","97","0","0" +"6263","285","0","0","-12433","866","59","0","0" +"6264","285","1","0","-12442","685","59","0","0" +"6265","285","2","0","-12428","397","53","0","0" +"6266","285","3","0","-12464","231","49","2","60" +"6267","285","4","0","-12564","141","59","0","0" +"6268","285","5","0","-12677","177","80","0","0" +"6269","285","6","0","-12730","296","85","0","0" +"6270","285","7","0","-12703","463","85","0","0" +"6271","285","8","1","1166","-5200","98","0","0" +"6272","285","9","1","1165","-4935","98","0","0" +"6273","285","10","1","1129","-4751","98","0","0" +"6274","285","11","1","1126","-4526","98","0","0" +"6275","285","12","1","1223","-4465","95","0","0" +"6276","285","13","1","1299","-4508","83","0","0" +"6277","285","14","1","1360","-4631","71","2","60" +"6278","285","15","1","1468","-4755","98","0","0" +"6279","285","16","1","1499","-5033","99","0","0" +"6280","285","17","1","1533","-5299","99","0","0" +"6290","286","0","1","5072","-337","368","0","0" +"6291","286","1","1","5075","-328","368","0","0" +"6292","286","2","1","5118","-287","362","0","0" +"6293","286","3","1","5181","-232","339","0","0" +"6294","286","4","1","5261","-324","329","0","0" +"6295","286","5","1","5253","-430","325","0","0" +"6296","286","6","1","5267","-561","327","0","0" +"6297","286","7","1","5277","-695","348","0","0" +"6298","286","8","1","5247","-764","360","0","0" +"6299","286","9","1","5112","-747","335","0","0" +"6300","286","10","1","5037","-747","325","0","0" +"6301","286","11","1","4925","-732","313","0","0" +"6302","286","12","1","4810","-747","306","0","0" +"6303","286","13","1","4651","-800","305","0","0" +"6304","286","14","1","4510","-911","317","0","0" +"6305","286","15","1","4416","-941","319","0","0" +"6306","286","16","1","4301","-985","315","0","0" +"6307","286","17","1","4171","-1027","302","0","0" +"6308","286","18","1","4028","-1073","303","0","0" +"6309","286","19","1","3931","-1089","295","0","0" +"6310","286","20","1","3894","-1288","267","0","0" +"6311","286","21","1","3848","-1403","260","0","0" +"6312","286","22","1","3741","-1497","245","0","0" +"6313","286","23","1","3613","-1488","224","0","0" +"6314","286","24","1","3466","-1521","178","0","0" +"6315","286","25","1","3271","-1565","177","0","0" +"6316","286","26","1","3205","-1695","173","0","0" +"6317","286","27","1","3041","-1787","173","0","0" +"6318","286","28","1","2828","-1944","169","0","0" +"6319","286","29","1","2670","-1982","165","0","0" +"6320","286","30","1","2472","-2000","144","0","0" +"6321","286","31","1","2377","-2051","139","0","0" +"6322","286","32","1","2299","-2132","125","0","0" +"6323","286","33","1","2161","-2024","114","0","0" +"6324","286","34","1","2053","-2011","110","0","0" +"6325","286","35","1","1879","-2090","123","0","0" +"6326","286","36","1","1766","-2098","122","0","0" +"6327","286","37","1","1680","-2166","105","0","0" +"6328","286","38","1","1566","-2215","102","0","0" +"6329","286","39","1","1399","-2259","105","0","0" +"9066","286","40","1","1278","-2278","149","0","0" +"12460","286","41","1","1136","-2256","155","0","0" +"12461","286","42","1","1019","-2377","155","0","0" +"12462","286","43","1","824","-2396","155","0","0" +"12463","286","44","1","447","-2449","155","0","0" +"12464","286","45","1","-29","-2536","155","0","0" +"12465","286","46","1","-154","-2526","155","0","0" +"12466","286","47","1","-285","-2515","140","0","0" +"12467","286","48","1","-398","-2526","124","0","0" +"12468","286","49","1","-440","-2596","98","0","0" +"6369","287","0","1","-442","-2594","97","0","0" +"6368","287","1","1","-450","-2636","107","0","0" +"6367","287","2","1","-418","-2678","116","0","0" +"6366","287","3","1","-323","-2656","123","0","0" +"6365","287","4","1","-219","-2428","128","0","0" +"6364","287","5","1","-145","-2360","158","0","0" +"6363","287","6","1","59","-2292","195","0","0" +"6362","287","7","1","330","-2280","258","0","0" +"6361","287","8","1","541","-2304","185","0","0" +"6360","287","9","1","799","-2379","160","0","0" +"6359","287","10","1","1149","-2385","164","0","0" +"6358","287","11","1","1309","-2314","159","0","0" +"6357","287","12","1","1405","-2331","108","0","0" +"6356","287","13","1","1525","-2243","107","0","0" +"6355","287","14","1","1655","-1992","122","0","0" +"6354","287","15","1","1708","-1871","126","0","0" +"6353","287","16","1","1812","-1892","123","0","0" +"6352","287","17","1","2036","-1991","111","0","0" +"6351","287","18","1","2147","-2072","116","0","0" +"6350","287","19","1","2304","-2121","126","0","0" +"6349","287","20","1","2426","-2017","144","0","0" +"6348","287","21","1","2591","-1980","159","0","0" +"6347","287","22","1","2726","-1984","169","0","0" +"6346","287","23","1","2833","-1945","172","0","0" +"6345","287","24","1","2964","-1830","178","0","0" +"6344","287","25","1","3160","-1729","179","0","0" +"6343","287","26","1","3277","-1580","180","0","0" +"6342","287","27","1","3505","-1508","179","0","0" +"6341","287","28","1","3706","-1399","209","0","0" +"6340","287","29","1","3834","-1348","220","0","0" +"6339","287","30","1","3903","-1271","232","0","0" +"6338","287","31","1","3915","-1109","267","0","0" +"6337","287","32","1","4094","-1055","312","0","0" +"6336","287","33","1","4335","-953","331","0","0" +"6335","287","34","1","4393","-870","307","0","0" +"6334","287","35","1","4482","-846","305","0","0" +"6333","287","36","1","4570","-855","310","0","0" +"6332","287","37","1","4690","-782","311","0","0" +"6331","287","38","1","4825","-744","305","0","0" +"6330","287","39","1","4926","-736","323","0","0" +"6370","287","40","1","5009","-749","353","0","0" +"6371","287","41","1","5129","-749","338","0","0" +"6372","287","42","1","5225","-768","356","0","0" +"6373","287","43","1","5287","-699","352","0","0" +"6374","287","44","1","5269","-580","329","0","0" +"6375","287","45","1","5254","-395","331","0","0" +"6376","287","46","1","5262","-306","341","0","0" +"6377","287","47","1","5199","-261","358","0","0" +"9173","287","48","1","5126","-273","369","0","0" +"9180","287","49","1","5068","-338","370","0","0" +"6417","289","0","1","6342","559","17","0","0" +"6416","289","1","1","6347","567","20","0","0" +"6415","289","2","1","6370","612","33","0","0" +"6414","289","3","1","6379","711","67","0","0" +"6413","289","4","1","6534","673","89","0","0" +"6412","289","5","1","6789","631","71","0","0" +"6411","289","6","1","7069","471","59","0","0" +"6410","289","7","1","7370","199","48","0","0" +"6409","289","8","1","7514","-70","69","0","0" +"6408","289","9","1","7582","-386","97","0","0" +"6407","289","10","1","7575","-770","118","0","0" +"6406","289","11","1","7407","-1119","144","0","0" +"6405","289","12","1","7416","-1379","259","0","0" +"6404","289","13","1","7405","-1657","350","0","0" +"6403","289","14","1","7504","-1794","514","0","0" +"6402","289","15","1","7561","-2000","623","0","0" +"6401","289","16","1","7675","-2166","514","0","0" +"9685","289","17","1","7688","-2264","482","0","0" +"9686","289","18","1","7713","-2362","482","0","0" +"12736","289","19","1","7659","-2463","482","0","0" +"12737","289","20","1","7565","-2471","477","0","0" +"12738","289","21","1","7489","-2487","466","0","0" +"12739","289","22","1","7458","-2488","464","0","0" +"6418","290","0","1","-1196","29","178","0","0" +"6419","290","1","1","-1207","32","180","0","0" +"6420","290","2","1","-1260","37","185","0","0" +"6421","290","3","1","-1319","-22","171","0","0" +"6422","290","4","1","-1327","-125","128","0","0" +"6423","290","5","1","-1241","-291","51","0","0" +"6424","290","6","1","-1101","-458","22","0","0" +"6425","290","7","1","-1087","-766","17","0","0" +"6426","290","8","1","-991","-1059","131","0","0" +"6427","290","9","1","-665","-1277","224","0","0" +"6428","290","10","1","-526","-1566","136","0","0" +"6429","290","11","1","-167","-2098","136","0","0" +"6430","290","12","1","150","-2465","154","0","0" +"6431","290","13","1","466","-2733","146","0","0" +"6432","290","14","1","858","-3068","150","0","0" +"6433","290","15","1","1265","-3700","127","0","0" +"6434","290","16","1","1599","-3833","115","0","0" +"6435","290","17","1","2032","-3700","103","0","0" +"6436","290","18","1","2486","-3735","103","0","0" +"6437","290","19","1","2700","-3800","145","0","0" +"6438","290","20","1","2961","-4030","171","0","0" +"6439","290","21","1","3112","-4207","166","0","0" +"6440","290","22","1","3305","-4283","139","0","0" +"6441","290","23","1","3474","-4346","136","0","0" +"6442","290","24","1","3608","-4379","127","0","0" +"6443","290","25","1","3660","-4389","115","0","0" +"6483","291","0","1","3661","-4390","114","0","0" +"6482","291","1","1","3662","-4387","115","0","0" +"6481","291","2","1","3662","-4377","118","0","0" +"6480","291","3","1","3658","-4306","144","0","0" +"6479","291","4","1","3558","-4202","153","0","0" +"6478","291","5","1","3398","-4124","154","0","0" +"6477","291","6","1","3060","-4034","154","0","0" +"6476","291","7","1","2631","-3804","167","0","0" +"6475","291","8","1","2149","-3687","120","0","0" +"6474","291","9","1","1603","-3820","120","0","0" +"6473","291","10","1","1340","-3787","128","0","0" +"6472","291","11","1","1198","-3554","140","0","0" +"6471","291","12","1","898","-2965","140","0","0" +"6470","291","13","1","579","-2310","148","0","0" +"6469","291","14","1","300","-1833","148","0","0" +"6468","291","15","1","2","-1633","148","0","0" +"6467","291","16","1","-427","-1456","192","0","0" +"6466","291","17","1","-653","-1306","225","0","0" +"6465","291","18","1","-806","-1075","200","0","0" +"6464","291","19","1","-774","-801","91","0","0" +"6463","291","20","1","-801","-403","103","0","0" +"6462","291","21","1","-896","-184","164","0","0" +"6461","291","22","1","-1032","-43","187","0","0" +"6460","291","23","1","-1145","14","185","0","0" +"6459","291","24","1","-1196","29","178","0","0" +"6484","292","0","0","-4199","-132","0","0","0" +"6485","292","1","0","-4199","-372","0","0","0" +"6486","292","2","0","-4150","-531","0","0","0" +"6487","292","3","0","-4088","-599","0","0","0" +"6488","292","4","0","-3996","-611","0","0","0" +"6489","292","5","0","-3905","-585","0","2","60" +"6490","292","6","0","-3832","-521","0","0","0" +"6491","292","7","0","-3801","-383","0","0","0" +"6492","292","8","0","-3893","-245","0","0","0" +"6493","292","9","0","-4133","-33","0","0","0" +"6494","292","10","1","-4399","-5099","0","0","0" +"6495","292","11","1","-4263","-4823","0","0","0" +"6496","292","12","1","-4201","-4718","0","0","0" +"6497","292","13","1","-4100","-4692","0","0","0" +"6498","292","14","1","-4016","-4740","0","2","60" +"6499","292","15","1","-3952","-4813","0","0","0" +"6500","292","16","1","-3910","-4899","0","0","0" +"6501","292","17","1","-3885","-5038","0","0","0" +"6502","292","18","1","-3867","-5226","0","0","0" +"6512","293","0","1","7866","1166","0","0","0" +"6513","293","1","1","8165","1267","0","0","0" +"6514","293","2","1","8367","1300","0","0","0" +"6515","293","3","1","8477","1233","0","0","0" +"6516","293","4","1","8543","1152","0","0","0" +"6517","293","5","1","8534","1017","0","2","60" +"6518","293","6","1","8510","887","0","0","0" +"6519","293","7","1","8452","826","0","0","0" +"6520","293","8","1","8348","803","0","0","0" +"6521","293","9","1","8138","764","0","0","0" +"6522","293","10","1","7917","752","0","0","0" +"6523","293","11","1","7612","747","0","0","0" +"6524","293","12","1","7304","650","0","0","0" +"6525","293","13","1","6968","577","0","0","0" +"6526","293","14","1","6816","572","0","0","0" +"6527","293","15","1","6682","581","0","0","0" +"6528","293","16","1","6569","636","0","0","0" +"6529","293","17","1","6594","769","0","2","60" +"6530","293","18","1","6628","860","0","0","0" +"6531","293","19","1","6722","900","0","0","0" +"6532","293","20","1","6856","888","0","0","0" +"6533","293","21","1","7041","915","0","0","0" +"6534","293","22","1","7600","1066","0","0","0" +"19452","293","23","1","7866","1166","0","0","0" +"6537","295","0","0","-3233","-433","0","0","0" +"6538","295","1","0","-3286","-481","0","0","0" +"6539","295","2","0","-3421","-588","0","0","0" +"6540","295","3","0","-3523","-628","0","0","0" +"6541","295","4","0","-3600","-643","0","0","0" +"6542","295","5","0","-3663","-625","0","0","0" +"6543","295","6","0","-3709","-575","0","2","60" +"6544","295","7","0","-3739","-494","0","0","0" +"6545","295","8","0","-3725","-388","0","0","0" +"6546","295","9","0","-3632","-300","0","0","0" +"6547","295","10","0","-3465","-319","0","0","0" +"6548","295","11","0","-3233","-366","0","0","0" +"6549","295","12","1","5981","840","0","0","0" +"6550","295","13","1","6077","746","0","0","0" +"6551","295","14","1","6189","702","0","0","0" +"6552","295","15","1","6299","698","0","0","0" +"6553","295","16","1","6376","761","0","0","0" +"6554","295","17","1","6406","823","0","2","60" +"6555","295","18","1","6417","893","0","0","0" +"6556","295","19","1","6385","1000","0","0","0" +"6557","295","20","1","6267","1066","0","0","0" +"6558","295","21","1","6132","1101","0","0","0" +"6559","295","22","1","5999","1132","0","0","0" +"6639","298","0","1","6797","-4742","702","0","0" +"6638","298","1","1","6803","-4738","704","0","0" +"6637","298","2","1","6819","-4721","709","0","0" +"6636","298","3","1","6835","-4688","719","0","0" +"6635","298","4","1","6839","-4579","749","0","0" +"6634","298","5","1","6821","-4474","773","0","0" +"6633","298","6","1","6782","-4121","773","0","0" +"6632","298","7","1","6688","-3667","759","0","0" +"6631","298","8","1","6672","-3242","695","0","0" +"6630","298","9","1","6733","-2899","653","0","0" +"6629","298","10","1","6797","-2733","661","0","0" +"6628","298","11","1","6947","-2619","693","0","0" +"6627","298","12","1","7026","-2591","695","0","0" +"6626","298","13","1","7102","-2621","698","0","0" +"6625","298","14","1","7233","-2656","654","0","0" +"6624","298","15","1","7379","-2659","559","0","0" +"6623","298","16","1","7561","-2633","517","0","0" +"6622","298","17","1","7658","-2584","495","0","0" +"6621","298","18","1","7618","-2504","485","0","0" +"9199","298","19","1","7567","-2467","479","0","0" +"9200","298","20","1","7487","-2483","464","0","0" +"9205","298","21","1","7456","-2488","464","0","0" +"6704","301","0","0","-12311","1121","113","0","0" +"6705","301","1","0","-12318","819","153","0","0" +"6706","301","2","0","-12381","424","105","0","0" +"6707","301","3","0","-12406","211","49","2","60" +"6708","301","4","0","-12366","34","91","0","0" +"6709","301","5","0","-12302","-85","139","0","0" +"6710","301","6","0","-12184","-257","155","0","0" +"6711","301","7","0","-12007","-390","170","0","0" +"6712","301","8","0","-11704","-408","190","0","0" +"6713","301","9","0","-11440","-401","210","0","0" +"6714","301","10","0","-11372","-402","214","1","0" +"6715","301","11","0","2299","-1001","275","0","0" +"6716","301","12","0","2301","-944","266","0","0" +"6717","301","13","0","2302","-821","252","0","0" +"6718","301","14","0","2311","-510","226","0","0" +"6719","301","15","0","2298","-207","181","0","0" +"6720","301","16","0","2258","-39","150","0","0" +"6721","301","17","0","2199","102","126","0","0" +"6722","301","18","0","2130","200","118","0","0" +"6723","301","19","0","2062","235","117","2","60" +"6724","301","20","0","1998","229","115","0","0" +"6725","301","21","0","1954","158","117","0","0" +"6726","301","22","0","1937","87","120","0","0" +"6727","301","23","0","1918","-28","134","0","0" +"6728","301","24","0","1914","-217","157","0","0" +"6729","301","25","0","1820","-478","201","0","0" +"6730","301","26","0","1797","-536","211","0","0" +"6740","302","0","1","1336","-5170","71","0","0" +"6741","302","1","1","1277","-4934","71","0","0" +"6742","302","2","1","1297","-4773","71","0","0" +"6743","302","3","1","1309","-4707","71","0","0" +"6744","302","4","1","1318","-4658","71","2","60" +"6745","302","5","1","1295","-4555","71","0","0" +"6746","302","6","1","1263","-4536","71","0","0" +"6747","302","7","1","1223","-4564","71","0","0" +"6748","302","8","1","1218","-4625","71","0","0" +"6749","302","9","1","1238","-4700","71","0","0" +"6750","302","10","1","1255","-4831","71","0","0" +"6751","302","11","1","1267","-4961","71","0","0" +"6752","302","12","1","1268","-5140","71","0","0" +"6753","302","13","0","2123","1023","153","0","0" +"6754","302","14","0","1988","779","153","0","0" +"6755","302","15","0","1949","599","153","0","0" +"6756","302","16","0","1945","465","130","0","0" +"6757","302","17","0","1988","342","119","0","0" +"6758","302","18","0","2062","292","114","2","60" +"6759","302","19","0","2201","283","120","0","0" +"6760","302","20","0","2437","270","142","0","0" +"6761","302","21","0","2632","366","142","0","0" +"6816","303","0","1","-4195","3466","0","0","0" +"6817","303","1","1","-4197","3286","0","2","30" +"6818","303","2","1","-4196","3066","0","0","0" +"6819","303","3","1","-4199","2899","0","0","0" +"6820","303","4","1","-4237","2588","0","0","0" +"6821","303","5","1","-4267","2483","0","0","0" +"6822","303","6","1","-4347","2444","0","2","60" +"6823","303","7","1","-4448","2476","0","0","0" +"6824","303","8","1","-4623","2579","0","0","0" +"6825","303","9","1","-4905","2778","0","0","0" +"6826","303","10","1","-5053","2970","0","0","0" +"6827","303","11","1","-5121","3185","0","0","0" +"6828","303","12","1","-5130","3471","0","0","0" +"6829","303","13","1","-5089","3705","0","0","0" +"6830","303","14","1","-5009","3853","0","0","0" +"6831","303","15","1","-4880","3939","0","0","0" +"6832","303","16","1","-4693","3962","0","0","0" +"6833","303","17","1","-4417","3903","0","0","0" +"6834","303","18","1","-4196","3783","0","0","0" +"6835","303","19","1","-4195","3466","0","0","0" +"12892","303","20","1","-4197","3286","0","2","30" +"12893","303","21","1","-4196","3066","0","0","0" +"9088","304","0","1","-3142","-2843","35","0","0" +"9089","304","1","1","-3136","-2847","35","0","0" +"9090","304","2","1","-3128","-2855","38","0","0" +"9091","304","3","1","-3119","-2880","49","0","0" +"9092","304","4","1","-3129","-2914","63","0","0" +"9093","304","5","1","-3176","-2950","78","0","0" +"9094","304","6","1","-3315","-2948","93","0","0" +"9095","304","7","1","-3538","-2862","94","0","0" +"9096","304","8","1","-3683","-2734","94","0","0" +"9097","304","9","1","-3728","-2531","100","0","0" +"9098","304","10","1","-3608","-2251","114","0","0" +"9099","304","11","1","-3394","-2148","115","0","0" +"9100","304","12","1","-3181","-2216","114","0","0" +"9101","304","13","1","-3027","-2086","116","0","0" +"9102","304","14","1","-2765","-2012","130","0","0" +"9103","304","15","1","-2480","-2049","125","0","0" +"9104","304","16","1","-2321","-2054","125","0","0" +"9105","304","17","1","-2169","-1946","118","0","0" +"9106","304","18","1","-2032","-1920","116","0","0" +"9107","304","19","1","-1836","-1962","128","0","0" +"9108","304","20","1","-1634","-2098","119","0","0" +"9110","304","21","1","-1370","-2032","120","0","0" +"9111","304","22","1","-1182","-2254","138","0","0" +"9112","304","23","1","-726","-2418","145","0","0" +"9113","304","24","1","-514","-2451","128","0","0" +"9114","304","25","1","-429","-2520","124","0","0" +"9115","304","26","1","-415","-2551","117","0","0" +"9116","304","27","1","-439","-2599","97","0","0" +"8661","305","0","1","3373","999","6","0","0" +"8662","305","1","1","3374","1006","6","0","0" +"8663","305","2","1","3381","1031","8","0","0" +"8664","305","3","1","3434","1099","16","0","0" +"8665","305","4","1","3564","1066","22","0","0" +"8666","305","5","1","3557","828","25","0","0" +"8667","305","6","1","3503","706","23","0","0" +"8668","305","7","1","3518","579","19","0","0" +"8669","305","8","1","3496","506","15","0","0" +"8670","305","9","1","3422","419","22","0","0" +"8671","305","10","1","3327","331","18","0","0" +"8672","305","11","1","3273","223","22","0","0" +"8673","305","12","1","3202","197","26","0","0" +"8674","305","13","1","3099","222","45","0","0" +"8675","305","14","1","3015","168","72","0","0" +"8676","305","15","1","2901","188","98","0","0" +"8677","305","16","1","2830","160","111","0","0" +"8678","305","17","1","2811","94","113","0","0" +"8679","305","18","1","2859","-33","110","0","0" +"8680","305","19","1","2870","-150","113","0","0" +"8681","305","20","1","2844","-254","119","0","0" +"8682","305","21","1","2864","-363","111","0","0" +"8683","305","22","1","2839","-460","111","0","0" +"8684","305","23","1","2750","-535","117","0","0" +"8685","305","24","1","2622","-600","123","0","0" +"8686","305","25","1","2506","-632","126","0","0" +"8687","305","26","1","2475","-696","133","0","0" +"8688","305","27","1","2486","-829","147","0","0" +"8689","305","28","1","2519","-926","143","0","0" +"8690","305","29","1","2503","-1090","139","0","0" +"8691","305","30","1","2464","-1196","133","0","0" +"8692","305","31","1","2457","-1306","140","0","0" +"8693","305","32","1","2382","-1470","133","0","0" +"8694","305","33","1","2353","-1612","133","0","0" +"8695","305","34","1","2287","-1708","128","0","0" +"8696","305","35","1","2058","-1865","108","0","0" +"8697","305","36","1","1990","-1941","107","0","0" +"8698","305","37","1","1863","-1970","122","0","0" +"8699","305","38","1","1759","-1952","113","0","0" +"8700","305","39","1","1666","-1976","117","0","0" +"8728","305","40","1","1575","-2119","106","0","0" +"8729","305","41","1","1494","-2172","101","0","0" +"8730","305","42","1","1327","-2150","111","0","0" +"8731","305","43","1","1198","-2150","165","0","0" +"8732","305","44","1","1128","-2198","176","0","0" +"8733","305","45","1","986","-2256","133","0","0" +"8734","305","46","1","867","-2332","123","0","0" +"8735","305","47","1","743","-2332","108","0","0" +"8736","305","48","1","654","-2321","120","0","0" +"8737","305","49","1","565","-2304","147","0","0" +"8738","305","50","1","441","-2292","209","0","0" +"8739","305","51","1","338","-2308","248","0","0" +"8740","305","52","1","231","-2371","214","0","0" +"8741","305","53","1","106","-2520","138","0","0" +"8742","305","54","1","-91","-2578","126","0","0" +"8743","305","55","1","-238","-2502","142","0","0" +"8744","305","56","1","-338","-2493","136","0","0" +"8745","305","57","1","-410","-2535","120","0","0" +"8746","305","58","1","-442","-2599","98","0","0" +"6837","306","0","1","6812","-4611","711","0","0" +"6838","306","1","1","6829","-4571","730","0","0" +"6839","306","2","1","6893","-4484","763","0","0" +"6840","306","3","1","6905","-4299","773","0","0" +"6841","306","4","1","6873","-4144","745","0","0" +"6842","306","5","1","6883","-3926","745","0","0" +"6843","306","6","1","6818","-3772","756","0","0" +"6844","306","7","1","6565","-3533","756","0","0" +"6845","306","8","1","6483","-3276","665","0","0" +"6846","306","9","1","6475","-3015","650","0","0" +"6847","306","10","1","6379","-2824","661","0","0" +"6848","306","11","1","6453","-2563","643","0","0" +"6849","306","12","1","6418","-2370","640","0","0" +"6850","306","13","1","6460","-2253","654","0","0" +"6851","306","14","1","6409","-2138","658","0","0" +"6852","306","15","1","6416","-1997","618","0","0" +"6853","306","16","1","6487","-1891","603","0","0" +"6854","306","17","1","6430","-1734","576","0","0" +"6855","306","18","1","6427","-1589","527","0","0" +"6856","306","19","1","6520","-1414","488","0","0" +"6857","306","20","1","6546","-1248","482","0","0" +"6858","306","21","1","6495","-1068","499","0","0" +"6859","306","22","1","6395","-860","522","0","0" +"6860","306","23","1","6293","-754","511","0","0" +"6861","306","24","1","6096","-724","483","0","0" +"6862","306","25","1","5923","-668","458","0","0" +"6863","306","26","1","5716","-659","422","0","0" +"6864","306","27","1","5601","-735","424","0","0" +"6865","306","28","1","5357","-769","411","0","0" +"6866","306","29","1","5258","-693","408","0","0" +"6867","306","30","1","5241","-428","401","0","0" +"6868","306","31","1","5156","-326","391","0","0" +"6869","306","32","1","5093","-320","380","0","0" +"6870","306","33","1","5068","-338","368","0","0" +"6906","307","0","1","5071","-336","368","0","0" +"6905","307","1","1","5070","-326","368","0","0" +"6904","307","2","1","5076","-291","369","0","0" +"6903","307","3","1","5116","-233","371","0","0" +"6902","307","4","1","5182","-233","363","0","0" +"6901","307","5","1","5264","-310","341","0","0" +"6900","307","6","1","5256","-440","334","0","0" +"6899","307","7","1","5267","-569","329","0","0" +"6898","307","8","1","5276","-696","349","0","0" +"6897","307","9","1","5307","-760","378","0","0" +"6896","307","10","1","5404","-787","404","0","0" +"6895","307","11","1","5577","-974","436","0","0" +"6894","307","12","1","5623","-1099","479","0","0" +"6893","307","13","1","5775","-1217","492","0","0" +"6892","307","14","1","6023","-1246","459","0","0" +"6891","307","15","1","6262","-1430","442","0","0" +"6890","307","16","1","6347","-1579","496","0","0" +"6889","307","17","1","6484","-1690","533","0","0" +"6888","307","18","1","6535","-1788","595","0","0" +"6887","307","19","1","6519","-1949","618","0","0" +"6886","307","20","1","6621","-2086","657","0","0" +"6885","307","21","1","6636","-2161","658","0","0" +"6884","307","22","1","6683","-2287","644","0","0" +"6883","307","23","1","6690","-2488","613","0","0" +"6882","307","24","1","6768","-2806","653","0","0" +"6881","307","25","1","6663","-3097","669","0","0" +"6907","307","26","1","6515","-3247","650","0","0" +"6908","307","27","1","6458","-3662","779","0","0" +"6909","307","28","1","6540","-4017","723","0","0" +"6910","307","29","1","6566","-4391","748","0","0" +"6911","307","30","1","6570","-4556","758","0","0" +"6912","307","31","1","6719","-4598","733","0","0" +"6913","307","32","1","6809","-4606","712","0","0" +"6916","308","0","1","-5408","-2415","90","0","0" +"6917","308","1","1","-5414","-2413","91","0","0" +"6918","308","2","1","-5455","-2401","104","0","0" +"6919","308","3","1","-5526","-2395","98","0","0" +"6920","308","4","1","-5565","-2499","94","0","0" +"6921","308","5","1","-5505","-2769","65","0","0" +"6922","308","6","1","-5461","-2896","54","0","0" +"6923","308","7","1","-5474","-2991","47","0","0" +"6924","308","8","1","-5552","-3120","38","0","0" +"6925","308","9","1","-5563","-3302","18","0","0" +"6926","308","10","1","-5702","-3445","-8","0","0" +"6927","308","11","1","-5960","-3516","-36","0","0" +"6928","308","12","1","-6197","-3559","-42","0","0" +"6929","308","13","1","-6455","-3521","-39","0","0" +"6930","308","14","1","-6646","-3672","-35","0","0" +"6931","308","15","1","-6756","-3699","-2","0","0" +"6932","308","16","1","-6801","-3747","37","0","0" +"6933","308","17","1","-6882","-3760","76","0","0" +"6934","308","18","1","-6960","-3722","62","0","0" +"6935","308","19","1","-7022","-3750","30","0","0" +"6936","308","20","1","-7049","-3780","11","0","0" +"6938","309","0","1","-1198","30","180","0","0" +"6939","309","1","1","-1201","30","181","0","0" +"6940","309","2","1","-1214","34","183","0","0" +"6941","309","3","1","-1263","51","183","0","0" +"6942","309","4","1","-1309","6","164","0","0" +"6943","309","5","1","-1381","-198","69","0","0" +"6944","309","6","1","-1733","-267","6","0","0" +"6945","309","7","1","-1965","-367","9","0","0" +"6946","309","8","1","-2251","-382","35","0","0" +"6947","309","9","1","-2368","-471","29","0","0" +"6948","309","10","1","-2386","-665","4","0","0" +"6949","309","11","1","-2328","-830","8","0","0" +"6950","309","12","1","-2493","-1036","8","0","0" +"6951","309","13","1","-2523","-1303","11","0","0" +"6952","309","14","1","-2460","-1533","123","0","0" +"6953","309","15","1","-2460","-1650","135","0","0" +"6954","309","16","1","-2518","-1787","100","0","0" +"6955","309","17","1","-2737","-1955","106","0","0" +"6956","309","18","1","-2932","-2012","99","0","0" +"6957","309","19","1","-3130","-2048","100","0","0" +"6958","309","20","1","-3425","-2008","112","0","0" +"6959","309","21","1","-3753","-2053","99","0","0" +"6960","309","22","1","-3993","-2038","105","0","0" +"6961","309","23","1","-4134","-1966","100","0","0" +"6962","309","24","1","-4227","-1894","99","0","0" +"6963","309","25","1","-4383","-1890","95","0","0" +"6964","309","26","1","-4523","-1854","102","0","0" +"6965","309","27","1","-4623","-1875","93","0","0" +"6966","309","28","1","-4772","-1978","35","0","0" +"6967","309","29","1","-4864","-2109","28","0","0" +"6968","309","30","1","-5049","-2214","29","0","0" +"6969","309","31","1","-5181","-2415","55","0","0" +"6970","309","32","1","-5347","-2490","65","0","0" +"6971","309","33","1","-5444","-2564","70","0","0" +"6972","309","34","1","-5500","-2661","68","0","0" +"6973","309","35","1","-5505","-2769","65","0","0" +"6974","309","36","1","-5461","-2896","54","0","0" +"6975","309","37","1","-5474","-2991","47","0","0" +"6976","309","38","1","-5552","-3120","38","0","0" +"6977","309","39","1","-5563","-3302","18","0","0" +"6978","309","40","1","-5702","-3445","-8","0","0" +"6979","309","41","1","-5960","-3516","-36","0","0" +"6980","309","42","1","-6197","-3559","-42","0","0" +"6981","309","43","1","-6455","-3521","-39","0","0" +"6982","309","44","1","-6646","-3672","-35","0","0" +"6983","309","45","1","-6756","-3699","-2","0","0" +"6984","309","46","1","-6801","-3747","37","0","0" +"6985","309","47","1","-6882","-3760","76","0","0" +"6986","309","48","1","-6950","-3727","63","0","0" +"6987","309","49","1","-7022","-3750","30","0","0" +"9510","309","50","1","-7049","-3780","11","0","0" +"7016","310","0","1","-7049","-3781","11","0","0" +"7015","310","1","1","-7066","-3773","16","0","0" +"7014","310","2","1","-7084","-3746","23","0","0" +"7013","310","3","1","-7088","-3693","36","0","0" +"7012","310","4","1","-7038","-3648","51","0","0" +"7011","310","5","1","-6894","-3746","72","0","0" +"7010","310","6","1","-6797","-3735","27","0","0" +"7009","310","7","1","-6688","-3686","-21","0","0" +"7008","310","8","1","-6484","-3642","-38","0","0" +"7007","310","9","1","-6201","-3600","-42","0","0" +"7006","310","10","1","-5934","-3501","-36","0","0" +"7005","310","11","1","-5772","-3300","-15","0","0" +"7004","310","12","1","-5716","-3116","7","0","0" +"7003","310","13","1","-5598","-2940","18","0","0" +"7002","310","14","1","-5534","-2757","33","0","0" +"7001","310","15","1","-5456","-2530","96","0","0" +"7000","310","16","1","-5423","-2456","105","0","0" +"9211","310","17","1","-5408","-2416","92","0","0" +"7017","311","0","1","-7049","-3780","11","0","0" +"7018","311","1","1","-7067","-3771","15","0","0" +"7019","311","2","1","-7092","-3730","25","0","0" +"7020","311","3","1","-7088","-3689","36","0","0" +"7021","311","4","1","-7029","-3654","49","0","0" +"7022","311","5","1","-6894","-3746","72","0","0" +"7023","311","6","1","-6797","-3735","27","0","0" +"7024","311","7","1","-6688","-3686","-21","0","0" +"7025","311","8","1","-6484","-3642","-38","0","0" +"7026","311","9","1","-6201","-3600","-42","0","0" +"7027","311","10","1","-5934","-3501","-36","0","0" +"7028","311","11","1","-5772","-3300","-15","0","0" +"7029","311","12","1","-5716","-3116","7","0","0" +"7030","311","13","1","-5598","-2940","18","0","0" +"7031","311","14","1","-5534","-2757","33","0","0" +"7032","311","15","1","-5494","-2565","67","0","0" +"7033","311","16","1","-5369","-2437","76","0","0" +"7034","311","17","1","-5337","-2273","72","0","0" +"7035","311","18","1","-5211","-2083","66","0","0" +"7036","311","19","1","-4985","-1987","64","0","0" +"7037","311","20","1","-4852","-1832","70","0","0" +"7038","311","21","1","-4729","-1809","81","0","0" +"7039","311","22","1","-4666","-1836","122","0","0" +"7040","311","23","1","-4533","-1867","102","0","0" +"7041","311","24","1","-4335","-1882","106","0","0" +"7042","311","25","1","-4159","-1899","115","0","0" +"7043","311","26","1","-4072","-1876","126","0","0" +"7044","311","27","1","-3952","-1886","142","0","0" +"7045","311","28","1","-3665","-1899","139","0","0" +"7046","311","29","1","-3328","-1793","133","0","0" +"7047","311","30","1","-3112","-1991","129","0","0" +"7048","311","31","1","-2737","-1953","133","0","0" +"7049","311","32","1","-2544","-1819","134","0","0" +"7050","311","33","1","-2460","-1532","122","0","0" +"7051","311","34","1","-2465","-1299","10","0","0" +"7052","311","35","1","-2425","-1200","0","0","0" +"7053","311","36","1","-2416","-1033","-1","0","0" +"7054","311","37","1","-2402","-831","40","0","0" +"7055","311","38","1","-2396","-615","-1","0","0" +"7056","311","39","1","-2366","-467","18","0","0" +"7057","311","40","1","-2332","-364","37","0","0" +"7058","311","41","1","-2166","-167","29","0","0" +"7059","311","42","1","-1817","93","44","0","0" +"7060","311","43","1","-1440","263","56","0","0" +"7061","311","44","1","-1180","213","138","0","0" +"7062","311","45","1","-1119","123","171","0","0" +"7063","311","46","1","-1122","36","190","0","0" +"7064","311","47","1","-1181","27","180","0","0" +"7065","311","48","1","-1196","30","180","0","0" +"7076","312","0","30","574","-47","38","0","0" +"7077","312","1","30","566","-39","39","0","0" +"7078","312","2","30","541","-34","46","0","0" +"7079","312","3","30","443","-40","60","0","0" +"7080","312","4","30","362","-9","91","0","0" +"7081","312","5","30","286","55","132","0","0" +"7082","312","6","30","252","116","154","0","0" +"7083","312","7","0","-3938","-1564","539","0","0" +"7084","312","8","0","-3980","-1574","539","0","0" +"7085","312","9","0","-4231","-1626","539","0","0" +"7086","312","10","0","-4505","-1641","539","0","0" +"7087","312","11","0","-4719","-1647","539","0","0" +"7088","312","12","0","-4850","-1692","542","0","0" +"7089","312","13","0","-4990","-1705","542","0","0" +"7090","312","14","0","-5228","-1630","542","0","0" +"7091","312","15","0","-5400","-1575","527","0","0" +"7092","312","16","0","-5517","-1505","504","0","0" +"7093","312","17","0","-5619","-1350","464","0","0" +"7094","312","18","0","-5641","-1172","458","0","0" +"7095","312","19","0","-5507","-911","471","0","0" +"7096","312","20","0","-5290","-774","471","0","0" +"7097","312","21","0","-5150","-749","516","0","0" +"7098","312","22","0","-5028","-830","508","0","0" +"7099","312","23","0","-4964","-902","545","0","0" +"7100","312","24","0","-4952","-961","542","0","0" +"7101","312","25","0","-4925","-1002","542","0","0" +"7102","312","26","0","-4841","-1062","552","0","0" +"7103","312","27","0","-4794","-1058","553","0","0" +"7104","312","28","0","-4749","-1092","532","0","0" +"7105","312","29","0","-4767","-1142","516","0","0" +"9052","312","30","0","-4822","-1157","503","0","0" +"7070","313","0","30","-1335","-319","91","0","0" +"7071","313","1","30","-1338","-320","93","0","0" +"7072","313","2","30","-1346","-324","97","0","0" +"7073","313","3","30","-1361","-332","107","0","0" +"7074","313","4","30","-1374","-389","117","0","0" +"7075","313","5","30","-1327","-495","129","0","0" +"9369","313","6","30","-1305","-681","146","0","0" +"9370","313","7","30","-1301","-765","159","0","0" +"7136","314","0","0","-4822","-1157","503","0","0" +"7135","314","1","0","-4819","-1156","504","0","0" +"7134","314","2","0","-4799","-1153","510","0","0" +"7133","314","3","0","-4767","-1142","516","0","0" +"7132","314","4","0","-4749","-1092","532","0","0" +"7131","314","5","0","-4794","-1058","553","0","0" +"7130","314","6","0","-4841","-1062","552","0","0" +"7129","314","7","0","-4925","-1002","542","0","0" +"7128","314","8","0","-4952","-961","542","0","0" +"7127","314","9","0","-4964","-902","545","0","0" +"7126","314","10","0","-5028","-830","508","0","0" +"7125","314","11","0","-5150","-749","516","0","0" +"7124","314","12","0","-5290","-774","471","0","0" +"7123","314","13","0","-5507","-911","471","0","0" +"7122","314","14","0","-5641","-1172","458","0","0" +"7121","314","15","0","-5619","-1350","464","0","0" +"7120","314","16","0","-5517","-1505","504","0","0" +"7119","314","17","0","-5400","-1575","527","0","0" +"7118","314","18","0","-5228","-1630","542","0","0" +"7117","314","19","0","-4990","-1705","542","0","0" +"7116","314","20","0","-4850","-1692","542","0","0" +"7115","314","21","0","-4719","-1647","539","0","0" +"7114","314","22","0","-4505","-1641","539","0","0" +"7113","314","23","0","-4231","-1626","539","0","0" +"7112","314","24","0","-3980","-1574","539","0","0" +"7111","314","25","0","-3938","-1564","539","1","0" +"7110","314","26","30","252","116","154","0","0" +"7109","314","27","30","286","55","132","0","0" +"7108","314","28","30","362","-9","91","0","0" +"7107","314","29","30","443","-40","60","0","0" +"9371","314","30","30","541","-34","46","0","0" +"9373","314","31","30","574","-47","39","0","0" +"7146","315","0","1","7795","-2403","490","0","0" +"7147","315","1","1","7786","-2401","492","0","0" +"7148","315","2","1","7765","-2394","495","0","0" +"7149","315","3","1","7728","-2370","500","0","0" +"7150","315","4","1","7697","-2311","494","0","0" +"7151","315","5","1","7686","-2218","503","0","0" +"7152","315","6","1","7682","-2151","523","0","0" +"7153","315","7","1","7654","-2078","564","0","0" +"7154","315","8","1","7682","-1999","596","0","0" +"7163","315","9","1","7717","-1967","608","0","0" +"7164","315","10","1","7761","-1936","572","0","0" +"7165","315","11","1","7757","-1828","507","0","0" +"7166","315","12","1","7644","-1677","444","0","0" +"7167","315","13","1","7494","-1701","387","0","0" +"7168","315","14","1","7393","-1650","260","0","0" +"7169","315","15","1","7328","-1552","189","0","0" +"7170","315","16","1","7369","-1493","168","0","0" +"7171","315","17","1","7387","-1394","243","0","0" +"7172","315","18","1","7407","-1318","204","0","0" +"7173","315","19","1","7390","-1247","183","0","0" +"7174","315","20","1","7342","-1214","140","0","0" +"7175","315","21","1","7347","-1148","102","0","0" +"7176","315","22","1","7413","-1097","57","0","0" +"7177","315","23","1","7511","-1066","50","0","0" +"7178","315","24","1","7546","-923","35","0","0" +"7193","315","25","1","7560","-770","25","0","0" +"7194","315","26","1","7793","-654","5","0","0" +"7195","315","27","1","7915","-132","69","0","0" +"7196","315","28","1","8199","611","80","0","0" +"9425","315","29","1","8381","831","80","0","0" +"9427","315","30","1","8645","844","25","0","0" +"7137","316","0","1","7787","-2404","490","0","0" +"7138","316","1","1","7779","-2400","492","0","0" +"7139","316","2","1","7760","-2393","498","0","0" +"7140","316","3","1","7704","-2395","512","0","0" +"7141","316","4","1","7622","-2466","530","0","0" +"7142","316","5","1","7324","-2476","600","0","0" +"7143","316","6","1","7224","-2468","659","0","0" +"7144","316","7","1","7133","-2316","702","0","0" +"7145","316","8","1","6866","-2318","674","0","0" +"7155","316","9","1","6723","-2299","666","0","0" +"7156","316","10","1","6644","-2160","659","0","0" +"7157","316","11","1","6572","-2021","658","0","0" +"7158","316","12","1","6465","-1812","602","0","0" +"7159","316","13","1","6383","-1620","555","0","0" +"7160","316","14","1","6232","-1426","415","0","0" +"7161","316","15","1","6058","-1246","434","0","0" +"7162","316","16","1","5773","-1217","485","0","0" +"7179","316","17","1","5640","-1114","476","0","0" +"7180","316","18","1","5536","-966","445","0","0" +"7181","316","19","1","5408","-774","410","0","0" +"7182","316","20","1","5301","-766","399","0","0" +"7183","316","21","1","5107","-754","381","0","0" +"7184","316","22","1","4900","-733","356","0","0" +"7185","316","23","1","4775","-741","337","0","0" +"7186","316","24","1","4633","-829","313","0","0" +"7187","316","25","1","4492","-912","324","0","0" +"7188","316","26","1","4334","-966","315","0","0" +"7189","316","27","1","4199","-1065","314","0","0" +"7190","316","28","1","4124","-1154","302","0","0" +"7191","316","29","1","3950","-1227","288","0","0" +"7192","316","30","1","3743","-1383","254","0","0" +"7197","316","31","1","3522","-1504","182","0","0" +"7198","316","32","1","3287","-1560","182","0","0" +"7199","316","33","1","3188","-1699","182","0","0" +"7200","316","34","1","2914","-1874","180","0","0" +"7201","316","35","1","2721","-1973","172","0","0" +"7202","316","36","1","2412","-2026","146","0","0" +"7203","316","37","1","2185","-2275","123","0","0" +"7204","316","38","1","2006","-2251","119","0","0" +"7205","316","39","1","1880","-2172","117","0","0" +"7206","316","40","1","1714","-2194","104","0","0" +"7207","316","41","1","1566","-2224","104","0","0" +"7208","316","42","1","1382","-2252","104","0","0" +"7209","316","43","1","1250","-2207","143","0","0" +"7210","316","44","1","1133","-2220","168","0","0" +"7211","316","45","1","946","-2201","153","0","0" +"7212","316","46","1","700","-2088","139","0","0" +"7213","316","47","1","354","-1835","134","0","0" +"7214","316","48","1","33","-1633","139","0","0" +"7215","316","49","1","-268","-1465","136","0","0" +"7216","316","50","1","-663","-1258","232","0","0" +"7217","316","51","1","-845","-1158","182","0","0" +"7218","316","52","1","-926","-995","102","0","0" +"7219","316","53","1","-1047","-738","19","0","0" +"7220","316","54","1","-1092","-478","26","0","0" +"7221","316","55","1","-1181","-274","108","0","0" +"7222","316","56","1","-1071","-149","159","0","0" +"7223","316","57","1","-1046","-47","186","0","0" +"7224","316","58","1","-1087","5","190","0","0" +"7225","316","59","1","-1197","29","178","0","0" +"7242","317","0","0","-6630","-2187","245","0","0" +"7243","317","1","0","-6651","-2191","249","0","0" +"7244","317","2","0","-6703","-2201","264","0","0" +"7245","317","3","0","-6777","-2215","281","0","0" +"7246","317","4","0","-6887","-2207","292","0","0" +"7247","317","5","0","-6944","-2058","303","0","0" +"7248","317","6","0","-6899","-1845","284","0","0" +"7249","317","7","0","-6998","-1719","264","0","0" +"7250","317","8","0","-7202","-1666","284","0","0" +"7251","317","9","0","-7377","-1611","333","0","0" +"7252","317","10","0","-7606","-1584","241","0","0" +"7253","317","11","0","-8202","-1267","175","0","0" +"7254","317","12","0","-8491","-1196","266","0","0" +"7255","317","13","0","-9099","-1258","179","0","0" +"7256","317","14","0","-9538","-1324","167","0","0" +"7257","317","15","0","-9948","-1370","167","0","0" +"7258","317","16","0","-10371","-1421","178","0","0" +"7259","317","17","0","-10430","-1665","178","0","0" +"7260","317","18","0","-10435","-1878","188","0","0" +"7261","317","19","0","-10577","-2236","178","0","0" +"7262","317","20","0","-10483","-2520","98","0","0" +"7263","317","21","0","-10277","-2980","89","0","0" +"7264","317","22","0","-10213","-3334","72","0","0" +"7265","317","23","0","-10332","-3411","72","0","0" +"7266","317","24","0","-10419","-3362","72","0","0" +"7267","317","25","0","-10435","-3290","27","0","0" +"7268","317","26","0","-10458","-3279","22","0","0" +"7339","318","0","0","-10456","-3279","22","0","0" +"7338","318","1","0","-10453","-3273","24","0","0" +"7337","318","2","0","-10452","-3253","27","0","0" +"7336","318","3","0","-10455","-3220","38","0","0" +"7335","318","4","0","-10457","-3109","80","0","0" +"7334","318","5","0","-10466","-2866","101","0","0" +"7333","318","6","0","-10559","-2406","130","0","0" +"7332","318","7","0","-10588","-2199","182","0","0" +"7331","318","8","0","-10447","-1883","182","0","0" +"7330","318","9","0","-10442","-1658","182","0","0" +"7329","318","10","0","-10354","-1470","170","0","0" +"7328","318","11","0","-10000","-1433","170","0","0" +"7327","318","12","0","-9432","-1331","163","0","0" +"7326","318","13","0","-9037","-1226","178","0","0" +"7325","318","14","0","-8508","-1203","265","0","0" +"7324","318","15","0","-8282","-1234","234","0","0" +"7323","318","16","0","-7606","-1584","246","0","0" +"7322","318","17","0","-7378","-1601","332","0","0" +"7321","318","18","0","-7094","-1504","274","0","0" +"7320","318","19","0","-6891","-1512","255","0","0" +"7319","318","20","0","-6825","-1664","264","0","0" +"7318","318","21","0","-6899","-1845","284","0","0" +"7317","318","22","0","-6944","-2058","303","0","0" +"7316","318","23","0","-6881","-2334","298","0","0" +"7315","318","24","0","-6782","-2452","283","0","0" +"7314","318","25","0","-6673","-2444","279","0","0" +"7313","318","26","0","-6623","-2355","273","0","0" +"7312","318","27","0","-6615","-2233","258","0","0" +"7311","318","28","0","-6633","-2179","247","0","0" +"7340","319","0","0","-6635","-2185","245","0","0" +"7341","319","1","0","-6692","-2197","255","0","0" +"7342","319","2","0","-6784","-2202","270","0","0" +"7343","319","3","0","-6900","-2290","272","0","0" +"7344","319","4","0","-6842","-2451","279","0","0" +"7345","319","5","0","-6713","-2689","270","0","0" +"7346","319","6","0","-6633","-2891","279","0","0" +"7347","319","7","0","-6517","-3132","329","0","0" +"7348","319","8","0","-6316","-3312","319","0","0" +"7349","319","9","0","-6164","-3347","301","0","0" +"7350","319","10","0","-5931","-3289","313","0","0" +"7351","319","11","0","-5806","-3389","318","0","0" +"7352","319","12","0","-5580","-3394","306","0","0" +"7353","319","13","0","-5343","-3294","303","0","0" +"7354","319","14","0","-4939","-3435","331","0","0" +"7355","319","15","0","-4744","-3364","329","0","0" +"7356","319","16","0","-4582","-3289","189","0","0" +"7357","319","17","0","-4451","-3238","189","0","0" +"7358","319","18","0","-4247","-3153","132","0","0" +"7359","319","19","0","-4104","-3006","30","0","0" +"7360","319","20","0","-3928","-2913","31","0","0" +"7361","319","21","0","-3629","-2832","31","0","0" +"7362","319","22","0","-3354","-2767","40","0","0" +"7363","319","23","0","-3214","-2690","28","0","0" +"7364","319","24","0","-3079","-2502","25","0","0" +"7365","319","25","0","-2905","-2464","60","0","0" +"7366","319","26","0","-2744","-2497","81","0","0" +"7367","319","27","0","-2607","-2487","91","0","0" +"7368","319","28","0","-2435","-2449","110","0","0" +"7369","319","29","0","-2109","-2460","107","0","0" +"7370","319","30","0","-1876","-2541","65","0","0" +"7371","319","31","0","-1749","-2616","77","0","0" +"7372","319","32","0","-1635","-2735","62","0","0" +"7373","319","33","0","-1575","-2942","48","0","0" +"7374","319","34","0","-1513","-3058","40","0","0" +"7375","319","35","0","-1337","-3186","48","0","0" +"7376","319","36","0","-1168","-3441","64","0","0" +"7377","319","37","0","-991","-3513","85","0","0" +"7378","319","38","0","-916","-3493","72","0","0" +"7417","320","0","0","-916","-3493","72","0","0" +"7416","320","1","0","-916","-3489","73","0","0" +"7415","320","2","0","-917","-3469","77","0","0" +"7414","320","3","0","-925","-3353","97","0","0" +"7413","320","4","0","-1087","-3251","70","0","0" +"7412","320","5","0","-1408","-3215","52","0","0" +"7411","320","6","0","-1537","-3101","27","0","0" +"7410","320","7","0","-1542","-2886","48","0","0" +"7409","320","8","0","-1655","-2696","62","0","0" +"7408","320","9","0","-1765","-2607","77","0","0" +"7407","320","10","0","-1872","-2545","67","0","0" +"7406","320","11","0","-2172","-2456","114","0","0" +"7405","320","12","0","-2435","-2447","108","0","0" +"7404","320","13","0","-2607","-2487","91","0","0" +"7403","320","14","0","-2744","-2497","81","0","0" +"7402","320","15","0","-2905","-2464","60","0","0" +"7401","320","16","0","-3079","-2502","25","0","0" +"7400","320","17","0","-3214","-2690","28","0","0" +"7399","320","18","0","-3354","-2767","40","0","0" +"7398","320","19","0","-3629","-2832","31","0","0" +"7397","320","20","0","-3928","-2913","31","0","0" +"7396","320","21","0","-4104","-3006","30","0","0" +"7395","320","22","0","-4247","-3153","132","0","0" +"7394","320","23","0","-4451","-3238","189","0","0" +"7393","320","24","0","-4582","-3289","189","0","0" +"7392","320","25","0","-4744","-3364","329","0","0" +"7391","320","26","0","-4939","-3435","331","0","0" +"7390","320","27","0","-5343","-3294","303","0","0" +"7389","320","28","0","-5580","-3394","306","0","0" +"7388","320","29","0","-5806","-3389","318","0","0" +"7387","320","30","0","-5931","-3289","313","0","0" +"7386","320","31","0","-6164","-3347","301","0","0" +"7385","320","32","0","-6316","-3312","319","0","0" +"7384","320","33","0","-6517","-3132","329","0","0" +"7383","320","34","0","-6633","-2891","279","0","0" +"7382","320","35","0","-6713","-2689","270","0","0" +"7381","320","36","0","-6635","-2498","279","0","0" +"7380","320","37","0","-6603","-2384","278","0","0" +"7379","320","38","0","-6604","-2284","270","0","0" +"9367","320","39","0","-6616","-2227","258","0","0" +"9368","320","40","0","-6633","-2181","247","0","0" +"7418","321","0","0","-917","-3496","72","0","0" +"7419","321","1","0","-917","-3493","72","0","0" +"7420","321","2","0","-916","-3477","75","0","0" +"7421","321","3","0","-908","-3432","85","0","0" +"7422","321","4","0","-851","-3275","113","0","0" +"7423","321","5","0","-1065","-3097","89","0","0" +"7424","321","6","0","-1137","-2886","61","0","0" +"7425","321","7","0","-1128","-2600","72","0","0" +"7426","321","8","0","-895","-2362","77","0","0" +"7427","321","9","0","-938","-2066","65","0","0" +"7428","321","10","0","-856","-1790","81","0","0" +"7429","321","11","0","-607","-1568","109","0","0" +"7430","321","12","0","-534","-1420","102","0","0" +"7431","321","13","0","-401","-1311","102","0","0" +"7432","321","14","0","-424","-1126","99","0","0" +"7433","321","15","0","-397","-910","78","0","0" +"7434","321","16","0","-294","-799","80","0","0" +"7435","321","17","0","-168","-868","78","0","0" +"9365","321","18","0","-68","-880","69","0","0" +"9366","321","19","0","0","-860","60","0","0" +"7453","322","0","0","0","-859","59","0","0" +"7452","322","1","0","-1","-857","60","0","0" +"7451","322","2","0","-6","-839","66","0","0" +"7450","322","3","0","-30","-782","77","0","0" +"7449","322","4","0","-112","-758","86","0","0" +"7448","322","5","0","-313","-906","67","0","0" +"7447","322","6","0","-285","-1096","79","0","0" +"7446","322","7","0","-366","-1203","99","0","0" +"7445","322","8","0","-401","-1311","102","0","0" +"7444","322","9","0","-534","-1420","102","0","0" +"7443","322","10","0","-607","-1568","109","0","0" +"7442","322","11","0","-848","-1788","80","0","0" +"7441","322","12","0","-928","-2058","65","0","0" +"7440","322","13","0","-895","-2362","77","0","0" +"7439","322","14","0","-1128","-2600","72","0","0" +"7438","322","15","0","-1137","-2886","61","0","0" +"7437","322","16","0","-1185","-3285","90","0","0" +"7436","322","17","0","-1110","-3464","90","0","0" +"9490","322","18","0","-987","-3510","81","0","0" +"9491","322","19","0","-921","-3496","72","0","0" +"7454","323","0","1","-7224","-3734","9","0","0" +"7455","323","1","1","-7224","-3737","10","0","0" +"7456","323","2","1","-7223","-3753","13","0","0" +"7457","323","3","1","-7210","-3836","32","0","0" +"7458","323","4","1","-7123","-3853","38","0","0" +"7459","323","5","1","-6979","-3717","56","0","0" +"7460","323","6","1","-6864","-3758","77","0","0" +"7461","323","7","1","-6720","-3693","-2","0","0" +"7462","323","8","1","-6515","-3674","-35","0","0" +"7463","323","9","1","-6241","-3793","-40","0","0" +"7464","323","10","1","-5919","-3701","-42","0","0" +"7465","323","11","1","-5732","-3550","-32","0","0" +"7466","323","12","1","-5614","-3360","-3","0","0" +"7467","323","13","1","-5581","-3258","6","0","0" +"7468","323","14","1","-5616","-3010","-12","0","0" +"7469","323","15","1","-5522","-2704","-11","0","0" +"7470","323","16","1","-5562","-2507","34","0","0" +"7471","323","17","1","-5550","-2338","8","0","0" +"7472","323","18","1","-5475","-2240","-10","0","0" +"7473","323","19","1","-5341","-2175","-11","0","0" +"7474","323","20","1","-5242","-1995","-29","0","0" +"7475","323","21","1","-5236","-1827","-45","0","0" +"7476","323","22","1","-5144","-1595","-24","0","0" +"7477","323","23","1","-4987","-1519","-34","0","0" +"7478","323","24","1","-4841","-1404","-31","0","0" +"7479","323","25","1","-4746","-1295","-25","0","0" +"7480","323","26","1","-4631","-1265","-20","0","0" +"7481","323","27","1","-4510","-1189","-12","0","0" +"7482","323","28","1","-4368","-1033","-4","0","0" +"9355","323","29","1","-4356","-940","-20","0","0" +"9356","323","30","1","-4380","-794","-8","0","0" +"12405","323","31","1","-4444","-764","-19","0","0" +"12406","323","32","1","-4491","-776","-37","0","0" +"7511","324","0","1","-4492","-776","-38","0","0" +"7510","324","1","1","-4492","-779","-38","0","0" +"7509","324","2","1","-4491","-795","-35","0","0" +"7508","324","3","1","-4486","-881","-20","0","0" +"7507","324","4","1","-4422","-1051","-8","0","0" +"7506","324","5","1","-4510","-1189","-12","0","0" +"7505","324","6","1","-4631","-1265","-20","0","0" +"7504","324","7","1","-4746","-1295","-25","0","0" +"7503","324","8","1","-4841","-1404","-31","0","0" +"7502","324","9","1","-4978","-1518","-34","0","0" +"7501","324","10","1","-5144","-1595","-24","0","0" +"7500","324","11","1","-5219","-1834","-35","0","0" +"7499","324","12","1","-5242","-1995","-29","0","0" +"7498","324","13","1","-5341","-2175","-20","0","0" +"7497","324","14","1","-5475","-2240","-12","0","0" +"7496","324","15","1","-5550","-2338","0","0","0" +"7495","324","16","1","-5569","-2475","7","0","0" +"7494","324","17","1","-5522","-2704","-11","0","0" +"7493","324","18","1","-5616","-3010","-12","0","0" +"7492","324","19","1","-5581","-3258","6","0","0" +"7491","324","20","1","-5614","-3360","-3","0","0" +"7490","324","21","1","-5732","-3550","-32","0","0" +"7489","324","22","1","-5919","-3701","-42","0","0" +"7488","324","23","1","-6241","-3793","-40","0","0" +"7487","324","24","1","-6515","-3674","-35","0","0" +"7486","324","25","1","-6688","-3690","-25","0","0" +"7485","324","26","1","-6866","-3751","71","0","0" +"7484","324","27","1","-6993","-3702","58","0","0" +"7483","324","28","1","-7119","-3824","37","0","0" +"9497","324","29","1","-7208","-3792","25","0","0" +"9498","324","30","1","-7224","-3734","10","0","0" +"7512","325","0","1","-4491","-775","-38","0","0" +"7513","325","1","1","-4499","-812","-36","0","0" +"7514","325","2","1","-4491","-857","-34","0","0" +"7515","325","3","1","-4440","-900","-29","0","0" +"7516","325","4","1","-4369","-881","-27","0","0" +"7517","325","5","1","-4298","-775","-19","0","0" +"7518","325","6","1","-4345","-573","14","0","0" +"7519","325","7","1","-4294","-443","47","0","0" +"7520","325","8","1","-4304","-284","70","0","0" +"7521","325","9","1","-4121","-105","70","0","0" +"7522","325","10","1","-4212","124","82","0","0" +"7523","325","11","1","-4230","348","78","0","0" +"7524","325","12","1","-4375","527","80","0","0" +"7525","325","13","1","-4530","653","68","0","0" +"7526","325","14","1","-4593","774","72","0","0" +"7527","325","15","1","-4599","928","84","0","0" +"7528","325","16","1","-4694","1051","131","0","0" +"7529","325","17","1","-4719","1189","112","0","0" +"7530","325","18","1","-4672","1310","112","0","0" +"7531","325","19","1","-4740","1483","110","0","0" +"7532","325","20","1","-4750","1673","105","0","0" +"7533","325","21","1","-4787","1863","72","0","0" +"7534","325","22","1","-4797","2065","34","0","0" +"7535","325","23","1","-4547","2413","65","0","0" +"7536","325","24","1","-4380","2713","85","0","0" +"7537","325","25","1","-4113","2981","72","0","0" +"7538","325","26","1","-4077","3246","63","0","0" +"7539","325","27","1","-4185","3393","56","0","0" +"7540","325","28","1","-4323","3370","22","0","0" +"12403","325","29","1","-4375","3337","13","0","0" +"7571","326","0","1","-4373","3338","13","0","0" +"7570","326","1","1","-4417","3311","30","0","0" +"7569","326","2","1","-4476","3242","58","0","0" +"7568","326","3","1","-4526","3138","61","0","0" +"7567","326","4","1","-4679","2855","57","0","0" +"7566","326","5","1","-4780","2631","88","0","0" +"7565","326","6","1","-4796","2357","67","0","0" +"7564","326","7","1","-4792","2170","46","0","0" +"7563","326","8","1","-4784","1970","45","0","0" +"7562","326","9","1","-4785","1825","80","0","0" +"7561","326","10","1","-4755","1697","105","0","0" +"7560","326","11","1","-4740","1483","110","0","0" +"7559","326","12","1","-4672","1310","112","0","0" +"7558","326","13","1","-4719","1189","112","0","0" +"7557","326","14","1","-4694","1051","131","0","0" +"7556","326","15","1","-4599","928","84","0","0" +"7555","326","16","1","-4593","774","72","0","0" +"7554","326","17","1","-4530","653","68","0","0" +"7553","326","18","1","-4375","527","80","0","0" +"7552","326","19","1","-4230","348","78","0","0" +"7551","326","20","1","-4212","124","82","0","0" +"7550","326","21","1","-4121","-105","70","0","0" +"7549","326","22","1","-4304","-284","70","0","0" +"7548","326","23","1","-4294","-443","47","0","0" +"7547","326","24","1","-4364","-593","15","0","0" +"7546","326","25","1","-4466","-683","-7","0","0" +"7545","326","26","1","-4478","-746","-15","0","0" +"7544","326","27","1","-4489","-775","-37","0","0" +"7572","327","0","1","2306","-2524","105","0","0" +"7573","327","1","1","2290","-2528","106","0","0" +"7574","327","2","1","2239","-2545","110","0","0" +"7575","327","3","1","2173","-2589","115","0","0" +"7576","327","4","1","2134","-2665","120","0","0" +"7577","327","5","1","2142","-2829","131","0","0" +"7578","327","6","1","2101","-2943","122","0","0" +"7579","327","7","1","2130","-3101","119","0","0" +"7580","327","8","1","2205","-3203","138","0","0" +"7581","327","9","1","2416","-3362","153","0","0" +"7582","327","10","1","2356","-3530","130","0","0" +"7583","327","11","1","2193","-3643","80","0","0" +"7584","327","12","1","1850","-3709","67","0","0" +"7585","327","13","1","1707","-3819","91","0","0" +"7586","327","14","1","1698","-3917","97","0","0" +"7587","327","15","1","1744","-4013","79","0","0" +"7588","327","16","1","1723","-4077","72","0","0" +"7589","327","17","1","1592","-4133","70","0","0" +"7590","327","18","1","1591","-4237","76","0","0" +"7591","327","19","1","1609","-4311","68","0","0" +"7592","327","20","1","1618","-4394","63","0","0" +"12448","327","21","1","1682","-4402","63","0","0" +"12449","327","22","1","1719","-4371","64","0","0" +"12450","327","23","1","1719","-4331","66","0","0" +"12451","327","24","1","1678","-4314","65","0","0" +"7613","328","0","1","1678","-4317","62","0","0" +"7612","328","1","1","1678","-4314","63","0","0" +"7611","328","2","1","1679","-4303","66","0","0" +"7610","328","3","1","1667","-4286","69","0","0" +"7609","328","4","1","1585","-4234","76","0","0" +"7608","328","5","1","1590","-4138","70","0","0" +"7607","328","6","1","1718","-4085","72","0","0" +"7606","328","7","1","1740","-4019","79","0","0" +"7605","328","8","1","1698","-3917","101","0","0" +"7604","328","9","1","1707","-3819","91","0","0" +"7603","328","10","1","1911","-3683","67","0","0" +"7602","328","11","1","2256","-3647","119","0","0" +"7601","328","12","1","2388","-3545","147","0","0" +"7600","328","13","1","2416","-3362","158","0","0" +"7599","328","14","1","2222","-3243","138","0","0" +"7598","328","15","1","2130","-3101","119","0","0" +"7597","328","16","1","2101","-2943","122","0","0" +"7596","328","17","1","2142","-2829","131","0","0" +"7595","328","18","1","2134","-2665","120","0","0" +"7594","328","19","1","2178","-2588","116","0","0" +"7593","328","20","1","2252","-2557","116","0","0" +"9416","328","21","1","2286","-2542","111","0","0" +"9420","328","22","1","2306","-2525","105","0","0" +"7614","329","0","1","2722","-3881","102","0","0" +"7615","329","1","1","2763","-3856","109","0","0" +"7616","329","2","1","2790","-3794","115","0","0" +"7617","329","3","1","2709","-3664","129","0","0" +"7618","329","4","1","2628","-3513","134","0","0" +"7619","329","5","1","2478","-3346","143","0","0" +"7620","329","6","1","2272","-3288","135","0","0" +"7621","329","7","1","2122","-3092","119","0","0" +"7622","329","8","1","2106","-2914","126","0","0" +"7623","329","9","1","2060","-2729","128","0","0" +"7624","329","10","1","1994","-2664","115","0","0" +"7625","329","11","1","1963","-2512","102","0","0" +"7626","329","12","1","1971","-2360","104","0","0" +"7627","329","13","1","1932","-2189","103","0","0" +"7638","329","14","1","1970","-1993","107","0","0" +"7639","329","15","1","2046","-1871","111","0","0" +"7640","329","16","1","2177","-1777","116","0","0" +"7641","329","17","1","2318","-1687","134","0","0" +"7642","329","18","1","2367","-1543","133","0","0" +"7643","329","19","1","2401","-1430","135","0","0" +"7644","329","20","1","2451","-1304","142","0","0" +"7645","329","21","1","2517","-1013","139","0","0" +"7646","329","22","1","2484","-778","148","0","0" +"7647","329","23","1","2492","-667","138","0","0" +"7648","329","24","1","2582","-571","125","0","0" +"7649","329","25","1","2777","-535","123","0","0" +"7650","329","26","1","2850","-432","122","0","0" +"7651","329","27","1","2849","-232","120","0","0" +"7652","329","28","1","2903","-93","117","0","0" +"7653","329","29","1","2825","50","113","0","0" +"7654","329","30","1","2830","169","115","0","0" +"7655","329","31","1","2909","187","105","0","0" +"7656","329","32","1","3062","133","73","0","0" +"7657","329","33","1","3190","148","43","0","0" +"7658","329","34","1","3286","235","26","0","0" +"7659","329","35","1","3338","357","22","0","0" +"7660","329","36","1","3460","448","20","0","0" +"7661","329","37","1","3519","563","21","0","0" +"7662","329","38","1","3515","702","18","0","0" +"7663","329","39","1","3581","811","13","0","0" +"7664","329","40","1","3687","840","9","0","0" +"7665","329","41","1","3826","812","23","0","0" +"7666","329","42","1","3945","847","22","0","0" +"7667","329","43","1","4073","977","20","0","0" +"7668","329","44","1","4290","990","54","0","0" +"7669","329","45","1","4478","806","22","0","0" +"7670","329","46","1","4677","730","31","0","0" +"7671","329","47","1","4927","689","5","0","0" +"7674","329","48","1","5350","587","15","0","0" +"7675","329","49","1","5739","590","17","0","0" +"7676","329","50","1","6093","538","19","0","0" +"7677","329","51","1","6309","524","25","0","0" +"7678","329","52","1","6341","559","17","0","0" +"7739","330","0","1","6342","558","17","0","0" +"7738","330","1","1","6348","624","28","0","0" +"7737","330","2","1","6254","664","39","0","0" +"7736","330","3","1","6073","636","26","0","0" +"7735","330","4","1","5635","683","8","0","0" +"7734","330","5","1","5164","742","15","0","0" +"7733","330","6","1","4927","689","34","0","0" +"7732","330","7","1","4657","745","31","0","0" +"7731","330","8","1","4501","834","22","0","0" +"7730","330","9","1","4290","990","54","0","0" +"7729","330","10","1","4058","965","20","0","0" +"7728","330","11","1","3945","847","22","0","0" +"7727","330","12","1","3826","812","23","0","0" +"7726","330","13","1","3680","843","9","0","0" +"7725","330","14","1","3593","816","13","0","0" +"7724","330","15","1","3515","702","18","0","0" +"7723","330","16","1","3521","572","21","0","0" +"7722","330","17","1","3439","419","20","0","0" +"7721","330","18","1","3338","357","22","0","0" +"7720","330","19","1","3270","226","21","0","0" +"7719","330","20","1","3171","183","30","0","0" +"7718","330","21","1","2987","151","82","0","0" +"7717","330","22","1","2904","187","105","0","0" +"7716","330","23","1","2836","177","116","0","0" +"7715","330","24","1","2816","53","113","0","0" +"7714","330","25","1","2869","-107","117","0","0" +"7713","330","26","1","2848","-258","120","0","0" +"7712","330","27","1","2854","-388","122","0","0" +"7711","330","28","1","2794","-516","123","0","0" +"7710","330","29","1","2614","-603","125","0","0" +"7709","330","30","1","2492","-667","138","0","0" +"7708","330","31","1","2484","-778","146","0","0" +"7707","330","32","1","2517","-1013","139","0","0" +"7706","330","33","1","2451","-1304","142","0","0" +"7705","330","34","1","2401","-1430","135","0","0" +"7704","330","35","1","2367","-1543","133","0","0" +"7703","330","36","1","2318","-1687","134","0","0" +"7702","330","37","1","2177","-1777","116","0","0" +"7701","330","38","1","2046","-1871","111","0","0" +"7700","330","39","1","1970","-1993","107","0","0" +"7699","330","40","1","1932","-2189","103","0","0" +"7698","330","41","1","1971","-2360","104","0","0" +"7697","330","42","1","1963","-2512","102","0","0" +"7696","330","43","1","1994","-2664","115","0","0" +"7695","330","44","1","2060","-2729","128","0","0" +"7694","330","45","1","2106","-2914","126","0","0" +"7693","330","46","1","2122","-3092","119","0","0" +"7692","330","47","1","2272","-3288","135","0","0" +"7691","330","48","1","2478","-3346","143","0","0" +"7690","330","49","1","2628","-3513","134","0","0" +"7689","330","50","1","2673","-3687","129","0","0" +"7688","330","51","1","2669","-3800","133","0","0" +"7687","330","52","1","2699","-3859","114","0","0" +"7686","330","53","1","2722","-3880","103","0","0" +"7801","332","0","1","2721","-3879","101","0","0" +"7800","332","1","1","2728","-3883","104","0","0" +"7799","332","2","1","2738","-3883","107","0","0" +"7798","332","3","1","2761","-3855","117","0","0" +"7797","332","4","1","2759","-3765","127","0","0" +"7796","332","5","1","2695","-3639","131","0","0" +"7795","332","6","1","2520","-3518","129","0","0" +"7794","332","7","1","2404","-3327","124","0","0" +"7793","332","8","1","2258","-3284","117","0","0" +"7792","332","9","1","2192","-3206","122","0","0" +"7791","332","10","1","2178","-3070","126","0","0" +"7790","332","11","1","2108","-2965","125","0","0" +"7789","332","12","1","2144","-2817","129","0","0" +"7788","332","13","1","2119","-2704","118","0","0" +"7787","332","14","1","2178","-2586","113","0","0" +"7786","332","15","1","2209","-2466","101","0","0" +"7785","332","16","1","2243","-2356","113","0","0" +"7784","332","17","1","2278","-2194","121","0","0" +"7783","332","18","1","2366","-2061","143","0","0" +"7782","332","19","1","2497","-1997","152","0","0" +"7781","332","20","1","2657","-1982","168","0","0" +"7780","332","21","1","2803","-2029","178","0","0" +"7779","332","22","1","2922","-1863","175","0","0" +"7778","332","23","1","3052","-1779","182","0","0" +"7777","332","24","1","3184","-1730","180","0","0" +"7776","332","25","1","3276","-1569","182","0","0" +"7775","332","26","1","3450","-1434","183","0","0" +"7774","332","27","1","3729","-1494","205","0","0" +"7773","332","28","1","3898","-1283","228","0","0" +"9846","332","29","1","3915","-1098","274","0","0" +"9847","332","30","1","4058","-1047","272","0","0" +"9848","332","31","1","4212","-901","295","0","0" +"9849","332","32","1","4308","-827","290","0","0" +"9850","332","33","1","4379","-868","298","0","0" +"9851","332","34","1","4502","-837","304","0","0" +"9852","332","35","1","4564","-866","315","0","0" +"9853","332","36","1","4738","-761","305","0","0" +"9854","332","37","1","4984","-735","317","0","0" +"9855","332","38","1","5239","-762","358","0","0" +"9856","332","39","1","5408","-662","356","0","0" +"9857","332","40","1","5579","-698","371","0","0" +"9858","332","41","1","5755","-648","378","0","0" +"9859","332","42","1","6025","-719","405","0","0" +"9860","332","43","1","6099","-706","436","0","0" +"9861","332","44","1","6207","-761","425","0","0" +"9862","332","45","1","6315","-999","427","0","0" +"9863","332","46","1","6530","-1132","444","0","0" +"9864","332","47","1","6639","-1452","476","0","0" +"9865","332","48","1","6518","-1659","509","0","0" +"9866","332","49","1","6536","-1831","547","0","0" +"9867","332","50","1","6400","-1948","565","0","0" +"9868","332","51","1","6260","-1915","571","0","0" +"9869","332","52","1","6209","-1948","574","0","0" +"7802","333","0","1","2306","-2524","105","0","0" +"7803","333","1","1","2294","-2527","106","0","0" +"7804","333","2","1","2226","-2539","113","0","0" +"7805","333","3","1","2177","-2584","118","0","0" +"7806","333","4","1","2134","-2698","126","0","0" +"7807","333","5","1","2169","-2887","129","0","0" +"7808","333","6","1","2225","-3002","131","0","0" +"7809","333","7","1","2190","-3118","123","0","0" +"7810","333","8","1","2259","-3197","133","0","0" +"7811","333","9","1","2264","-3285","124","0","0" +"7812","333","10","1","2136","-3462","107","0","0" +"7813","333","11","1","2059","-3557","77","0","0" +"7814","333","12","1","1959","-3659","46","0","0" +"7815","333","13","1","1814","-3730","49","0","0" +"7816","333","14","1","1734","-3795","55","0","0" +"7817","333","15","1","1683","-3875","37","0","0" +"7818","333","16","1","1595","-3897","26","0","0" +"7819","333","17","1","1449","-3885","30","0","0" +"7820","333","18","1","1256","-3823","49","0","0" +"7821","333","19","1","1143","-3705","85","0","0" +"7822","333","20","1","1092","-3574","109","0","0" +"7823","333","21","1","1126","-3352","114","0","0" +"7824","333","22","1","1107","-3197","103","0","0" +"7825","333","23","1","974","-3062","101","0","0" +"7826","333","24","1","896","-2880","115","0","0" +"7827","333","25","1","751","-2761","109","0","0" +"7828","333","26","1","530","-2718","113","0","0" +"7829","333","27","1","261","-2806","110","0","0" +"7830","333","28","1","13","-2718","113","0","0" +"7831","333","29","1","-193","-2644","116","0","0" +"7832","333","30","1","-296","-2522","122","0","0" +"7833","333","31","1","-394","-2527","124","0","0" +"7834","333","32","1","-440","-2599","97","0","0" +"7867","334","0","1","-444","-2597","97","0","0" +"7866","334","1","1","-444","-2605","99","0","0" +"7865","334","2","1","-459","-2659","115","0","0" +"7864","334","3","1","-469","-2762","126","0","0" +"7863","334","4","1","-342","-2755","126","0","0" +"7862","334","5","1","-130","-2657","126","0","0" +"7861","334","6","1","65","-2672","113","0","0" +"7860","334","7","1","237","-2806","110","0","0" +"7859","334","8","1","419","-2754","113","0","0" +"7858","334","9","1","586","-2873","109","0","0" +"7857","334","10","1","863","-2943","115","0","0" +"7856","334","11","1","974","-3062","101","0","0" +"7855","334","12","1","1107","-3197","103","0","0" +"7854","334","13","1","1126","-3352","114","0","0" +"7853","334","14","1","1092","-3574","109","0","0" +"7852","334","15","1","1143","-3705","85","0","0" +"7851","334","16","1","1256","-3823","49","0","0" +"7850","334","17","1","1449","-3885","30","0","0" +"7849","334","18","1","1595","-3897","26","0","0" +"7848","334","19","1","1683","-3875","37","0","0" +"7847","334","20","1","1734","-3795","55","0","0" +"7846","334","21","1","1814","-3730","49","0","0" +"7845","334","22","1","1959","-3659","46","0","0" +"7844","334","23","1","2059","-3557","77","0","0" +"7843","334","24","1","2136","-3462","107","0","0" +"7842","334","25","1","2264","-3285","124","0","0" +"7841","334","26","1","2259","-3197","133","0","0" +"7840","334","27","1","2190","-3118","123","0","0" +"7839","334","28","1","2225","-3002","131","0","0" +"7838","334","29","1","2169","-2887","129","0","0" +"7837","334","30","1","2125","-2744","126","0","0" +"7836","334","31","1","2144","-2638","123","0","0" +"7835","334","32","1","2197","-2573","115","0","0" +"9161","334","33","1","2267","-2536","110","0","0" +"9162","334","34","1","2307","-2525","106","0","0" +"7868","335","0","1","1678","-4315","62","0","0" +"7869","335","1","1","1677","-4313","62","0","0" +"7870","335","2","1","1673","-4300","64","0","0" +"7871","335","3","1","1664","-4284","67","0","0" +"7872","335","4","1","1617","-4261","76","0","0" +"7873","335","5","1","1576","-4212","82","0","0" +"7874","335","6","1","1596","-4127","76","0","0" +"7875","335","7","1","1723","-4078","82","0","0" +"7876","335","8","1","1743","-3979","97","0","0" +"7877","335","9","1","1683","-3906","97","0","0" +"7878","335","10","1","1510","-3861","64","0","0" +"7879","335","11","1","1262","-3938","41","0","0" +"7880","335","12","1","1128","-4075","36","0","0" +"7881","335","13","1","982","-4092","36","0","0" +"7882","335","14","1","912","-4013","0","0","0" +"7883","335","15","1","842","-4047","14","0","0" +"7884","335","16","1","766","-4028","6","0","0" +"7885","335","17","1","670","-4035","7","0","0" +"7886","335","18","1","600","-4029","17","0","0" +"7887","335","19","1","493","-4007","43","0","0" +"7888","335","20","1","372","-3968","58","0","0" +"7889","335","21","1","236","-3844","49","0","0" +"7890","335","22","1","53","-3812","39","0","0" +"7891","335","23","1","-93","-3777","39","0","0" +"7892","335","24","1","-278","-3808","37","0","0" +"7893","335","25","1","-406","-3913","24","0","0" +"7894","335","26","1","-568","-3925","33","0","0" +"7895","335","27","1","-685","-3923","33","0","0" +"7896","335","28","1","-791","-3953","38","0","0" +"7897","335","29","1","-902","-3850","22","0","0" +"7898","335","30","1","-1023","-3790","17","0","0" +"7899","335","31","1","-1163","-3808","21","0","0" +"7900","335","32","1","-1248","-3857","55","0","0" +"7901","335","33","1","-1349","-3869","26","0","0" +"7902","335","34","1","-1431","-3975","27","0","0" +"7903","335","35","1","-1529","-4027","6","0","0" +"7904","335","36","1","-1664","-3999","8","0","0" +"7905","335","37","1","-1785","-3913","6","0","0" +"7906","335","38","1","-1891","-3874","4","0","0" +"7907","335","39","1","-2005","-3910","14","0","0" +"7908","335","40","1","-2201","-4065","19","0","0" +"7909","335","41","1","-2370","-4091","31","0","0" +"7910","335","42","1","-2569","-4018","27","0","0" +"7911","335","43","1","-2703","-3935","92","0","0" +"7912","335","44","1","-2713","-3860","78","0","0" +"7913","335","45","1","-2777","-3759","48","0","0" +"7914","335","46","1","-2847","-3683","41","0","0" +"7915","335","47","1","-2818","-3599","45","0","0" +"7916","335","48","1","-2811","-3510","56","0","0" +"7917","335","49","1","-2884","-3459","74","0","0" +"7918","335","50","1","-2908","-3411","80","0","0" +"7919","335","51","1","-2873","-3291","84","0","0" +"7920","335","52","1","-2928","-3201","90","0","0" +"7921","335","53","1","-3067","-3126","90","0","0" +"7922","335","54","1","-3115","-3061","92","0","0" +"7923","335","55","1","-3090","-2942","82","0","0" +"9435","335","56","1","-3107","-2862","56","0","0" +"9436","335","57","1","-3144","-2842","36","0","0" +"7979","336","0","1","-3143","-2841","35","0","0" +"7978","336","1","1","-3136","-2846","36","0","0" +"7977","336","2","1","-3126","-2856","39","0","0" +"7976","336","3","1","-3101","-2892","63","0","0" +"7975","336","4","1","-3090","-2942","82","0","0" +"7974","336","5","1","-3115","-3061","92","0","0" +"7973","336","6","1","-3067","-3126","90","0","0" +"7972","336","7","1","-2928","-3201","90","0","0" +"7971","336","8","1","-2890","-3319","84","0","0" +"7970","336","9","1","-2912","-3409","80","0","0" +"7969","336","10","1","-2900","-3451","74","0","0" +"7968","336","11","1","-2814","-3511","56","0","0" +"7967","336","12","1","-2814","-3599","45","0","0" +"7966","336","13","1","-2850","-3684","41","0","0" +"7965","336","14","1","-2777","-3759","60","0","0" +"7964","336","15","1","-2754","-3824","78","0","0" +"7963","336","16","1","-2703","-3935","94","0","0" +"7962","336","17","1","-2569","-4018","28","0","0" +"7961","336","18","1","-2370","-4091","44","0","0" +"7960","336","19","1","-2201","-4065","14","0","0" +"7959","336","20","1","-2005","-3910","10","0","0" +"7958","336","21","1","-1876","-3896","4","0","0" +"7957","336","22","1","-1748","-3932","6","0","0" +"7956","336","23","1","-1637","-4004","8","0","0" +"7955","336","24","1","-1529","-4027","6","0","0" +"7954","336","25","1","-1431","-3975","27","0","0" +"7953","336","26","1","-1349","-3869","26","0","0" +"7952","336","27","1","-1248","-3857","55","0","0" +"7951","336","28","1","-1161","-3811","21","0","0" +"7950","336","29","1","-985","-3807","17","0","0" +"7949","336","30","1","-902","-3850","20","0","0" +"7948","336","31","1","-791","-3953","38","0","0" +"7947","336","32","1","-677","-3913","33","0","0" +"7946","336","33","1","-574","-3928","33","0","0" +"7945","336","34","1","-410","-3915","24","0","0" +"7944","336","35","1","-293","-3862","21","0","0" +"7943","336","36","1","-159","-3795","26","0","0" +"7942","336","37","1","26","-3766","33","0","0" +"7941","336","38","1","236","-3844","49","0","0" +"7940","336","39","1","372","-3968","58","0","0" +"7939","336","40","1","493","-4007","43","0","0" +"7938","336","41","1","658","-4032","11","0","0" +"7937","336","42","1","760","-4032","0","0","0" +"7936","336","43","1","832","-4032","14","0","0" +"7935","336","44","1","893","-4013","-2","0","0" +"7934","336","45","1","926","-4023","0","0","0" +"7933","336","46","1","986","-4096","44","0","0" +"7932","336","47","1","1110","-4137","52","0","0" +"7931","336","48","1","1225","-4367","61","0","0" +"7930","336","49","1","1348","-4378","39","0","0" +"7929","336","50","1","1427","-4365","29","0","0" +"7928","336","51","1","1439","-4419","29","0","0" +"7927","336","52","1","1487","-4418","29","0","0" +"7926","336","53","1","1562","-4414","46","0","0" +"7925","336","54","1","1669","-4410","60","0","0" +"7924","336","55","1","1713","-4374","67","0","0" +"9086","336","56","1","1717","-4335","67","0","0" +"9087","336","57","1","1678","-4315","62","0","0" +"8045","338","0","1","1677","-4317","62","0","0" +"8046","338","1","1","1674","-4316","62","0","0" +"8047","338","2","1","1659","-4305","64","0","0" +"8048","338","3","1","1627","-4277","72","0","0" +"8049","338","4","1","1580","-4212","75","0","0" +"8050","338","5","1","1616","-4119","69","0","0" +"8051","338","6","1","1731","-4074","65","0","0" +"8052","338","7","1","1746","-3984","80","0","0" +"8053","338","8","1","1686","-3873","103","0","0" +"8054","338","9","1","1750","-3775","90","0","0" +"8055","338","10","1","1911","-3685","67","0","0" +"8056","338","11","1","2116","-3704","80","0","0" +"8057","338","12","1","2281","-3625","111","0","0" +"8058","338","13","1","2378","-3510","135","0","0" +"8059","338","14","1","2373","-3418","137","0","0" +"8060","338","15","1","2280","-3334","120","0","0" +"8061","338","16","1","2263","-3221","132","0","0" +"8062","338","17","1","2128","-2993","127","0","0" +"8124","338","18","1","2146","-2840","127","0","0" +"8125","338","19","1","2129","-2692","122","0","0" +"8126","338","20","1","2187","-2575","115","0","0" +"8127","338","21","1","2195","-2483","101","0","0" +"8128","338","22","1","2262","-2368","115","0","0" +"8129","338","23","1","2274","-2186","119","0","0" +"8130","338","24","1","2371","-2048","139","0","0" +"8131","338","25","1","2443","-2007","150","0","0" +"8132","338","26","1","2585","-1985","161","0","0" +"8133","338","27","1","2674","-1942","175","0","0" +"8134","338","28","1","2777","-1979","176","0","0" +"8135","338","29","1","2874","-1899","184","0","0" +"8136","338","30","1","2972","-1854","182","0","0" +"8137","338","31","1","3057","-1754","187","0","0" +"8138","338","32","1","3108","-1613","196","0","0" +"8139","338","33","1","3394","-1520","185","0","0" +"8140","338","34","1","3606","-1505","188","0","0" +"8141","338","35","1","3748","-1386","219","0","0" +"8142","338","36","1","3884","-1304","228","0","0" +"8143","338","37","1","3917","-1193","247","0","0" +"8144","338","38","1","3990","-1146","276","0","0" +"8145","338","39","1","4001","-994","265","0","0" +"8146","338","40","1","4070","-908","267","0","0" +"8147","338","41","1","4083","-834","273","0","0" +"8148","338","42","1","4125","-772","286","0","0" +"8149","338","43","1","4145","-700","291","0","0" +"8150","338","44","1","4280","-723","301","0","0" +"8151","338","45","1","4343","-597","287","0","0" +"8152","338","46","1","4432","-601","291","0","0" +"8153","338","47","1","4557","-720","264","0","0" +"8154","338","48","1","4640","-788","306","0","0" +"8155","338","49","1","4716","-761","312","0","0" +"8156","338","50","1","4806","-730","343","0","0" +"8157","338","51","1","4926","-715","322","0","0" +"8158","338","52","1","5041","-736","327","0","0" +"8159","338","53","1","5134","-748","337","0","0" +"8160","338","54","1","5219","-770","356","0","0" +"8161","338","55","1","5288","-700","351","0","0" +"8162","338","56","1","5269","-598","328","0","0" +"8163","338","57","1","5254","-455","331","0","0" +"8164","338","58","1","5264","-332","334","0","0" +"8165","338","59","1","5204","-264","361","0","0" +"9433","338","60","1","5146","-260","377","0","0" +"9434","338","61","1","5099","-294","378","0","0" +"12459","338","62","1","5071","-336","369","0","0" +"8123","339","0","1","6796","-4742","702","0","0" +"8122","339","1","1","6807","-4734","705","0","0" +"8121","339","2","1","6830","-4715","712","0","0" +"8120","339","3","1","6850","-4682","724","0","0" +"8119","339","4","1","6844","-4613","738","0","0" +"8118","339","5","1","6819","-4475","780","0","0" +"8117","339","6","1","6801","-4200","797","0","0" +"8116","339","7","1","6766","-3800","797","0","0" +"8115","339","8","1","6768","-3647","774","0","0" +"8114","339","9","1","6745","-3444","725","0","0" +"8113","339","10","1","6700","-3287","689","0","0" +"8112","339","11","1","6666","-2876","676","0","0" +"8111","339","12","1","6693","-2548","641","0","0" +"8110","339","13","1","6700","-2352","637","0","0" +"8109","339","14","1","6689","-2219","670","0","0" +"8108","339","15","1","6615","-2082","655","0","0" +"8107","339","16","1","6558","-2017","633","0","0" +"8106","339","17","1","6412","-2039","601","0","0" +"18323","339","18","1","6206","-1948","573","0","0" +"8225","341","0","1","5071","-336","368","0","0" +"8224","341","1","1","5077","-327","369","0","0" +"8223","341","2","1","5099","-294","372","0","0" +"8222","341","3","1","5146","-260","367","0","0" +"8221","341","4","1","5212","-263","351","0","0" +"8220","341","5","1","5266","-321","334","0","0" +"8219","341","6","1","5254","-443","332","0","0" +"8218","341","7","1","5269","-605","331","0","0" +"8217","341","8","1","5279","-708","352","0","0" +"8216","341","9","1","5236","-762","357","0","0" +"8215","341","10","1","5045","-737","325","0","0" +"8214","341","11","1","4924","-734","312","0","0" +"8213","341","12","1","4793","-746","306","0","0" +"8212","341","13","1","4666","-795","308","0","0" +"8211","341","14","1","4605","-777","295","0","0" +"8210","341","15","1","4561","-710","265","0","0" +"8209","341","16","1","4425","-597","290","0","0" +"8208","341","17","1","4351","-594","293","0","0" +"8207","341","18","1","4280","-723","301","0","0" +"8206","341","19","1","4155","-703","291","0","0" +"8205","341","20","1","4115","-789","287","0","0" +"8204","341","21","1","4083","-834","273","0","0" +"8203","341","22","1","4070","-901","267","0","0" +"8202","341","23","1","4001","-994","265","0","0" +"8201","341","24","1","3995","-1139","276","0","0" +"8200","341","25","1","3915","-1193","247","0","0" +"8199","341","26","1","3885","-1317","228","0","0" +"8198","341","27","1","3769","-1366","223","0","0" +"8197","341","28","1","3618","-1494","188","0","0" +"8196","341","29","1","3374","-1530","182","0","0" +"8195","341","30","1","3108","-1613","196","0","0" +"8194","341","31","1","3057","-1754","187","0","0" +"8193","341","32","1","2972","-1854","182","0","0" +"8192","341","33","1","2874","-1899","184","0","0" +"8191","341","34","1","2730","-1984","173","0","0" +"8190","341","35","1","2602","-1978","164","0","0" +"8189","341","36","1","2451","-2002","152","0","0" +"8188","341","37","1","2383","-2037","142","0","0" +"8187","341","38","1","2289","-2160","126","0","0" +"8186","341","39","1","2258","-2252","119","0","0" +"8185","341","40","1","2249","-2367","116","0","0" +"8184","341","41","1","2195","-2483","101","0","0" +"8183","341","42","1","2187","-2575","115","0","0" +"8182","341","43","1","2129","-2692","122","0","0" +"8181","341","44","1","2146","-2840","127","0","0" +"8180","341","45","1","2128","-2993","127","0","0" +"8179","341","46","1","2263","-3221","132","0","0" +"8178","341","47","1","2280","-3334","120","0","0" +"8177","341","48","1","2373","-3418","137","0","0" +"8176","341","49","1","2378","-3510","135","0","0" +"8175","341","50","1","2281","-3625","111","0","0" +"8174","341","51","1","2116","-3704","80","0","0" +"8173","341","52","1","1911","-3685","67","0","0" +"8172","341","53","1","1750","-3768","87","0","0" +"8171","341","54","1","1692","-3889","103","0","0" +"8170","341","55","1","1745","-4006","83","0","0" +"8169","341","56","1","1708","-4093","73","0","0" +"8168","341","57","1","1600","-4130","76","0","0" +"8167","341","58","1","1578","-4209","77","0","0" +"8166","341","59","1","1610","-4270","71","0","0" +"9065","341","60","1","1612","-4364","64","0","0" +"12433","341","61","1","1662","-4410","64","0","0" +"12434","341","62","1","1721","-4379","64","0","0" +"12435","341","63","1","1706","-4326","64","0","0" +"12436","341","64","1","1678","-4315","64","0","0" +"8328","343","0","0","-10455","-3276","22","0","0" +"8329","343","1","0","-10455","-3274","22","0","0" +"8330","343","2","0","-10458","-3259","26","0","0" +"8331","343","3","0","-10460","-3244","30","0","0" +"8332","343","4","0","-10462","-3193","48","0","0" +"8333","343","5","0","-10463","-3098","87","0","0" +"8334","343","6","0","-10489","-2867","87","0","0" +"8335","343","7","0","-10577","-2410","147","0","0" +"8336","343","8","0","-10549","-2160","192","0","0" +"8337","343","9","0","-10446","-1865","192","0","0" +"8338","343","10","0","-10453","-1617","182","0","0" +"8339","343","11","0","-10488","-1448","175","0","0" +"8340","343","12","0","-10658","-1232","118","0","0" +"8341","343","13","0","-10858","-1097","131","0","0" +"8342","343","14","0","-10967","-882","121","0","0" +"8343","343","15","0","-11050","-777","121","0","0" +"8344","343","16","0","-11105","-656","125","0","0" +"8345","343","17","0","-11225","-481","129","0","0" +"8346","343","18","0","-11311","-399","85","0","0" +"8347","343","19","0","-11351","-336","65","0","0" +"8348","343","20","0","-11383","-290","67","0","0" +"8349","343","21","0","-11476","-287","47","0","0" +"8350","343","22","0","-11544","-322","48","0","0" +"8351","343","23","0","-11635","-279","53","0","0" +"8352","343","24","0","-11730","-342","25","0","0" +"8353","343","25","0","-11857","-398","16","0","0" +"8354","343","26","0","-11950","-414","15","0","0" +"8355","343","27","0","-12066","-369","15","0","0" +"8356","343","28","0","-12168","-347","28","0","0" +"8357","343","29","0","-12232","-328","23","0","0" +"8358","343","30","0","-12421","-293","21","0","0" +"8359","343","31","0","-12533","-182","20","0","0" +"8360","343","32","0","-12581","-29","19","0","0" +"8361","343","33","0","-12549","186","5","0","0" +"8362","343","34","0","-12446","268","8","0","0" +"8363","343","35","0","-12379","230","21","0","0" +"8364","343","36","0","-12377","169","10","0","0" +"8365","343","37","0","-12413","145","5","0","0" +"8433","344","0","0","-12410","148","4","0","0" +"8432","344","1","0","-12402","156","5","0","0" +"8431","344","2","0","-12388","192","14","0","0" +"8430","344","3","0","-12367","267","28","0","0" +"8429","344","4","0","-12232","334","39","0","0" +"8428","344","5","0","-12033","345","67","0","0" +"8427","344","6","0","-11703","133","94","0","0" +"8426","344","7","0","-11469","-180","135","0","0" +"8425","344","8","0","-11206","-512","124","0","0" +"8424","344","9","0","-11000","-833","122","0","0" +"8423","344","10","0","-10791","-1071","122","0","0" +"8422","344","11","0","-10621","-1229","122","0","0" +"8421","344","12","0","-10480","-1425","160","0","0" +"8420","344","13","0","-10459","-1605","142","0","0" +"8419","344","14","0","-10430","-1856","147","0","0" +"8418","344","15","0","-10578","-2229","180","0","0" +"8417","344","16","0","-10532","-2532","118","0","0" +"8416","344","17","0","-10348","-2902","84","0","0" +"8415","344","18","0","-10203","-3219","80","0","0" +"8414","344","19","0","-10254","-3358","79","0","0" +"8413","344","20","0","-10401","-3361","75","0","0" +"8412","344","21","0","-10435","-3290","28","0","0" +"8411","344","22","0","-10455","-3276","22","0","0" +"8434","345","0","1","-1196","29","178","0","0" +"8435","345","1","1","-1199","30","179","0","0" +"8436","345","2","1","-1222","35","183","0","0" +"8437","345","3","1","-1285","45","191","0","0" +"8438","345","4","1","-1395","-70","198","0","0" +"8439","345","5","1","-1528","-265","133","0","0" +"8440","345","6","1","-1666","-666","17","0","0" +"8441","345","7","1","-2103","-735","25","0","0" +"8442","345","8","1","-2389","-950","12","0","0" +"8443","345","9","1","-2420","-1262","8","0","0" +"8444","345","10","1","-2343","-1503","76","0","0" +"8445","345","11","1","-2371","-1883","111","0","0" +"8446","345","12","1","-2230","-2071","113","0","0" +"8447","345","13","1","-2282","-2359","104","0","0" +"8448","345","14","1","-2487","-2452","124","0","0" +"8449","345","15","1","-2706","-2345","170","0","0" +"8450","345","16","1","-3062","-2039","120","0","0" +"8451","345","17","1","-3200","-1827","147","0","0" +"8452","345","18","1","-3456","-1713","184","0","0" +"8453","345","19","1","-3634","-1929","128","0","0" +"8454","345","20","1","-3731","-2423","111","0","0" +"8455","345","21","1","-3635","-2825","102","0","0" +"8456","345","22","1","-3300","-3094","133","0","0" +"8457","345","23","1","-3005","-3096","151","0","0" +"9521","345","24","1","-2904","-2871","149","0","0" +"9522","345","25","1","-3146","-2842","37","0","0" +"8458","346","0","0","930","-1429","65","0","0" +"8459","346","1","0","945","-1421","73","0","0" +"8460","346","2","0","983","-1428","90","0","0" +"8461","346","3","0","1032","-1492","111","0","0" +"8462","346","4","0","969","-1549","104","0","0" +"8463","346","5","0","898","-1488","101","0","0" +"8464","346","6","0","822","-1468","108","0","0" +"8465","346","7","0","785","-1466","119","0","0" +"8466","346","8","0","647","-1473","101","0","0" +"8467","346","9","0","512","-1541","78","0","0" +"8468","346","10","0","422","-1506","72","0","0" +"8469","346","11","0","344","-1420","56","0","0" +"8470","346","12","0","275","-1294","48","0","0" +"8471","346","13","0","174","-1191","47","0","0" +"8472","346","14","0","47","-1125","46","0","0" +"8473","346","15","0","-75","-1113","48","0","0" +"8474","346","16","0","-166","-1129","47","0","0" +"8475","346","17","0","-256","-1096","46","0","0" +"8476","346","18","0","-350","-1100","47","0","0" +"8477","346","19","0","-419","-1050","49","0","0" +"8478","346","20","0","-469","-961","49","0","0" +"8479","346","21","0","-538","-883","41","0","0" +"8480","346","22","0","-567","-827","22","0","0" +"8481","346","23","0","-642","-747","42","0","0" +"8482","346","24","0","-617","-649","56","0","0" +"8483","346","25","0","-606","-578","60","0","0" +"8484","346","26","0","-682","-559","42","0","0" +"9159","346","27","0","-713","-520","28","0","0" +"8511","347","0","0","-714","-516","26","0","0" +"8510","347","1","0","-716","-537","31","0","0" +"8509","347","2","0","-732","-601","39","0","0" +"8508","347","3","0","-726","-718","42","0","0" +"8507","347","4","0","-628","-765","33","0","0" +"8506","347","5","0","-538","-883","43","0","0" +"8505","347","6","0","-469","-961","49","0","0" +"8504","347","7","0","-419","-1050","49","0","0" +"8503","347","8","0","-350","-1100","47","0","0" +"8502","347","9","0","-256","-1096","46","0","0" +"8501","347","10","0","-166","-1129","47","0","0" +"8500","347","11","0","-75","-1113","48","0","0" +"8499","347","12","0","47","-1125","46","0","0" +"8498","347","13","0","174","-1191","47","0","0" +"8497","347","14","0","275","-1294","48","0","0" +"8496","347","15","0","344","-1420","56","0","0" +"8495","347","16","0","422","-1506","72","0","0" +"8494","347","17","0","512","-1541","78","0","0" +"8493","347","18","0","631","-1472","101","0","0" +"8492","347","19","0","827","-1471","113","0","0" +"8491","347","20","0","926","-1510","103","0","0" +"8490","347","21","0","987","-1461","86","0","0" +"8489","347","22","0","978","-1426","77","0","0" +"8488","347","23","0","948","-1421","70","0","0" +"8487","347","24","0","931","-1430","65","0","0" +"8535","348","0","1","-3142","-2843","35","0","0" +"8534","348","1","1","-3138","-2847","35","0","0" +"8533","348","2","1","-3126","-2861","40","0","0" +"8532","348","3","1","-3122","-2889","51","0","0" +"8531","348","4","1","-3139","-2936","73","0","0" +"8530","348","5","1","-3201","-2971","92","0","0" +"8529","348","6","1","-3371","-2987","112","0","0" +"8528","348","7","1","-3605","-2812","102","0","0" +"8527","348","8","1","-3731","-2423","111","0","0" +"8526","348","9","1","-3634","-1929","128","0","0" +"8525","348","10","1","-3456","-1713","184","0","0" +"8524","348","11","1","-3200","-1827","147","0","0" +"8523","348","12","1","-3062","-2039","120","0","0" +"8522","348","13","1","-2706","-2345","170","0","0" +"8521","348","14","1","-2487","-2452","124","0","0" +"8520","348","15","1","-2282","-2359","104","0","0" +"8519","348","16","1","-2230","-2071","113","0","0" +"8518","348","17","1","-2371","-1883","111","0","0" +"8517","348","18","1","-2343","-1503","76","0","0" +"8516","348","19","1","-2420","-1262","8","0","0" +"8515","348","20","1","-2389","-950","12","0","0" +"9080","348","21","1","-2106","-726","25","0","0" +"9081","348","22","1","-1643","-737","17","0","0" +"9082","348","23","1","-1148","-286","187","0","0" +"9083","348","24","1","-1072","-91","206","0","0" +"9084","348","25","1","-1116","-6","206","0","0" +"12431","348","26","1","-1158","21","189","0","0" +"12432","348","27","1","-1196","29","179","0","0" +"8536","349","0","0","284","-2003","196","0","0" +"8537","349","1","0","283","-2006","196","0","0" +"8538","349","2","0","274","-2023","197","0","0" +"8539","349","3","0","250","-2056","201","0","0" +"8540","349","4","0","183","-2187","215","0","0" +"8541","349","5","0","171","-2428","304","0","0" +"8542","349","6","0","403","-2499","321","0","0" +"8543","349","7","0","538","-2509","294","0","0" +"8544","349","8","0","601","-2493","277","0","0" +"8545","349","9","0","659","-2512","264","0","0" +"8546","349","10","0","717","-2485","236","0","0" +"8547","349","11","0","761","-2447","199","0","0" +"8548","349","12","0","791","-2410","173","0","0" +"8549","349","13","0","889","-2388","103","0","0" +"8550","349","14","0","1052","-2457","96","0","0" +"8551","349","15","0","1178","-2555","112","0","0" +"8552","349","16","0","1182","-2672","143","0","0" +"8553","349","17","0","1197","-2851","64","0","0" +"8572","349","18","0","1355","-3027","76","0","0" +"8573","349","19","0","1499","-3103","152","0","0" +"8574","349","20","0","1678","-3410","188","0","0" +"8575","349","21","0","1780","-3946","184","0","0" +"8576","349","22","0","1879","-4186","147","0","0" +"8658","349","23","0","2025","-4477","134","0","0" +"8659","349","24","0","1929","-4948","155","0","0" +"8660","349","25","0","1994","-5195","127","0","0" +"9049","349","26","0","2148","-5316","128","0","0" +"9050","349","27","0","2271","-5340","90","0","0" +"8554","350","0","1","3373","998","6","0","0" +"8555","350","1","1","3375","1005","7","0","0" +"8556","350","2","1","3391","1043","17","0","0" +"8557","350","3","1","3467","1099","25","0","0" +"8558","350","4","1","3580","1051","30","0","0" +"8559","350","5","1","3591","905","31","0","0" +"8560","350","6","1","3591","815","31","0","0" +"8561","350","7","1","3485","685","27","0","0" +"8562","350","8","1","3405","619","27","0","0" +"8563","350","9","1","3417","503","27","0","0" +"8564","350","10","1","3401","420","27","0","0" +"8565","350","11","1","3333","370","23","0","0" +"8566","350","12","1","3297","257","18","0","0" +"8567","350","13","1","3205","225","28","0","0" +"8568","350","14","1","3087","217","47","0","0" +"8569","350","15","1","3019","152","71","0","0" +"8570","350","16","1","2909","186","95","0","0" +"8571","350","17","1","2824","157","116","0","0" +"8578","350","18","1","2819","50","112","0","0" +"8579","350","19","1","2786","-17","108","0","0" +"8580","350","20","1","2702","-60","109","0","0" +"8581","350","21","1","2662","-139","115","0","0" +"8582","350","22","1","2659","-256","115","0","0" +"8583","350","23","1","2609","-326","115","0","0" +"8584","350","24","1","2504","-351","119","0","0" +"8585","350","25","1","2423","-311","119","0","0" +"8586","350","26","1","2363","-323","115","0","0" +"8587","350","27","1","2347","-395","110","0","0" +"8588","350","28","1","2410","-467","118","0","0" +"8589","350","29","1","2441","-534","127","0","0" +"8590","350","30","1","2448","-646","130","0","0" +"8591","350","31","1","2515","-811","142","0","0" +"8592","350","32","1","2527","-936","145","0","0" +"8593","350","33","1","2485","-1140","140","0","0" +"8594","350","34","1","2575","-1265","158","0","0" +"8595","350","35","1","2572","-1437","171","0","0" +"8596","350","36","1","2523","-1595","160","0","0" +"8597","350","37","1","2503","-1720","153","0","0" +"8598","350","38","1","2537","-1850","155","0","0" +"8599","350","39","1","2600","-1935","162","0","0" +"8600","350","40","1","2565","-1989","158","0","0" +"8601","350","41","1","2451","-2006","150","0","0" +"8602","350","42","1","2377","-2042","140","0","0" +"8603","350","43","1","2286","-2164","126","0","0" +"8604","350","44","1","2267","-2315","119","0","0" +"8605","350","45","1","2214","-2445","102","0","0" +"8606","350","46","1","2196","-2511","104","0","0" +"8607","350","47","1","2221","-2549","109","0","0" +"8608","350","48","1","2269","-2543","109","0","0" +"9534","350","49","1","2307","-2525","105","0","0" +"8657","351","0","1","2307","-2525","105","0","0" +"8656","351","1","1","2294","-2529","106","0","0" +"8655","351","2","1","2221","-2549","111","0","0" +"8654","351","3","1","2196","-2511","104","0","0" +"8653","351","4","1","2214","-2445","102","0","0" +"8652","351","5","1","2267","-2315","119","0","0" +"8651","351","6","1","2286","-2164","126","0","0" +"8650","351","7","1","2377","-2042","140","0","0" +"8649","351","8","1","2451","-2006","150","0","0" +"8648","351","9","1","2565","-1989","158","0","0" +"8647","351","10","1","2600","-1935","162","0","0" +"8646","351","11","1","2537","-1850","155","0","0" +"8645","351","12","1","2503","-1720","153","0","0" +"8644","351","13","1","2523","-1595","160","0","0" +"8643","351","14","1","2572","-1437","171","0","0" +"8642","351","15","1","2575","-1265","158","0","0" +"8641","351","16","1","2485","-1140","140","0","0" +"8640","351","17","1","2527","-936","145","0","0" +"8639","351","18","1","2515","-811","142","0","0" +"8638","351","19","1","2448","-646","130","0","0" +"8637","351","20","1","2441","-534","127","0","0" +"8636","351","21","1","2410","-467","118","0","0" +"8635","351","22","1","2347","-395","110","0","0" +"8634","351","23","1","2363","-323","115","0","0" +"8633","351","24","1","2423","-311","119","0","0" +"8632","351","25","1","2504","-351","119","0","0" +"8631","351","26","1","2609","-326","115","0","0" +"8630","351","27","1","2659","-256","115","0","0" +"8629","351","28","1","2662","-139","115","0","0" +"8628","351","29","1","2702","-60","109","0","0" +"8627","351","30","1","2786","-17","108","0","0" +"8626","351","31","1","2819","50","112","0","0" +"8625","351","32","1","2824","157","116","0","0" +"8624","351","33","1","2909","186","95","0","0" +"8623","351","34","1","3019","152","71","0","0" +"8622","351","35","1","3087","217","47","0","0" +"8621","351","36","1","3205","225","28","0","0" +"8620","351","37","1","3297","257","18","0","0" +"8619","351","38","1","3333","370","23","0","0" +"8618","351","39","1","3401","420","27","0","0" +"8617","351","40","1","3417","503","27","0","0" +"8616","351","41","1","3405","619","27","0","0" +"8615","351","42","1","3485","685","27","0","0" +"8614","351","43","1","3591","815","31","0","0" +"8613","351","44","1","3550","909","31","0","0" +"8612","351","45","1","3466","931","31","0","0" +"8611","351","46","1","3432","935","19","0","0" +"8610","351","47","1","3373","999","5","0","0" +"8726","352","0","0","2270","-5341","88","0","0" +"8725","352","1","0","2270","-5302","100","0","0" +"8724","352","2","0","2291","-5232","108","0","0" +"8723","352","3","0","2387","-5010","125","0","0" +"8722","352","4","0","2347","-4788","145","0","0" +"8721","352","5","0","2044","-4490","134","0","0" +"8720","352","6","0","1788","-4389","147","0","0" +"8719","352","7","0","1780","-3946","184","0","0" +"8718","352","8","0","1678","-3410","188","0","0" +"8717","352","9","0","1499","-3103","152","0","0" +"8716","352","10","0","1355","-3027","76","0","0" +"8715","352","11","0","1197","-2851","64","0","0" +"8714","352","12","0","1182","-2672","143","0","0" +"8713","352","13","0","1178","-2555","112","0","0" +"8712","352","14","0","1052","-2457","96","0","0" +"8711","352","15","0","889","-2388","103","0","0" +"8710","352","16","0","791","-2410","173","0","0" +"8709","352","17","0","761","-2447","199","0","0" +"8708","352","18","0","717","-2485","236","0","0" +"8707","352","19","0","659","-2512","264","0","0" +"8706","352","20","0","601","-2493","277","0","0" +"8705","352","21","0","538","-2509","294","0","0" +"8704","352","22","0","403","-2499","321","0","0" +"8703","352","23","0","256","-2381","252","0","0" +"8702","352","24","0","257","-2128","227","0","0" +"8701","352","25","0","285","-2003","197","0","0" +"8811","353","0","1","-4417","200","25","0","0" +"8812","353","1","1","-4419","200","25","0","0" +"8813","353","2","1","-4425","199","26","0","0" +"8814","353","3","1","-4470","192","26","0","0" +"8815","353","4","1","-4484","163","23","0","0" +"8816","353","5","1","-4453","125","29","0","0" +"8817","353","6","1","-4371","70","51","0","0" +"8818","353","7","1","-4314","-22","69","0","0" +"8819","353","8","1","-4240","-186","69","0","0" +"8820","353","9","1","-4268","-294","72","0","0" +"8821","353","10","1","-4336","-414","60","0","0" +"8822","353","11","1","-4450","-561","23","0","0" +"8823","353","12","1","-4479","-680","0","0","0" +"8824","353","13","1","-4470","-802","-40","0","0" +"8825","353","14","1","-4390","-873","-35","0","0" +"8826","353","15","1","-4347","-990","-41","0","0" +"8827","353","16","1","-4401","-1079","-36","0","0" +"8828","353","17","1","-4505","-1139","-33","0","0" +"8829","353","18","1","-4613","-1313","-22","0","0" +"8830","353","19","1","-4640","-1431","-26","0","0" +"8831","353","20","1","-4812","-1533","5","0","0" +"8832","353","21","1","-4941","-1539","-6","0","0" +"8833","353","22","1","-4971","-1640","-2","0","0" +"8834","353","23","1","-4923","-1776","18","0","0" +"8835","353","24","1","-4844","-1833","38","0","0" +"8836","353","25","1","-4742","-1787","77","0","0" +"8837","353","26","1","-4665","-1838","121","0","0" +"8838","353","27","1","-4485","-1874","106","0","0" +"8839","353","28","1","-4192","-1901","113","0","0" +"8840","353","29","1","-4103","-2139","99","0","0" +"8841","353","30","1","-3696","-2193","103","0","0" +"8842","353","31","1","-3295","-2112","112","0","0" +"8843","353","32","1","-3022","-2026","111","0","0" +"8844","353","33","1","-2743","-2135","107","0","0" +"8845","353","34","1","-2449","-2157","109","0","0" +"8846","353","35","1","-2214","-2289","137","0","0" +"8847","353","36","1","-1908","-2274","114","0","0" +"8848","353","37","1","-1378","-2839","138","0","0" +"8849","353","38","1","-1064","-2792","115","0","0" +"8850","353","39","1","-707","-2443","131","0","0" +"8851","353","40","1","-494","-2446","110","0","0" +"9157","353","41","1","-413","-2522","125","0","0" +"9158","353","42","1","-443","-2589","98","0","0" +"8809","354","0","1","-442","-2599","98","0","0" +"8808","354","1","1","-447","-2634","106","0","0" +"8807","354","2","1","-434","-2673","111","0","0" +"8806","354","3","1","-375","-2688","117","0","0" +"8805","354","4","1","-235","-2700","116","0","0" +"8804","354","5","1","-36","-2654","103","0","0" +"8803","354","6","1","101","-2521","128","0","0" +"8802","354","7","1","231","-2371","211","0","0" +"8801","354","8","1","350","-2305","249","0","0" +"8800","354","9","1","441","-2292","209","0","0" +"8799","354","10","1","565","-2304","147","0","0" +"8798","354","11","1","645","-2321","120","0","0" +"8797","354","12","1","728","-2305","111","0","0" +"8796","354","13","1","809","-2251","114","0","0" +"8795","354","14","1","965","-2127","182","0","0" +"8794","354","15","1","1103","-2134","186","0","0" +"8793","354","16","1","1195","-2142","160","0","0" +"8792","354","17","1","1317","-2145","113","0","0" +"8791","354","18","1","1457","-2163","97","0","0" +"8790","354","19","1","1558","-2159","99","0","0" +"8789","354","20","1","1632","-2017","115","0","0" +"8788","354","21","1","1708","-1963","108","0","0" +"8787","354","22","1","1863","-1970","122","0","0" +"8786","354","23","1","1990","-1941","107","0","0" +"8785","354","24","1","2058","-1865","108","0","0" +"8784","354","25","1","2287","-1708","128","0","0" +"8783","354","26","1","2348","-1630","133","0","0" +"8782","354","27","1","2377","-1492","133","0","0" +"8781","354","28","1","2457","-1306","140","0","0" +"8780","354","29","1","2464","-1196","133","0","0" +"8779","354","30","1","2503","-1090","139","0","0" +"8778","354","31","1","2519","-926","143","0","0" +"8777","354","32","1","2486","-829","147","0","0" +"8776","354","33","1","2475","-696","133","0","0" +"8775","354","34","1","2506","-632","126","0","0" +"8774","354","35","1","2622","-600","123","0","0" +"8773","354","36","1","2750","-535","117","0","0" +"8772","354","37","1","2839","-460","111","0","0" +"8771","354","38","1","2864","-363","111","0","0" +"8770","354","39","1","2844","-254","119","0","0" +"8769","354","40","1","2870","-150","113","0","0" +"8768","354","41","1","2859","-33","110","0","0" +"8767","354","42","1","2811","94","113","0","0" +"8766","354","43","1","2830","160","111","0","0" +"8765","354","44","1","2901","188","98","0","0" +"8764","354","45","1","3015","168","72","0","0" +"8763","354","46","1","3099","222","45","0","0" +"8762","354","47","1","3206","195","29","0","0" +"8761","354","48","1","3276","239","22","0","0" +"8760","354","49","1","3327","331","18","0","0" +"8759","354","50","1","3422","419","22","0","0" +"8758","354","51","1","3496","506","15","0","0" +"8757","354","52","1","3518","579","19","0","0" +"8756","354","53","1","3503","706","23","0","0" +"8755","354","54","1","3557","828","27","0","0" +"8754","354","55","1","3556","899","26","0","0" +"8753","354","56","1","3432","935","18","0","0" +"8752","354","57","1","3373","999","8","0","0" +"8893","355","0","1","-439","-2596","97","0","0" +"8892","355","1","1","-452","-2621","103","0","0" +"8891","355","2","1","-491","-2647","108","0","0" +"8890","355","3","1","-592","-2654","103","0","0" +"8889","355","4","1","-750","-2668","113","0","0" +"8888","355","5","1","-1378","-2839","138","0","0" +"8887","355","6","1","-1971","-2315","145","0","0" +"8886","355","7","1","-2324","-2304","146","0","0" +"8885","355","8","1","-2472","-2165","119","0","0" +"8884","355","9","1","-2804","-2158","122","0","0" +"8883","355","10","1","-3031","-2035","133","0","0" +"8882","355","11","1","-3696","-2193","135","0","0" +"8881","355","12","1","-4015","-2153","113","0","0" +"8880","355","13","1","-4192","-1901","120","0","0" +"8879","355","14","1","-4665","-1838","123","0","0" +"8878","355","15","1","-4844","-1833","82","0","0" +"8877","355","16","1","-4923","-1776","42","0","0" +"8876","355","17","1","-4971","-1640","28","0","0" +"8875","355","18","1","-4941","-1539","19","0","0" +"8874","355","19","1","-4812","-1533","5","0","0" +"8873","355","20","1","-4640","-1431","-23","0","0" +"8872","355","21","1","-4613","-1313","-17","0","0" +"8871","355","22","1","-4505","-1139","-32","0","0" +"8870","355","23","1","-4401","-1079","-31","0","0" +"8869","355","24","1","-4347","-990","-37","0","0" +"8868","355","25","1","-4390","-873","-27","0","0" +"8867","355","26","1","-4470","-802","-30","0","0" +"8866","355","27","1","-4479","-680","1","0","0" +"8865","355","28","1","-4450","-561","23","0","0" +"8864","355","29","1","-4336","-414","63","0","0" +"8863","355","30","1","-4240","-186","71","0","0" +"8862","355","31","1","-4285","-78","78","0","0" +"8861","355","32","1","-4263","80","79","0","0" +"9171","355","33","1","-4309","150","75","0","0" +"12703","355","34","1","-4384","193","38","0","0" +"12704","355","35","1","-4409","201","27","0","0" +"8905","356","0","1","-1771","3265","6","0","0" +"8906","356","1","1","-1773","3268","5","0","0" +"8907","356","2","1","-1781","3283","5","0","0" +"8908","356","3","1","-1773","3303","8","0","0" +"8909","356","4","1","-1721","3332","16","0","0" +"8910","356","5","1","-1677","3285","25","0","0" +"8911","356","6","1","-1693","3180","41","0","0" +"8912","356","7","1","-1780","3044","72","0","0" +"8913","356","8","1","-1688","2905","125","0","0" +"8914","356","9","1","-1459","2852","160","0","0" +"8915","356","10","1","-1260","2872","144","0","0" +"8916","356","11","1","-1129","2733","159","0","0" +"8917","356","12","1","-1062","2516","177","0","0" +"8918","356","13","1","-951","2424","124","0","0" +"8919","356","14","1","-871","2311","126","0","0" +"8920","356","15","1","-655","2293","117","0","0" +"8928","356","16","1","-499","2159","116","0","0" +"8929","356","17","1","-399","1959","141","0","0" +"8930","356","18","1","-241","1811","177","0","0" +"8931","356","19","1","-85","1717","125","0","0" +"8932","356","20","1","96","1733","111","0","0" +"8933","356","21","1","245","1833","111","0","0" +"8934","356","22","1","414","1780","65","0","0" +"8935","356","23","1","534","1766","49","0","0" +"8936","356","24","1","634","1722","43","0","0" +"8937","356","25","1","757","1716","46","0","0" +"8938","356","26","1","882","1554","57","0","0" +"8939","356","27","1","1142","1529","71","0","0" +"8940","356","28","1","1293","1433","122","0","0" +"8941","356","29","1","1497","1386","168","0","0" +"8942","356","30","1","1521","1142","195","0","0" +"8956","356","31","1","1408","1009","212","0","0" +"8957","356","32","1","1387","844","239","0","0" +"8958","356","33","1","1266","775","253","0","0" +"8959","356","34","1","1121","806","232","0","0" +"8960","356","35","1","1025","728","189","0","0" +"8961","356","36","1","955","775","162","0","0" +"8962","356","37","1","929","884","143","0","0" +"8963","356","38","1","946","991","118","0","0" +"9457","356","39","1","965","1038","105","0","0" +"8896","357","0","0","1570","267","-42","0","0" +"8897","357","1","0","1564","252","-39","0","0" +"8898","357","2","0","1564","230","-34","0","0" +"8899","357","3","0","1595","214","-28","0","0" +"8900","357","4","0","1637","239","-30","0","0" +"8901","357","5","0","1742","242","-43","0","0" +"8902","357","6","0","1741","297","-43","0","0" +"8903","357","7","0","1690","362","-34","0","0" +"8904","357","8","0","1686","393","5","0","0" +"8921","357","9","0","1727","469","3","0","0" +"8922","357","10","0","1701","526","-5","0","0" +"8923","357","11","0","1670","559","-7","0","0" +"8924","357","12","0","1690","604","10","0","0" +"8925","357","13","0","1673","642","24","0","0" +"8926","357","14","0","1620","643","45","0","0" +"8927","357","15","0","1589","678","58","0","0" +"8943","357","16","0","1600","716","80","0","0" +"8944","357","17","0","1643","731","87","0","0" +"8945","357","18","0","1767","718","94","0","0" +"8946","357","19","0","1818","634","87","0","0" +"8947","357","20","0","1805","542","90","0","0" +"8948","357","21","0","1901","433","79","0","0" +"8949","357","22","0","1950","280","52","0","0" +"8950","357","23","0","1905","-198","55","0","0" +"8951","357","24","0","1716","-472","56","0","0" +"8952","357","25","0","1663","-704","64","0","0" +"8953","357","26","0","1717","-812","126","0","0" +"8954","357","27","0","1738","-1125","162","0","0" +"8955","357","28","0","1481","-1484","129","0","0" +"8964","357","29","0","1705","-1767","164","0","0" +"8965","357","30","0","1921","-2543","158","0","0" +"8966","357","31","0","1728","-3468","158","0","0" +"8967","357","32","0","1827","-3751","181","0","0" +"8968","357","33","0","1719","-4582","182","0","0" +"8969","357","34","0","1775","-5053","132","0","0" +"9520","357","35","0","2206","-5130","139","0","0" +"12198","357","36","0","2328","-5285","83","0","0" +"9008","358","0","1","960","1038","106","0","0" +"9007","358","1","1","953","1043","110","0","0" +"9006","358","2","1","930","1055","128","0","0" +"9005","358","3","1","852","1074","162","0","0" +"9004","358","4","1","791","1117","210","0","0" +"9003","358","5","1","760","1190","184","0","0" +"9002","358","6","1","747","1284","142","0","0" +"9001","358","7","1","651","1480","89","0","0" +"9000","358","8","1","534","1766","49","0","0" +"8999","358","9","1","414","1780","65","0","0" +"8998","358","10","1","245","1833","111","0","0" +"8997","358","11","1","96","1733","111","0","0" +"8996","358","12","1","-85","1717","125","0","0" +"8995","358","13","1","-241","1811","177","0","0" +"8994","358","14","1","-399","1959","141","0","0" +"8993","358","15","1","-499","2159","116","0","0" +"8992","358","16","1","-655","2293","117","0","0" +"8991","358","17","1","-871","2311","126","0","0" +"8990","358","18","1","-951","2424","124","0","0" +"8989","358","19","1","-1062","2516","177","0","0" +"8988","358","20","1","-1129","2733","159","0","0" +"8987","358","21","1","-1260","2872","144","0","0" +"8986","358","22","1","-1473","2862","160","0","0" +"8985","358","23","1","-1685","2900","125","0","0" +"8984","358","24","1","-1824","3075","72","0","0" +"8983","358","25","1","-1736","3163","45","0","0" +"8982","358","26","1","-1725","3219","26","0","0" +"8981","358","27","1","-1751","3256","17","0","0" +"8980","358","28","1","-1771","3265","8","0","0" +"9044","359","0","0","2327","-5285","83","0","0" +"9043","359","1","0","2316","-5265","86","0","0" +"9042","359","2","0","2303","-5235","92","0","0" +"9041","359","3","0","2239","-5093","122","0","0" +"9040","359","4","0","2088","-4937","165","0","0" +"9039","359","5","0","1815","-4852","166","0","0" +"9038","359","6","0","1719","-4582","182","0","0" +"9037","359","7","0","1827","-3751","181","0","0" +"9036","359","8","0","1728","-3468","158","0","0" +"9035","359","9","0","1921","-2543","158","0","0" +"9034","359","10","0","1705","-1767","164","0","0" +"9033","359","11","0","1481","-1484","129","0","0" +"9032","359","12","0","1738","-1125","162","0","0" +"9031","359","13","0","1717","-812","126","0","0" +"9030","359","14","0","1663","-704","64","0","0" +"9029","359","15","0","1716","-472","56","0","0" +"9028","359","16","0","1905","-198","55","0","0" +"9027","359","17","0","1950","280","52","0","0" +"9026","359","18","0","2018","452","86","0","0" +"9025","359","19","0","1951","613","102","0","0" +"9024","359","20","0","1877","717","100","0","0" +"9023","359","21","0","1755","742","104","0","0" +"9022","359","22","0","1643","731","87","0","0" +"9021","359","23","0","1600","716","80","0","0" +"9020","359","24","0","1589","678","58","0","0" +"9019","359","25","0","1620","643","45","0","0" +"9018","359","26","0","1673","642","24","0","0" +"9017","359","27","0","1690","604","10","0","0" +"9016","359","28","0","1670","559","-7","0","0" +"9015","359","29","0","1701","526","-5","0","0" +"9014","359","30","0","1727","469","3","0","0" +"9013","359","31","0","1686","393","5","0","0" +"9012","359","32","0","1690","362","-34","0","0" +"9011","359","33","0","1741","297","-43","0","0" +"9010","359","34","0","1742","243","-33","0","0" +"9045","359","35","0","1637","239","-29","0","0" +"9399","359","36","0","1595","214","-28","0","0" +"9402","359","37","0","1568","236","-34","0","0" +"12189","359","38","0","1569","269","-41","0","0" +"9150","360","0","1","-439","-2599","97","0","0" +"9149","360","1","1","-460","-2641","105","0","0" +"9148","360","2","1","-511","-2657","112","0","0" +"9147","360","3","1","-617","-2629","119","0","0" +"9146","360","4","1","-872","-2434","130","0","0" +"9145","360","5","1","-1009","-2210","123","0","0" +"9144","360","6","1","-1186","-2031","120","0","0" +"9143","360","7","1","-1370","-2032","120","0","0" +"9142","360","8","1","-1634","-2098","119","0","0" +"9141","360","9","1","-1845","-1963","128","0","0" +"9140","360","10","1","-2003","-1916","116","0","0" +"9139","360","11","1","-2166","-1951","118","0","0" +"9138","360","12","1","-2296","-2045","125","0","0" +"9137","360","13","1","-2421","-2053","125","0","0" +"9136","360","14","1","-2765","-2012","130","0","0" +"9135","360","15","1","-3027","-2086","116","0","0" +"9134","360","16","1","-3181","-2216","114","0","0" +"9133","360","17","1","-3394","-2148","115","0","0" +"9132","360","18","1","-3608","-2251","114","0","0" +"9131","360","19","1","-3728","-2531","100","0","0" +"9130","360","20","1","-3678","-2725","94","0","0" +"9129","360","21","1","-3526","-2844","94","0","0" +"9128","360","22","1","-3315","-2948","93","0","0" +"9127","360","23","1","-3199","-2968","81","0","0" +"9126","360","24","1","-3134","-2919","69","0","0" +"9125","360","25","1","-3121","-2883","57","0","0" +"9124","360","26","1","-3129","-2857","44","0","0" +"9123","360","27","1","-3142","-2843","35","0","0" +"9216","361","0","0","-12415","144","4","0","0" +"9217","361","1","0","-12406","150","5","0","0" +"9218","361","2","0","-12396","161","6","0","0" +"9219","361","3","0","-12378","198","13","0","0" +"9220","361","4","0","-12333","299","18","0","0" +"9221","361","5","0","-12170","369","45","0","0" +"9222","361","6","0","-11991","321","72","0","0" +"9223","361","7","0","-11835","167","85","0","0" +"9224","361","8","0","-11469","-184","128","0","0" +"9225","361","9","0","-11138","-468","123","0","0" +"9226","361","10","0","-10802","-677","135","0","0" +"9227","361","11","0","-10569","-814","140","0","0" +"9228","361","12","0","-10066","-865","141","0","0" +"9229","361","13","0","-9629","-929","141","0","0" +"9230","361","14","0","-9261","-1052","141","0","0" +"9231","361","15","0","-8539","-1190","268","0","0" +"9232","361","16","0","-8066","-1299","226","0","0" +"9233","361","17","0","-7381","-1628","335","0","0" +"9234","361","18","0","-7196","-1673","263","0","0" +"9235","361","19","0","-7001","-1662","271","0","0" +"9236","361","20","0","-6899","-1785","269","0","0" +"9237","361","21","0","-6922","-1928","294","0","0" +"9238","361","22","0","-6946","-2042","305","0","0" +"9239","361","23","0","-6902","-2198","301","0","0" +"9240","361","24","0","-6870","-2335","301","0","0" +"9241","361","25","0","-6778","-2460","292","0","0" +"9242","361","26","0","-6680","-2460","283","0","0" +"9243","361","27","0","-6623","-2340","268","0","0" +"9244","361","28","0","-6623","-2233","259","0","0" +"19681","361","29","0","-6633","-2179","247","0","0" +"9351","362","0","0","-6638","-2186","245","0","0" +"9350","362","1","0","-6648","-2190","247","0","0" +"9349","362","2","0","-6672","-2198","253","0","0" +"9348","362","3","0","-6737","-2211","270","0","0" +"9347","362","4","0","-6831","-2211","287","0","0" +"9346","362","5","0","-6909","-2158","301","0","0" +"9345","362","6","0","-6946","-2042","305","0","0" +"9344","362","7","0","-6909","-1856","295","0","0" +"9343","362","8","0","-6978","-1735","284","0","0" +"9342","362","9","0","-7196","-1673","263","0","0" +"9341","362","10","0","-7381","-1628","335","0","0" +"9340","362","11","0","-7598","-1585","272","0","0" +"9339","362","12","0","-8199","-1267","184","0","0" +"9338","362","13","0","-8502","-1199","270","0","0" +"9337","362","14","0","-8818","-1197","198","0","0" +"9336","362","15","0","-9633","-933","120","0","0" +"9335","362","16","0","-10040","-871","112","0","0" +"9334","362","17","0","-10491","-823","133","0","0" +"9333","362","18","0","-11256","-326","127","0","0" +"9332","362","19","0","-11590","-292","100","0","0" +"9331","362","20","0","-11985","-370","50","0","0" +"9330","362","21","0","-12454","-276","18","0","0" +"9329","362","22","0","-12595","-37","27","0","0" +"9328","362","23","0","-12552","58","27","0","0" +"9327","362","24","0","-12442","128","17","0","0" +"9326","362","25","0","-12414","146","7","0","0" +"9535","363","0","1","6812","-4607","711","0","0" +"9536","363","1","1","6814","-4603","713","0","0" +"9537","363","2","1","6829","-4579","722","0","0" +"9538","363","3","1","6908","-4442","758","0","0" +"9539","363","4","1","6905","-4299","769","0","0" +"9540","363","5","1","6827","-4099","754","0","0" +"9541","363","6","1","6718","-3824","716","0","0" +"9564","363","7","1","6675","-3699","722","0","0" +"9565","363","8","1","6656","-3533","694","0","0" +"9566","363","9","1","6619","-3226","621","0","0" +"9567","363","10","1","6543","-3016","607","0","0" +"9568","363","11","1","6550","-2749","582","0","0" +"9569","363","12","1","6534","-2516","585","0","0" +"9570","363","13","1","6710","-2482","592","0","0" +"9571","363","14","1","6896","-2316","613","0","0" +"9572","363","15","1","6990","-2348","684","0","0" +"9573","363","16","1","7098","-2269","729","0","0" +"9574","363","17","1","7183","-2335","661","0","0" +"9575","363","18","1","7225","-2466","648","0","0" +"9588","363","19","1","7417","-2451","487","0","0" +"9589","363","20","1","7562","-2361","467","0","0" +"9590","363","21","1","7641","-2231","472","0","0" +"9591","363","22","1","7637","-2115","490","0","0" +"9592","363","23","1","7518","-2124","495","0","0" +"9658","363","24","1","7471","-2123","494","0","0" +"9548","364","0","1","7469","-2122","493","0","0" +"9549","364","1","1","7476","-2123","494","0","0" +"9550","364","2","1","7537","-2135","496","0","0" +"9551","364","3","1","7575","-2205","491","0","0" +"9552","364","4","1","7519","-2248","505","0","0" +"9553","364","5","1","7433","-2202","554","0","0" +"9561","364","6","1","7360","-2196","586","0","0" +"9562","364","7","1","7250","-2254","645","0","0" +"9563","364","8","1","7198","-2311","669","0","0" +"9576","364","9","1","7116","-2309","710","0","0" +"9577","364","10","1","6951","-2272","654","0","0" +"9578","364","11","1","6874","-2338","599","0","0" +"9579","364","12","1","6743","-2365","596","0","0" +"9580","364","13","1","6627","-2440","607","0","0" +"9581","364","14","1","6437","-2366","645","0","0" +"9582","364","15","1","6458","-2242","654","0","0" +"9583","364","16","1","6428","-2155","661","0","0" +"9584","364","17","1","6409","-2043","631","0","0" +"9585","364","18","1","6445","-1936","601","0","0" +"9586","364","19","1","6536","-1823","585","0","0" +"9587","364","20","1","6507","-1714","552","0","0" +"9593","364","21","1","6313","-1538","464","0","0" +"9594","364","22","1","6225","-1390","398","0","0" +"9595","364","23","1","6136","-1298","390","0","0" +"9596","364","24","1","6020","-1195","398","0","0" +"9597","364","25","1","5908","-1232","428","0","0" +"9598","364","26","1","5756","-1237","473","0","0" +"9599","364","27","1","5657","-1111","472","0","0" +"9600","364","28","1","5565","-986","427","0","0" +"9601","364","29","1","5569","-867","427","0","0" +"9602","364","30","1","5486","-747","398","0","0" +"9603","364","31","1","5389","-752","398","0","0" +"9604","364","32","1","5314","-777","408","0","0" +"9605","364","33","1","5290","-696","352","0","0" +"9606","364","34","1","5270","-611","329","0","0" +"9607","364","35","1","5265","-530","328","0","0" +"9608","364","36","1","5251","-388","326","0","0" +"9609","364","37","1","5244","-294","326","0","0" +"9610","364","38","1","5198","-275","337","0","0" +"9611","364","39","1","5143","-277","357","0","0" +"9612","364","40","1","5098","-309","369","0","0" +"9613","364","41","1","5081","-325","369","0","0" +"9614","364","42","1","5073","-335","369","0","0" +"9657","365","0","1","5073","-335","369","0","0" +"9656","365","1","1","5081","-325","369","0","0" +"9655","365","2","1","5098","-309","369","0","0" +"9654","365","3","1","5143","-277","357","0","0" +"9653","365","4","1","5198","-275","337","0","0" +"9652","365","5","1","5244","-294","326","0","0" +"9651","365","6","1","5262","-336","326","0","0" +"9650","365","7","1","5260","-497","335","0","0" +"9649","365","8","1","5269","-594","331","0","0" +"9648","365","9","1","5286","-702","354","0","0" +"9647","365","10","1","5345","-764","393","0","0" +"9646","365","11","1","5750","-652","422","0","0" +"9645","365","12","1","5899","-681","428","0","0" +"9644","365","13","1","6026","-709","404","0","0" +"9643","365","14","1","6086","-717","423","0","0" +"9642","365","15","1","6200","-730","425","0","0" +"9641","365","16","1","6256","-805","435","0","0" +"9640","365","17","1","6281","-1015","427","0","0" +"9639","365","18","1","6258","-1138","379","0","0" +"9638","365","19","1","6274","-1241","379","0","0" +"9637","365","20","1","6321","-1341","403","0","0" +"9636","365","21","1","6313","-1538","464","0","0" +"9635","365","22","1","6507","-1714","552","0","0" +"9634","365","23","1","6541","-1820","581","0","0" +"9633","365","24","1","6445","-1936","598","0","0" +"9632","365","25","1","6409","-2043","627","0","0" +"9631","365","26","1","6428","-2155","661","0","0" +"9630","365","27","1","6458","-2242","654","0","0" +"9629","365","28","1","6437","-2366","645","0","0" +"9628","365","29","1","6627","-2440","607","0","0" +"9627","365","30","1","6743","-2365","596","0","0" +"9626","365","31","1","6874","-2338","599","0","0" +"9625","365","32","1","6951","-2272","654","0","0" +"9624","365","33","1","7116","-2309","710","0","0" +"9623","365","34","1","7198","-2311","669","0","0" +"9622","365","35","1","7250","-2254","645","0","0" +"9621","365","36","1","7360","-2196","586","0","0" +"9620","365","37","1","7433","-2202","554","0","0" +"9619","365","38","1","7519","-2248","505","0","0" +"9618","365","39","1","7575","-2205","491","0","0" +"9617","365","40","1","7537","-2135","496","0","0" +"9616","365","41","1","7471","-2123","494","0","0" +"9683","366","0","1","7470","-2122","494","0","0" +"9682","366","1","1","7474","-2123","494","0","0" +"9681","366","2","1","7518","-2124","495","0","0" +"9680","366","3","1","7637","-2115","490","0","0" +"9679","366","4","1","7641","-2231","472","0","0" +"9678","366","5","1","7562","-2361","467","0","0" +"9677","366","6","1","7417","-2451","487","0","0" +"9676","366","7","1","7225","-2466","648","0","0" +"9675","366","8","1","7183","-2335","661","0","0" +"9674","366","9","1","7098","-2269","729","0","0" +"9673","366","10","1","6990","-2348","684","0","0" +"9672","366","11","1","6896","-2316","613","0","0" +"9671","366","12","1","6710","-2482","592","0","0" +"9670","366","13","1","6534","-2516","585","0","0" +"9669","366","14","1","6550","-2749","582","0","0" +"9668","366","15","1","6543","-3016","607","0","0" +"9667","366","16","1","6619","-3226","621","0","0" +"9666","366","17","1","6656","-3533","694","0","0" +"9665","366","18","1","6769","-3585","736","0","0" +"9664","366","19","1","6698","-3829","713","0","0" +"9663","366","20","1","6500","-4054","686","0","0" +"9662","366","21","1","6556","-4344","703","0","0" +"9661","366","22","1","6622","-4500","742","0","0" +"9660","366","23","1","6708","-4560","737","0","0" +"9659","366","24","1","6774","-4594","724","0","0" +"14753","366","25","1","6810","-4605","712","0","0" +"9717","367","0","1","7459","-2484","463","0","0" +"9716","367","1","1","7458","-2470","465","0","0" +"9715","367","2","1","7456","-2391","475","0","0" +"9714","367","3","1","7475","-2339","478","0","0" +"9713","367","4","1","7542","-2307","481","0","0" +"9712","367","5","1","7671","-2334","487","0","0" +"9711","367","6","1","7699","-2401","495","0","0" +"9710","367","7","1","7640","-2523","509","0","0" +"9709","367","8","1","7561","-2593","538","0","0" +"9708","367","9","1","7379","-2659","559","0","0" +"9707","367","10","1","7233","-2656","654","0","0" +"9706","367","11","1","7102","-2621","698","0","0" +"9705","367","12","1","6991","-2590","699","0","0" +"9704","367","13","1","6940","-2639","687","0","0" +"9703","367","14","1","6859","-2812","634","0","0" +"9702","367","15","1","6802","-2967","634","0","0" +"9701","367","16","1","6778","-3167","647","0","0" +"9700","367","17","1","6729","-3356","709","0","0" +"9699","367","18","1","6747","-3542","751","0","0" +"9698","367","19","1","6800","-3933","771","0","0" +"9697","367","20","1","6812","-4266","793","0","0" +"9696","367","21","1","6817","-4482","793","0","0" +"9695","367","22","1","6792","-4632","735","0","0" +"9694","367","23","1","6794","-4697","731","0","0" +"18324","367","24","1","6794","-4742","704","0","0" +"9737","368","0","1","7457","-2483","463","0","0" +"9736","368","1","1","7457","-2445","475","0","0" +"9735","368","2","1","7465","-2370","503","0","0" +"9734","368","3","1","7500","-2268","546","0","0" +"9733","368","4","1","7596","-2198","567","0","0" +"9732","368","5","1","7609","-2098","581","0","0" +"9731","368","6","1","7538","-1969","600","0","0" +"9730","368","7","1","7504","-1794","514","0","0" +"9729","368","8","1","7405","-1657","350","0","0" +"9728","368","9","1","7416","-1379","259","0","0" +"9727","368","10","1","7407","-1119","144","0","0" +"9726","368","11","1","7575","-770","118","0","0" +"9725","368","12","1","7582","-386","97","0","0" +"9724","368","13","1","7514","-70","69","0","0" +"9723","368","14","1","7370","199","48","0","0" +"9722","368","15","1","7069","471","59","0","0" +"9721","368","16","1","6628","600","71","0","0" +"9720","368","17","1","6448","490","34","0","0" +"9719","368","18","1","6361","506","27","0","0" +"10042","368","19","1","6335","556","18","0","0" +"9844","369","0","1","6208","-1951","572","0","0" +"9843","369","1","1","6221","-1960","575","0","0" +"9842","369","2","1","6255","-1968","579","0","0" +"9841","369","3","1","6323","-1932","576","0","0" +"9840","369","4","1","6493","-1910","588","0","0" +"9839","369","5","1","6543","-1793","585","0","0" +"9838","369","6","1","6517","-1679","541","0","0" +"9837","369","7","1","6594","-1543","495","0","0" +"9836","369","8","1","6617","-1386","505","0","0" +"9835","369","9","1","6566","-1244","461","0","0" +"9834","369","10","1","6367","-1193","416","0","0" +"9833","369","11","1","6370","-951","460","0","0" +"9832","369","12","1","6250","-856","425","0","0" +"9831","369","13","1","6192","-754","423","0","0" +"9830","369","14","1","6084","-715","423","0","0" +"9829","369","15","1","6006","-708","399","0","0" +"9828","369","16","1","5878","-684","385","0","0" +"9827","369","17","1","5771","-733","390","0","0" +"9826","369","18","1","5658","-740","389","0","0" +"9825","369","19","1","5487","-733","395","0","0" +"9824","369","20","1","5361","-766","389","0","0" +"9823","369","21","1","5297","-736","358","0","0" +"9822","369","22","1","5268","-618","333","0","0" +"9821","369","23","1","5266","-474","324","0","0" +"9820","369","24","1","5247","-400","323","0","0" +"9819","369","25","1","5261","-294","325","0","0" +"9818","369","26","1","5148","-216","251","0","0" +"9817","369","27","1","5217","-126","169","0","0" +"9816","369","28","1","5185","-60","115","0","0" +"9815","369","29","1","5063","-1","89","0","0" +"9814","369","30","1","4975","115","72","0","0" +"9813","369","31","1","4976","209","51","0","0" +"9812","369","32","1","5123","250","35","0","0" +"9811","369","33","1","5133","382","38","0","0" +"9810","369","34","1","5257","602","19","0","0" +"10351","369","35","1","5615","735","34","0","0" +"10352","369","36","1","6068","553","29","0","0" +"10353","369","37","1","6304","519","25","0","0" +"12194","369","38","1","6341","558","17","0","0" +"9897","371","0","1","6206","-1948","572","0","0" +"9896","371","1","1","6209","-1949","572","0","0" +"9895","371","2","1","6243","-1964","577","0","0" +"9894","371","3","1","6412","-2039","601","0","0" +"9893","371","4","1","6534","-2011","633","0","0" +"9892","371","5","1","6615","-2082","655","0","0" +"9891","371","6","1","6656","-2216","655","0","0" +"9890","371","7","1","6691","-2275","649","0","0" +"9889","371","8","1","6758","-2599","629","0","0" +"9888","371","9","1","6756","-2833","645","0","0" +"9887","371","10","1","6699","-3066","648","0","0" +"9886","371","11","1","6670","-3208","677","0","0" +"9885","371","12","1","6745","-3444","724","0","0" +"9884","371","13","1","6771","-3627","751","0","0" +"9883","371","14","1","6789","-3799","766","0","0" +"9882","371","15","1","6815","-4099","782","0","0" +"9881","371","16","1","6812","-4366","782","0","0" +"9880","371","17","1","6811","-4525","772","0","0" +"9879","371","18","1","6793","-4646","735","0","0" +"9878","371","19","1","6794","-4697","735","0","0" +"9877","371","20","1","6795","-4742","704","0","0" +"9950","372","0","1","6209","-1948","572","0","0" +"9949","372","1","1","6211","-1946","572","0","0" +"9948","372","2","1","6260","-1915","571","0","0" +"9947","372","3","1","6400","-1948","565","0","0" +"9946","372","4","1","6536","-1831","540","0","0" +"9945","372","5","1","6518","-1659","509","0","0" +"9944","372","6","1","6639","-1452","476","0","0" +"9943","372","7","1","6530","-1132","444","0","0" +"9942","372","8","1","6315","-999","427","0","0" +"9941","372","9","1","6207","-761","425","0","0" +"9940","372","10","1","6099","-706","436","0","0" +"9939","372","11","1","6025","-719","405","0","0" +"9938","372","12","1","5755","-648","378","0","0" +"9937","372","13","1","5579","-698","371","0","0" +"9936","372","14","1","5408","-662","356","0","0" +"9935","372","15","1","5239","-762","358","0","0" +"9934","372","16","1","4984","-735","317","0","0" +"9933","372","17","1","4738","-761","305","0","0" +"9932","372","18","1","4564","-866","315","0","0" +"9931","372","19","1","4502","-837","304","0","0" +"9930","372","20","1","4379","-868","298","0","0" +"9929","372","21","1","4308","-827","290","0","0" +"9928","372","22","1","4212","-901","295","0","0" +"9927","372","23","1","4058","-1047","272","0","0" +"9926","372","24","1","3915","-1098","274","0","0" +"9925","372","25","1","3898","-1283","228","0","0" +"9924","372","26","1","3729","-1494","205","0","0" +"9923","372","27","1","3450","-1434","183","0","0" +"9922","372","28","1","3276","-1569","182","0","0" +"9921","372","29","1","3184","-1730","180","0","0" +"9920","372","30","1","3052","-1779","182","0","0" +"9919","372","31","1","2922","-1863","175","0","0" +"9918","372","32","1","2803","-2029","178","0","0" +"9917","372","33","1","2657","-1982","168","0","0" +"9916","372","34","1","2497","-1997","152","0","0" +"9915","372","35","1","2366","-2061","143","0","0" +"9914","372","36","1","2278","-2194","121","0","0" +"9913","372","37","1","2243","-2356","113","0","0" +"9912","372","38","1","2209","-2466","101","0","0" +"9911","372","39","1","2178","-2586","113","0","0" +"9910","372","40","1","2119","-2704","118","0","0" +"9909","372","41","1","2144","-2817","129","0","0" +"9908","372","42","1","2108","-2965","125","0","0" +"9907","372","43","1","2178","-3070","126","0","0" +"9906","372","44","1","2192","-3206","122","0","0" +"9905","372","45","1","2258","-3284","117","0","0" +"9904","372","46","1","2404","-3327","124","0","0" +"9903","372","47","1","2520","-3518","129","0","0" +"9902","372","48","1","2695","-3639","131","0","0" +"9901","372","49","1","2709","-3713","126","0","0" +"9900","372","50","1","2699","-3844","117","0","0" +"9899","372","51","1","2722","-3880","102","0","0" +"9955","373","0","1","132","1325","194","0","0" +"9956","373","1","1","114","1347","199","0","0" +"9957","373","2","1","78","1380","200","0","0" +"9958","373","3","1","35","1382","169","0","0" +"9959","373","4","1","-53","1334","127","0","0" +"9960","373","5","1","-147","1254","107","0","0" +"9961","373","6","1","-423","1250","103","0","0" +"9962","373","7","1","-646","1082","110","0","0" +"9963","373","8","1","-854","1118","115","0","0" +"9964","373","9","1","-1046","1306","105","0","0" +"9965","373","10","1","-1248","1426","82","0","0" +"9966","373","11","1","-1619","1549","84","0","0" +"9967","373","12","1","-1790","1870","90","0","0" +"9968","373","13","1","-1909","1999","90","0","0" +"9969","373","14","1","-1946","2130","112","0","0" +"9970","373","15","1","-2032","2314","125","0","0" +"9971","373","16","1","-2224","2389","111","0","0" +"9972","373","17","1","-2407","2355","135","0","0" +"9973","373","18","1","-2578","2276","126","0","0" +"9974","373","19","1","-2950","2482","76","0","0" +"9975","373","20","1","-3191","2511","82","0","0" +"9976","373","21","1","-3503","2380","83","0","0" +"9977","373","22","1","-3655","2026","96","0","0" +"9978","373","23","1","-3851","1983","108","0","0" +"9979","373","24","1","-4152","2073","110","0","0" +"9980","373","25","1","-4228","2196","82","0","0" +"9981","373","26","1","-4194","2431","35","0","0" +"9982","373","27","1","-4249","2693","59","0","0" +"9983","373","28","1","-4086","3096","72","0","0" +"9984","373","29","1","-4207","3336","59","0","0" +"9985","373","30","1","-4304","3365","30","0","0" +"12404","373","31","1","-4378","3337","14","0","0" +"10016","374","0","1","-4378","3337","13","0","0" +"10015","374","1","1","-4396","3323","19","0","0" +"10014","374","2","1","-4430","3276","27","0","0" +"10013","374","3","1","-4435","3176","36","0","0" +"10012","374","4","1","-4396","3013","43","0","0" +"10011","374","5","1","-4237","2684","68","0","0" +"10010","374","6","1","-4188","2441","35","0","0" +"10009","374","7","1","-4228","2196","82","0","0" +"10008","374","8","1","-4152","2073","110","0","0" +"10007","374","9","1","-3851","1983","108","0","0" +"10006","374","10","1","-3655","2026","96","0","0" +"10005","374","11","1","-3503","2380","83","0","0" +"10004","374","12","1","-3191","2511","82","0","0" +"10003","374","13","1","-2950","2482","76","0","0" +"10002","374","14","1","-2578","2276","126","0","0" +"10001","374","15","1","-2407","2355","135","0","0" +"10000","374","16","1","-2224","2389","111","0","0" +"9999","374","17","1","-2032","2314","125","0","0" +"9998","374","18","1","-1946","2130","112","0","0" +"9997","374","19","1","-1909","1999","90","0","0" +"9996","374","20","1","-1790","1870","90","0","0" +"9995","374","21","1","-1619","1549","84","0","0" +"9994","374","22","1","-1248","1426","82","0","0" +"9993","374","23","1","-1046","1306","105","0","0" +"9992","374","24","1","-854","1118","115","0","0" +"9991","374","25","1","-646","1082","110","0","0" +"9990","374","26","1","-423","1250","103","0","0" +"9989","374","27","1","-147","1254","107","0","0" +"9988","374","28","1","54","1217","181","0","0" +"9987","374","29","1","138","1255","199","0","0" +"9986","374","30","1","154","1300","201","0","0" +"10017","374","31","1","132","1325","194","0","0" +"10020","375","0","1","-4417","200","26","0","0" +"10021","375","1","1","-4420","193","29","0","0" +"10022","375","2","1","-4447","165","33","0","0" +"10023","375","3","1","-4501","179","34","0","0" +"10024","375","4","1","-4615","257","19","0","0" +"10025","375","5","1","-4713","352","26","0","0" +"10026","375","6","1","-4718","464","45","0","0" +"10027","375","7","1","-4661","623","65","0","0" +"10028","375","8","1","-4570","850","77","0","0" +"10029","375","9","1","-4666","1021","126","0","0" +"10030","375","10","1","-4671","1182","111","0","0" +"10031","375","11","1","-4755","1388","110","0","0" +"10032","375","12","1","-4751","1570","110","0","0" +"10033","375","13","1","-4756","1744","96","0","0" +"10034","375","14","1","-4789","1937","55","0","0" +"10035","375","15","1","-4681","2076","20","0","0" +"10036","375","16","1","-4465","2175","23","0","0" +"10037","375","17","1","-4244","2192","76","0","0" +"10038","375","18","1","-4114","2141","106","0","0" +"10039","375","19","1","-4004","2030","112","0","0" +"10040","375","20","1","-3730","1991","94","0","0" +"10041","375","21","1","-3473","1924","71","0","0" +"10043","375","22","1","-3242","1883","70","0","0" +"10044","375","23","1","-3058","1963","67","0","0" +"10045","375","24","1","-2906","2140","60","0","0" +"10046","375","25","1","-2623","2179","103","0","0" +"10047","375","26","1","-2446","2334","142","0","0" +"10048","375","27","1","-2252","2402","81","0","0" +"10049","375","28","1","-2115","2468","80","0","0" +"10050","375","29","1","-1963","2698","81","0","0" +"10051","375","30","1","-1798","3069","36","0","0" +"10052","375","31","1","-1734","3220","13","0","0" +"10053","375","32","1","-1767","3265","7","0","0" +"10092","376","0","1","-1767","3265","6","0","0" +"10091","376","1","1","-1781","3271","6","0","0" +"10090","376","2","1","-1820","3266","10","0","0" +"10089","376","3","1","-1857","3222","15","0","0" +"10088","376","4","1","-1894","3074","33","0","0" +"10087","376","5","1","-1882","2864","64","0","0" +"10086","376","6","1","-1984","2700","84","0","0" +"10085","376","7","1","-2192","2434","89","0","0" +"10084","376","8","1","-2446","2334","142","0","0" +"10083","376","9","1","-2623","2179","103","0","0" +"10082","376","10","1","-2906","2140","60","0","0" +"10081","376","11","1","-3058","1963","67","0","0" +"10080","376","12","1","-3242","1883","70","0","0" +"10079","376","13","1","-3473","1924","71","0","0" +"10078","376","14","1","-3730","1991","94","0","0" +"10077","376","15","1","-4004","2030","112","0","0" +"10076","376","16","1","-4114","2141","106","0","0" +"10075","376","17","1","-4244","2192","76","0","0" +"10074","376","18","1","-4465","2175","23","0","0" +"10073","376","19","1","-4681","2076","20","0","0" +"10072","376","20","1","-4789","1937","55","0","0" +"10071","376","21","1","-4756","1744","96","0","0" +"10070","376","22","1","-4751","1570","110","0","0" +"10069","376","23","1","-4755","1388","110","0","0" +"10068","376","24","1","-4671","1182","111","0","0" +"10067","376","25","1","-4666","1021","126","0","0" +"10066","376","26","1","-4570","850","77","0","0" +"10065","376","27","1","-4583","726","64","0","0" +"10064","376","28","1","-4523","641","66","0","0" +"10063","376","29","1","-4416","567","68","0","0" +"10062","376","30","1","-4359","443","64","0","0" +"10061","376","31","1","-4364","325","58","0","0" +"10060","376","32","1","-4396","217","39","0","0" +"10059","376","33","1","-4415","199","27","0","0" +"10094","377","0","0","-7505","-2186","166","0","0" +"10095","377","1","0","-7528","-2177","171","0","0" +"10096","377","2","0","-7590","-2143","178","0","0" +"10097","377","3","0","-7653","-2042","176","0","0" +"10098","377","4","0","-7685","-1832","161","0","0" +"10099","377","5","0","-7585","-1665","235","0","0" +"10100","377","6","0","-7389","-1614","333","0","0" +"10101","377","7","0","-7248","-1651","292","0","0" +"10102","377","8","0","-6948","-1779","304","0","0" +"10103","377","9","0","-6946","-2053","309","0","0" +"10104","377","10","0","-6893","-2196","294","0","0" +"10105","377","11","0","-6793","-2427","288","0","0" +"10106","377","12","0","-6683","-2465","282","0","0" +"10107","377","13","0","-6624","-2296","264","0","0" +"10108","377","14","0","-6619","-2233","255","0","0" +"10109","377","15","0","-6634","-2180","246","0","0" +"10135","378","0","0","-6634","-2181","245","0","0" +"10134","378","1","0","-6647","-2192","250","0","0" +"10133","378","2","0","-6675","-2199","257","0","0" +"10132","378","3","0","-6742","-2195","269","0","0" +"10131","378","4","0","-6818","-2229","274","0","0" +"10130","378","5","0","-6893","-2196","292","0","0" +"10129","378","6","0","-6946","-2053","309","0","0" +"10128","378","7","0","-6917","-1794","280","0","0" +"10127","378","8","0","-7165","-1671","266","0","0" +"10126","378","9","0","-7389","-1614","333","0","0" +"10125","378","10","0","-7632","-1700","224","0","0" +"10124","378","11","0","-7666","-1966","182","0","0" +"10123","378","12","0","-7505","-2186","167","0","0" +"10137","379","0","0","-7505","-2187","166","0","0" +"10138","379","1","0","-7531","-2176","168","0","0" +"10139","379","2","0","-7571","-2154","169","0","0" +"10140","379","3","0","-7720","-2015","185","0","0" +"10141","379","4","0","-7880","-1742","184","0","0" +"10142","379","5","0","-8163","-1313","185","0","0" +"10143","379","6","0","-8494","-1199","266","0","0" +"10144","379","7","0","-8838","-1232","195","0","0" +"10145","379","8","0","-9433","-1329","151","0","0" +"10146","379","9","0","-9755","-1369","147","0","0" +"10147","379","10","0","-10124","-1414","170","0","0" +"10148","379","11","0","-10401","-1483","176","0","0" +"10149","379","12","0","-10460","-1854","183","0","0" +"10150","379","13","0","-10582","-2232","183","0","0" +"10151","379","14","0","-10589","-2406","134","0","0" +"10152","379","15","0","-10464","-2694","108","0","0" +"10153","379","16","0","-10353","-2930","74","0","0" +"10154","379","17","0","-10225","-3167","74","0","0" +"10155","379","18","0","-10217","-3357","72","0","0" +"10156","379","19","0","-10333","-3422","73","0","0" +"10157","379","20","0","-10418","-3362","67","0","0" +"10158","379","21","0","-10434","-3290","26","0","0" +"10159","379","22","0","-10454","-3276","23","0","0" +"10214","380","0","0","-10454","-3276","22","0","0" +"10213","380","1","0","-10452","-3269","24","0","0" +"10212","380","2","0","-10455","-3249","30","0","0" +"10211","380","3","0","-10462","-3219","38","0","0" +"10210","380","4","0","-10462","-3100","80","0","0" +"10209","380","5","0","-10467","-2899","91","0","0" +"10208","380","6","0","-10589","-2406","129","0","0" +"10207","380","7","0","-10567","-2294","172","0","0" +"10206","380","8","0","-10520","-2070","187","0","0" +"10205","380","9","0","-10447","-1862","187","0","0" +"10204","380","10","0","-10444","-1595","177","0","0" +"10203","380","11","0","-10299","-1424","177","0","0" +"10202","380","12","0","-9766","-1434","173","0","0" +"10201","380","13","0","-9030","-1199","173","0","0" +"10200","380","14","0","-8501","-1198","264","0","0" +"10199","380","15","0","-8301","-1240","213","0","0" +"10198","380","16","0","-8061","-1639","189","0","0" +"10197","380","17","0","-7831","-1902","189","0","0" +"10196","380","18","0","-7618","-2130","172","0","0" +"10195","380","19","0","-7506","-2187","167","0","0" +"10216","381","0","0","-8364","-2739","186","0","0" +"10217","381","1","0","-8360","-2743","189","0","0" +"10218","381","2","0","-8312","-2774","209","0","0" +"10219","381","3","0","-8223","-2781","210","0","0" +"10220","381","4","0","-8167","-2665","210","0","0" +"10221","381","5","0","-8234","-2566","210","0","0" +"10222","381","6","0","-8367","-2544","201","0","0" +"10223","381","7","0","-9000","-2582","178","0","0" +"10224","381","8","0","-9366","-2333","158","0","0" +"10225","381","9","0","-9648","-2027","136","0","0" +"10226","381","10","0","-10076","-1488","132","0","0" +"10227","381","11","0","-10283","-1404","189","0","0" +"10228","381","12","0","-10440","-1491","159","0","0" +"10229","381","13","0","-10440","-1941","173","0","0" +"10230","381","14","0","-10587","-2163","193","0","0" +"10231","381","15","0","-10517","-2944","160","0","0" +"10232","381","16","0","-11177","-2928","56","0","0" +"10233","381","17","0","-11294","-3267","125","0","0" +"10234","381","18","0","-11112","-3435","81","0","0" +"10261","382","0","0","-11114","-3436","80","0","0" +"10260","382","1","0","-11112","-3439","81","0","0" +"10259","382","2","0","-11062","-3487","85","0","0" +"10258","382","3","0","-10993","-3410","84","0","0" +"10257","382","4","0","-11019","-3118","82","0","0" +"10256","382","5","0","-10528","-2843","160","0","0" +"10255","382","6","0","-10587","-2163","193","0","0" +"10254","382","7","0","-10440","-1941","173","0","0" +"10253","382","8","0","-10440","-1491","159","0","0" +"10252","382","9","0","-10548","-1334","127","0","0" +"10251","382","10","0","-10410","-1130","109","0","0" +"10250","382","11","0","-10178","-1226","149","0","0" +"10249","382","12","0","-10076","-1488","132","0","0" +"10248","382","13","0","-9838","-1793","52","0","0" +"10247","382","14","0","-9641","-1859","80","0","0" +"10246","382","15","0","-9336","-2463","169","0","0" +"10245","382","16","0","-8844","-2593","178","0","0" +"10244","382","17","0","-8372","-2542","202","0","0" +"10243","382","18","0","-8188","-2600","202","0","0" +"10262","382","19","0","-8153","-2703","202","0","0" +"10263","382","20","0","-8244","-2794","217","0","0" +"12733","382","21","0","-8364","-2741","188","0","0" +"10271","383","0","30","-1301","-765","159","0","0" +"10270","383","1","30","-1305","-681","146","0","0" +"10269","383","2","30","-1327","-495","129","0","0" +"10268","383","3","30","-1374","-389","117","0","0" +"10267","383","4","30","-1361","-332","107","0","0" +"10266","383","5","30","-1346","-324","97","0","0" +"10265","383","6","30","-1338","-320","93","0","0" +"10264","383","7","30","-1335","-319","91","0","0" +"10281","384","0","1","136","1323","194","0","0" +"10282","384","1","1","119","1333","198","0","0" +"10283","384","2","1","99","1348","200","0","0" +"10284","384","3","1","72","1380","185","0","0" +"10285","384","4","1","35","1474","155","0","0" +"10286","384","5","1","47","1582","141","0","0" +"10287","384","6","1","142","1761","113","0","0" +"10288","384","7","1","304","1824","104","0","0" +"10289","384","8","1","535","1724","71","0","0" +"10290","384","9","1","830","1575","70","0","0" +"10291","384","10","1","1124","1542","87","0","0" +"10292","384","11","1","1273","1431","137","0","0" +"10293","384","12","1","1440","1415","192","0","0" +"10294","384","13","1","1569","1300","224","0","0" +"10295","384","14","1","1804","1358","227","0","0" +"10296","384","15","1","2063","1404","359","0","0" +"10297","384","16","1","2243","1493","403","0","0" +"10298","384","17","1","2395","1671","421","0","0" +"10299","384","18","1","2667","1796","423","0","0" +"10300","384","19","1","2752","2105","280","0","0" +"10301","384","20","1","2937","2461","185","0","0" +"10302","384","21","1","3130","2376","107","0","0" +"10303","384","22","1","3316","2119","41","0","0" +"10304","384","23","1","3436","1874","16","0","0" +"10305","384","24","1","3776","1502","12","0","0" +"10306","384","25","1","4107","1222","16","0","0" +"10307","384","26","1","4676","1015","16","0","0" +"10308","384","27","1","4960","687","8","0","0" +"10309","384","28","1","5199","540","24","0","0" +"10310","384","29","1","5594","545","24","0","0" +"10311","384","30","1","5952","443","28","0","0" +"10312","384","31","1","6103","571","35","0","0" +"10313","384","32","1","6311","520","24","0","0" +"10314","384","33","1","6341","558","17","0","0" +"10350","385","0","1","6341","558","17","0","0" +"10349","385","1","1","6350","600","31","0","0" +"10348","385","2","1","6301","633","33","0","0" +"10347","385","3","1","6104","634","18","0","0" +"10346","385","4","1","5399","587","18","0","0" +"10345","385","5","1","4793","721","27","0","0" +"10344","385","6","1","4629","935","39","0","0" +"10343","385","7","1","4058","1204","26","0","0" +"10342","385","8","1","3685","1402","12","0","0" +"10341","385","9","1","3436","1874","16","0","0" +"10340","385","10","1","3316","2119","41","0","0" +"10339","385","11","1","3107","2416","140","0","0" +"10338","385","12","1","2933","2448","192","0","0" +"10337","385","13","1","2757","2121","280","0","0" +"10336","385","14","1","2667","1796","423","0","0" +"10335","385","15","1","2395","1671","421","0","0" +"10334","385","16","1","2243","1493","403","0","0" +"10333","385","17","1","2063","1404","359","0","0" +"10332","385","18","1","1804","1358","227","0","0" +"10331","385","19","1","1569","1300","224","0","0" +"10330","385","20","1","1440","1415","192","0","0" +"10329","385","21","1","1273","1431","137","0","0" +"10328","385","22","1","1124","1542","87","0","0" +"10327","385","23","1","830","1575","70","0","0" +"10326","385","24","1","535","1724","71","0","0" +"10325","385","25","1","304","1824","104","0","0" +"10324","385","26","1","142","1761","113","0","0" +"10323","385","27","1","47","1582","141","0","0" +"10322","385","28","1","-4","1422","156","0","0" +"10321","385","29","1","6","1251","194","0","0" +"10320","385","30","1","109","1221","199","0","0" +"10319","385","31","1","154","1290","197","0","0" +"10318","385","32","1","136","1323","195","0","0" +"10391","386","0","1","6341","558","17","0","0" +"10390","386","1","1","6352","598","27","0","0" +"10389","386","2","1","6322","632","30","0","0" +"10388","386","3","1","6234","633","31","0","0" +"10387","386","4","1","5966","631","31","0","0" +"10386","386","5","1","5669","622","31","0","0" +"10385","386","6","1","5200","653","30","0","0" +"10384","386","7","1","4935","392","50","0","0" +"10383","386","8","1","4922","247","57","0","0" +"10382","386","9","1","4969","186","72","0","0" +"10381","386","10","1","5031","41","80","0","0" +"10380","386","11","1","5185","-60","115","0","0" +"10379","386","12","1","5217","-126","169","0","0" +"10378","386","13","1","5148","-216","251","0","0" +"10377","386","14","1","5261","-294","325","0","0" +"10376","386","15","1","5247","-400","323","0","0" +"10375","386","16","1","5266","-474","324","0","0" +"10374","386","17","1","5268","-618","333","0","0" +"10373","386","18","1","5297","-736","358","0","0" +"10372","386","19","1","5361","-766","389","0","0" +"10371","386","20","1","5487","-733","395","0","0" +"10370","386","21","1","5658","-740","389","0","0" +"10369","386","22","1","5771","-733","390","0","0" +"10368","386","23","1","5878","-684","385","0","0" +"10367","386","24","1","6006","-708","399","0","0" +"10366","386","25","1","6084","-715","423","0","0" +"10365","386","26","1","6192","-754","423","0","0" +"10364","386","27","1","6250","-856","425","0","0" +"10363","386","28","1","6370","-951","460","0","0" +"10362","386","29","1","6367","-1193","416","0","0" +"10361","386","30","1","6566","-1244","461","0","0" +"10360","386","31","1","6617","-1386","505","0","0" +"10359","386","32","1","6594","-1543","495","0","0" +"10358","386","33","1","6517","-1679","541","0","0" +"10357","386","34","1","6543","-1793","585","0","0" +"10356","386","35","1","6493","-1910","588","0","0" +"10355","386","36","1","6309","-1929","576","0","0" +"10354","386","37","1","6208","-1951","573","0","0" +"10439","387","0","1","-1196","29","177","0","0" +"10438","387","1","1","-1244","40","184","0","0" +"10437","387","2","1","-1313","41","183","0","0" +"10436","387","3","1","-1333","-111","174","0","0" +"10435","387","4","1","-1203","-496","89","0","0" +"10434","387","5","1","-1103","-966","74","0","0" +"10433","387","6","1","-774","-1217","197","0","0" +"10432","387","7","1","-640","-1291","228","0","0" +"10431","387","8","1","-400","-1945","182","0","0" +"10430","387","9","1","1098","-3239","152","0","0" +"10429","387","10","1","1190","-3752","126","0","0" +"10428","387","11","1","1687","-3918","101","0","0" +"10427","387","12","1","1736","-4042","71","0","0" +"10426","387","13","1","1598","-4181","63","0","0" +"10425","387","14","1","1615","-4255","65","0","0" +"10424","387","15","1","1601","-4336","63","0","0" +"12452","387","16","1","1629","-4396","63","0","0" +"12453","387","17","1","1694","-4392","63","0","0" +"12454","387","18","1","1722","-4344","63","0","0" +"12455","387","19","1","1679","-4314","63","0","0" +"10442","388","0","1","-7048","-3779","11","0","0" +"10443","388","1","1","-7054","-3783","13","0","0" +"10444","388","2","1","-7072","-3792","20","0","0" +"10445","388","3","1","-7094","-3829","22","0","0" +"10446","388","4","1","-7096","-3915","22","0","0" +"10447","388","5","1","-7026","-4182","46","0","0" +"10448","388","6","1","-6813","-4689","90","0","0" +"10449","388","7","1","-6400","-4867","90","0","0" +"10450","388","8","1","-5333","-4899","90","0","0" +"10451","388","9","1","-4400","-4799","90","0","0" +"10452","388","10","1","-4033","-4266","90","0","0" +"10453","388","11","1","-3567","-3566","90","0","0" +"10454","388","12","1","-3228","-3172","90","0","0" +"10455","388","13","1","-3140","-2965","71","0","0" +"12422","388","14","1","-3129","-2873","47","0","0" +"17660","388","15","1","-3144","-2842","37","0","0" +"10456","389","0","1","-7049","-3780","11","0","0" +"10457","389","1","1","-7080","-3754","22","0","0" +"10458","389","2","1","-7094","-3699","36","0","0" +"10459","389","3","1","-7031","-3684","49","0","0" +"10460","389","4","1","-6891","-3746","77","0","0" +"10461","389","5","1","-6833","-3757","52","0","0" +"10462","389","6","1","-6728","-3699","-1","0","0" +"10463","389","7","1","-6539","-3667","-36","0","0" +"10464","389","8","1","-6218","-3700","-47","0","0" +"10465","389","9","1","-5915","-3642","-46","0","0" +"10466","389","10","1","-5689","-3507","-27","0","0" +"10467","389","11","1","-5600","-3258","-3","0","0" +"10468","389","12","1","-5528","-3082","15","0","0" +"10469","389","13","1","-5410","-2890","39","0","0" +"10470","389","14","1","-5391","-2741","60","0","0" +"10471","389","15","1","-5475","-2637","77","0","0" +"10472","389","16","1","-5455","-2443","107","0","0" +"10473","389","17","1","-5458","-2298","91","0","0" +"10474","389","18","1","-5427","-2123","45","0","0" +"10475","389","19","1","-5492","-1920","14","0","0" +"10476","389","20","1","-5471","-1745","-6","0","0" +"10477","389","21","1","-5378","-1606","-23","0","0" +"10494","389","22","1","-5236","-1471","-23","0","0" +"10495","389","23","1","-5076","-1224","-24","0","0" +"10496","389","24","1","-4944","-1103","-28","0","0" +"10497","389","25","1","-4721","-971","-30","0","0" +"10498","389","26","1","-4564","-852","-22","0","0" +"10499","389","27","1","-4479","-716","-3","0","0" +"10500","389","28","1","-4473","-441","49","0","0" +"10501","389","29","1","-4415","-230","70","0","0" +"10502","389","30","1","-4395","-158","65","0","0" +"10503","389","31","1","-4319","-94","77","0","0" +"12424","389","32","1","-4329","-34","88","0","0" +"12425","389","33","1","-4340","72","86","0","0" +"12426","389","34","1","-4350","136","63","0","0" +"12427","389","35","1","-4372","186","39","0","0" +"12428","389","36","1","-4416","200","27","0","0" +"10491","390","0","1","-3144","-2842","35","0","0" +"10490","390","1","1","-3141","-2842","36","0","0" +"10489","390","2","1","-3099","-2837","58","0","0" +"10488","390","3","1","-3032","-2838","77","0","0" +"10487","390","4","1","-2948","-2895","77","0","0" +"10486","390","5","1","-2966","-3133","77","0","0" +"10485","390","6","1","-3366","-3500","77","0","0" +"10484","390","7","1","-3832","-4000","77","0","0" +"10483","390","8","1","-4350","-4781","77","0","0" +"10482","390","9","1","-5334","-4899","77","0","0" +"10492","390","10","1","-6400","-4900","77","0","0" +"10493","390","11","1","-6835","-4696","77","0","0" +"12407","390","12","1","-7000","-4133","77","0","0" +"12408","390","13","1","-7003","-3810","32","0","0" +"12423","390","14","1","-7051","-3779","12","0","0" +"10504","391","0","1","-4418","199","26","0","0" +"10505","391","1","1","-4438","165","32","0","0" +"10506","391","2","1","-4416","84","48","0","0" +"10507","391","3","1","-4321","-26","75","0","0" +"10508","391","4","1","-4208","-99","73","0","0" +"10509","391","5","1","-4206","-240","67","0","0" +"10510","391","6","1","-4289","-361","63","0","0" +"10511","391","7","1","-4298","-536","20","0","0" +"10512","391","8","1","-4283","-786","-22","0","0" +"10513","391","9","1","-4496","-954","-16","0","0" +"10514","391","10","1","-4608","-1072","-15","0","0" +"10515","391","11","1","-4733","-1141","14","0","0" +"10516","391","12","1","-4823","-1385","35","0","0" +"10517","391","13","1","-5105","-1591","45","0","0" +"10518","391","14","1","-5194","-1926","84","0","0" +"10519","391","15","1","-5120","-2139","95","0","0" +"10520","391","16","1","-5144","-2503","40","0","0" +"10521","391","17","1","-5313","-2848","3","0","0" +"10522","391","18","1","-5343","-3202","11","0","0" +"10523","391","19","1","-5522","-3457","-10","0","0" +"10551","391","20","1","-5877","-3742","-24","0","0" +"10552","391","21","1","-6276","-3797","-24","0","0" +"10553","391","22","1","-6638","-3709","-5","0","0" +"10554","391","23","1","-6890","-3753","89","0","0" +"10555","391","24","1","-6967","-3722","66","0","0" +"10556","391","25","1","-7017","-3752","32","0","0" +"10557","391","26","1","-7051","-3780","12","0","0" +"10524","392","0","1","-7048","-3779","11","0","0" +"10525","392","1","1","-7069","-3769","16","0","0" +"10526","392","2","1","-7096","-3732","28","0","0" +"10527","392","3","1","-7083","-3667","38","0","0" +"10528","392","4","1","-7023","-3637","56","0","0" +"10529","392","5","1","-6848","-3768","75","0","0" +"10530","392","6","1","-6205","-3907","-34","0","0" +"10531","392","7","1","-5819","-3908","-24","0","0" +"10532","392","8","1","-5588","-3312","-20","0","0" +"10533","392","9","1","-5356","-3228","-19","0","0" +"10534","392","10","1","-5315","-2836","-31","0","0" +"10535","392","11","1","-5181","-2600","-30","0","0" +"10536","392","12","1","-5071","-2226","-39","0","0" +"10537","392","13","1","-5151","-2059","-3","0","0" +"10538","392","14","1","-5222","-1899","-33","0","0" +"10539","392","15","1","-5105","-1777","-9","0","0" +"10540","392","16","1","-4620","-1846","135","0","0" +"10541","392","17","1","-4400","-1875","110","0","0" +"10542","392","18","1","-3949","-1896","147","0","0" +"10543","392","19","1","-3171","-1906","148","0","0" +"10544","392","20","1","-1816","-1922","159","0","0" +"10545","392","21","1","-930","-2017","117","0","0" +"10546","392","22","1","-697","-2199","213","0","0" +"10547","392","23","1","-626","-2294","217","0","0" +"10548","392","24","1","-541","-2429","154","0","0" +"10561","392","25","1","-414","-2553","118","0","0" +"10562","392","26","1","-440","-2599","98","0","0" +"10592","393","0","1","-440","-2599","97","0","0" +"10591","393","1","1","-441","-2601","97","0","0" +"10590","393","2","1","-452","-2628","99","0","0" +"10589","393","3","1","-492","-2724","105","0","0" +"10588","393","4","1","-582","-2706","107","0","0" +"10587","393","5","1","-612","-2544","132","0","0" +"10586","393","6","1","-626","-2294","217","0","0" +"10585","393","7","1","-697","-2199","213","0","0" +"10584","393","8","1","-930","-2017","117","0","0" +"10583","393","9","1","-1816","-1922","159","0","0" +"10582","393","10","1","-3171","-1906","148","0","0" +"10581","393","11","1","-3949","-1896","147","0","0" +"10580","393","12","1","-4400","-1875","110","0","0" +"10579","393","13","1","-4620","-1846","135","0","0" +"10578","393","14","1","-5105","-1777","-9","0","0" +"10577","393","15","1","-5222","-1899","-33","0","0" +"10576","393","16","1","-5151","-2059","-3","0","0" +"10575","393","17","1","-5071","-2226","-39","0","0" +"10574","393","18","1","-5181","-2600","-30","0","0" +"10573","393","19","1","-5315","-2836","-31","0","0" +"10572","393","20","1","-5356","-3228","-19","0","0" +"10571","393","21","1","-5588","-3312","-20","0","0" +"10570","393","22","1","-5819","-3908","-41","0","0" +"10569","393","23","1","-6649","-3802","4","0","0" +"10568","393","24","1","-6873","-3772","83","0","0" +"10567","393","25","1","-6966","-3710","56","0","0" +"10566","393","26","1","-7013","-3752","32","0","0" +"10565","393","27","1","-7052","-3781","12","0","0" +"10595","394","0","1","-7223","-3735","9","0","0" +"10596","394","1","1","-7221","-3731","9","0","0" +"10597","394","2","1","-7207","-3699","13","0","0" +"10598","394","3","1","-7134","-3546","31","0","0" +"10599","394","4","1","-7002","-3032","39","0","0" +"10600","394","5","1","-7150","-2576","47","0","0" +"10601","394","6","1","-7422","-2391","-166","0","0" +"10602","394","7","1","-7573","-2092","-260","0","0" +"10603","394","8","1","-7535","-1888","-261","0","0" +"10604","394","9","1","-7600","-1746","-255","0","0" +"10605","394","10","1","-7345","-1565","-257","0","0" +"10606","394","11","1","-7266","-1429","-213","0","0" +"10607","394","12","1","-7260","-1212","-200","0","0" +"10626","394","13","1","-6909","-722","-240","0","0" +"10627","394","14","1","-6577","-599","-229","0","0" +"10628","394","15","1","-6453","-481","-159","0","0" +"10629","394","16","1","-6367","-434","10","0","0" +"10630","394","17","1","-6277","-398","46","0","0" +"10631","394","18","1","-6322","-241","33","0","0" +"10644","394","19","1","-6672","-38","30","0","0" +"11356","394","20","1","-6779","126","46","0","0" +"11357","394","21","1","-6833","401","46","0","0" +"11358","394","22","1","-6832","563","86","0","0" +"11359","394","23","1","-6756","681","104","0","0" +"11360","394","24","1","-6761","772","91","0","0" +"10608","395","0","1","-7048","-3780","11","0","0" +"10609","395","1","1","-7066","-3772","19","0","0" +"10610","395","2","1","-7108","-3749","32","0","0" +"10611","395","3","1","-7182","-3713","33","0","0" +"10612","395","4","1","-7364","-3615","34","0","0" +"10613","395","5","1","-7599","-3398","70","0","0" +"10614","395","6","1","-7744","-3251","94","0","0" +"10615","395","7","1","-7845","-3092","84","0","0" +"10616","395","8","1","-7932","-2839","55","0","0" +"10617","395","9","1","-8108","-2604","40","0","0" +"10618","395","10","1","-8310","-2378","46","0","0" +"10619","395","11","1","-8351","-2154","46","0","0" +"10620","395","12","1","-8204","-1938","-3","0","0" +"10621","395","13","1","-8117","-1550","-199","0","0" +"10622","395","14","1","-7889","-1268","-232","0","0" +"10623","395","15","1","-7437","-1069","-237","0","0" +"10624","395","16","1","-7242","-922","-232","0","0" +"10625","395","17","1","-7061","-681","-232","0","0" +"10632","395","18","1","-6795","-787","-243","0","0" +"10633","395","19","1","-6578","-736","-226","0","0" +"10634","395","20","1","-6381","-573","-158","0","0" +"10635","395","21","1","-6236","-574","-92","0","0" +"10636","395","22","1","-6218","-490","-26","0","0" +"10637","395","23","1","-6310","-378","21","0","0" +"10638","395","24","1","-6342","-298","12","0","0" +"10639","395","25","1","-6523","-127","21","0","0" +"10640","395","26","1","-6733","-24","21","0","0" +"10641","395","27","1","-6857","182","21","0","0" +"11361","395","28","1","-6872","404","33","0","0" +"11362","395","29","1","-6837","570","33","0","0" +"11363","395","30","1","-6866","713","84","0","0" +"11364","395","31","1","-6812","835","53","0","0" +"10696","398","0","1","6811","-4608","711","0","0" +"10697","398","1","1","6815","-4613","713","0","0" +"10698","398","2","1","6834","-4651","723","0","0" +"10699","398","3","1","6820","-4716","722","0","0" +"10700","398","4","1","6740","-4751","715","0","0" +"10701","398","5","1","6562","-4797","715","0","0" +"10702","398","6","1","6428","-4899","717","0","0" +"10703","398","7","1","6269","-4887","734","0","0" +"10704","398","8","1","6108","-4923","754","0","0" +"10705","398","9","1","5793","-4865","837","0","0" +"10706","398","10","1","5667","-4842","860","0","0" +"10707","398","11","1","5394","-4758","818","0","0" +"10708","398","12","1","5127","-4914","908","0","0" +"10709","398","13","1","5093","-5061","929","0","0" +"10710","398","14","1","5085","-5126","937","0","0" +"10711","398","15","1","5026","-5188","843","0","0" +"10712","398","16","1","4799","-5202","535","0","0" +"10713","398","17","1","4399","-5250","340","0","0" +"10714","398","18","1","4133","-5133","263","0","0" +"10715","398","19","1","3733","-4883","217","0","0" +"10716","398","20","1","3500","-4668","187","0","0" +"10717","398","21","1","3300","-4462","173","0","0" +"10718","398","22","1","3171","-4295","164","0","0" +"10719","398","23","1","2943","-3983","152","0","0" +"10720","398","24","1","2800","-3810","130","0","0" +"10721","398","25","1","2525","-3741","128","0","0" +"10722","398","26","1","2226","-3699","128","0","0" +"10723","398","27","1","1850","-3742","98","0","0" +"10724","398","28","1","1704","-3892","98","0","0" +"10725","398","29","1","1726","-4042","75","0","0" +"10726","398","30","1","1592","-4156","79","0","0" +"10727","398","31","1","1603","-4263","61","0","0" +"10728","398","32","1","1600","-4353","60","0","0" +"10729","398","33","1","1632","-4402","60","0","0" +"10730","398","34","1","1686","-4400","64","0","0" +"10731","398","35","1","1724","-4365","65","0","0" +"10732","398","36","1","1713","-4321","64","0","0" +"10733","398","37","1","1678","-4315","64","0","0" +"10781","399","0","1","1676","-4316","62","0","0" +"10780","399","1","1","1672","-4313","62","0","0" +"10779","399","2","1","1616","-4265","63","0","0" +"10778","399","3","1","1573","-4164","78","0","0" +"10777","399","4","1","1750","-4057","73","0","0" +"10776","399","5","1","1695","-3916","97","0","0" +"10775","399","6","1","1726","-3805","84","0","0" +"10774","399","7","1","1859","-3730","75","0","0" +"10773","399","8","1","2256","-3713","79","0","0" +"10772","399","9","1","2637","-3702","88","0","0" +"10771","399","10","1","2787","-3783","120","0","0" +"10770","399","11","1","2934","-3965","160","0","0" +"10769","399","12","1","3099","-4205","160","0","0" +"10768","399","13","1","3312","-4448","160","0","0" +"10767","399","14","1","3454","-4722","160","0","0" +"10766","399","15","1","3744","-4976","198","0","0" +"10765","399","16","1","4100","-5150","248","0","0" +"10764","399","17","1","4433","-5285","317","0","0" +"10763","399","18","1","4800","-5266","455","0","0" +"10762","399","19","1","5041","-5184","856","0","0" +"10761","399","20","1","5085","-5126","938","0","0" +"10760","399","21","1","5093","-5061","929","0","0" +"10759","399","22","1","5127","-4914","908","0","0" +"10758","399","23","1","5394","-4758","818","0","0" +"10757","399","24","1","5667","-4842","860","0","0" +"10756","399","25","1","5793","-4865","837","0","0" +"10755","399","26","1","6108","-4923","754","0","0" +"10754","399","27","1","6269","-4887","734","0","0" +"10753","399","28","1","6439","-4891","717","0","0" +"10752","399","29","1","6632","-4634","738","0","0" +"10751","399","30","1","6733","-4597","731","0","0" +"10750","399","31","1","6808","-4606","713","0","0" +"10787","400","0","1","3661","-4389","114","0","0" +"10788","400","1","1","3665","-4383","118","0","0" +"10789","400","2","1","3676","-4347","119","0","0" +"10790","400","3","1","3636","-4266","119","0","0" +"10791","400","4","1","3557","-4181","119","0","0" +"10792","400","5","1","3427","-4135","149","0","0" +"10793","400","6","1","3172","-4071","110","0","0" +"10794","400","7","1","2866","-3865","115","0","0" +"10795","400","8","1","2867","-3731","102","0","0" +"10796","400","9","1","2908","-3567","111","0","0" +"10797","400","10","1","2984","-3422","147","0","0" +"10798","400","11","1","2971","-3272","180","0","0" +"10799","400","12","1","2836","-3129","195","0","0" +"10800","400","13","1","2876","-3029","212","0","0" +"10801","400","14","1","2874","-2918","207","0","0" +"10802","400","15","1","2901","-2819","219","0","0" +"10803","400","16","1","2845","-2537","229","0","0" +"10804","400","17","1","2739","-2384","210","0","0" +"10805","400","18","1","2725","-2201","208","0","0" +"10806","400","19","1","2883","-2137","212","0","0" +"10807","400","20","1","2993","-2050","208","0","0" +"10808","400","21","1","2967","-1847","181","0","0" +"10809","400","22","1","3172","-1731","181","0","0" +"10810","400","23","1","3291","-1561","175","0","0" +"10811","400","24","1","3745","-1474","201","0","0" +"10812","400","25","1","3905","-1254","233","0","0" +"10813","400","26","1","3908","-1116","260","0","0" +"10814","400","27","1","4066","-1042","274","0","0" +"10817","400","28","1","4283","-844","293","0","0" +"10818","400","29","1","4395","-850","300","0","0" +"10819","400","30","1","4570","-847","310","0","0" +"10820","400","31","1","4778","-752","306","0","0" +"10822","400","32","1","4933","-733","311","0","0" +"10823","400","33","1","5069","-751","329","0","0" +"10824","400","34","1","5167","-750","346","0","0" +"10826","400","35","1","5246","-765","352","0","0" +"10827","400","36","1","5287","-700","347","0","0" +"10828","400","37","1","5269","-610","331","0","0" +"10829","400","38","1","5270","-522","337","0","0" +"10830","400","39","1","5253","-433","333","0","0" +"10831","400","40","1","5268","-353","333","0","0" +"10832","400","41","1","5245","-253","340","0","0" +"10833","400","42","1","5160","-200","366","0","0" +"10834","400","43","1","5085","-233","372","0","0" +"10835","400","44","1","5067","-337","369","0","0" +"10880","401","0","1","5067","-337","368","0","0" +"10879","401","1","1","5067","-335","368","0","0" +"10878","401","2","1","5070","-320","369","0","0" +"10877","401","3","1","5085","-226","372","0","0" +"10876","401","4","1","5162","-136","366","0","0" +"10875","401","5","1","5228","-149","358","0","0" +"10874","401","6","1","5261","-330","341","0","0" +"10873","401","7","1","5251","-450","337","0","0" +"10872","401","8","1","5271","-588","331","0","0" +"10871","401","9","1","5281","-694","351","0","0" +"10870","401","10","1","5242","-766","358","0","0" +"10869","401","11","1","5172","-753","347","0","0" +"10868","401","12","1","5082","-753","333","0","0" +"10867","401","13","1","4981","-733","317","0","0" +"10866","401","14","1","4778","-752","306","0","0" +"10865","401","15","1","4570","-847","309","0","0" +"10864","401","16","1","4395","-850","300","0","0" +"10863","401","17","1","4283","-844","293","0","0" +"10862","401","18","1","4066","-1042","274","0","0" +"10861","401","19","1","3908","-1116","260","0","0" +"10860","401","20","1","3905","-1254","233","0","0" +"10859","401","21","1","3745","-1474","201","0","0" +"10858","401","22","1","3291","-1561","175","0","0" +"10857","401","23","1","3172","-1731","181","0","0" +"10856","401","24","1","2967","-1847","181","0","0" +"10855","401","25","1","2993","-2050","208","0","0" +"10854","401","26","1","2883","-2137","212","0","0" +"10853","401","27","1","2725","-2201","208","0","0" +"10852","401","28","1","2739","-2384","210","0","0" +"10851","401","29","1","2845","-2537","229","0","0" +"10850","401","30","1","2901","-2819","219","0","0" +"10849","401","31","1","2874","-2918","207","0","0" +"10848","401","32","1","2876","-3029","212","0","0" +"10847","401","33","1","2836","-3129","195","0","0" +"10846","401","34","1","2971","-3272","180","0","0" +"10845","401","35","1","2984","-3422","147","0","0" +"10844","401","36","1","2908","-3567","116","0","0" +"10843","401","37","1","2870","-3771","113","0","0" +"10842","401","38","1","2931","-3959","148","0","0" +"10841","401","39","1","3096","-4188","159","0","0" +"10840","401","40","1","3314","-4285","143","0","0" +"10839","401","41","1","3476","-4342","142","0","0" +"10838","401","42","1","3550","-4372","129","0","0" +"10837","401","43","1","3661","-4389","115","0","0" +"10883","402","0","0","-6556","-1169","310","0","0" +"10884","402","1","0","-6558","-1169","310","0","0" +"10885","402","2","0","-6576","-1166","314","0","0" +"10886","402","3","0","-6642","-1148","311","0","0" +"10887","402","4","0","-6683","-1065","301","0","0" +"10888","402","5","0","-6682","-949","286","0","0" +"10889","402","6","0","-6535","-884","317","0","0" +"10890","402","7","0","-6363","-820","401","0","0" +"10891","402","8","0","-6283","-807","432","0","0" +"10892","402","9","0","-6097","-708","496","0","0" +"10893","402","10","0","-5899","-597","456","0","0" +"10894","402","11","0","-5699","-567","469","0","0" +"10895","402","12","0","-5432","-600","482","0","0" +"10896","402","13","0","-5175","-734","497","0","0" +"10897","402","14","0","-5077","-783","503","0","0" +"10898","402","15","0","-4994","-866","517","0","0" +"10899","402","16","0","-4971","-894","543","0","0" +"10900","402","17","0","-4921","-938","541","0","0" +"10901","402","18","0","-4874","-959","542","0","0" +"10902","402","19","0","-4831","-1055","555","0","0" +"10903","402","20","0","-4791","-1060","542","0","0" +"10904","402","21","0","-4741","-1116","527","0","0" +"10905","402","22","0","-4755","-1152","515","0","0" +"12741","402","23","0","-4822","-1156","505","0","0" +"10928","403","0","0","-4822","-1155","503","0","0" +"10927","403","1","0","-4755","-1152","520","0","0" +"10926","403","2","0","-4741","-1116","534","0","0" +"10925","403","3","0","-4791","-1060","542","0","0" +"10924","403","4","0","-4831","-1055","555","0","0" +"10923","403","5","0","-4874","-959","542","0","0" +"10922","403","6","0","-4921","-938","541","0","0" +"10921","403","7","0","-4971","-894","543","0","0" +"10920","403","8","0","-4994","-866","517","0","0" +"10919","403","9","0","-5063","-793","502","0","0" +"10918","403","10","0","-5153","-749","496","0","0" +"10917","403","11","0","-5602","-564","467","0","0" +"10916","403","12","0","-5831","-542","436","0","0" +"10915","403","13","0","-6097","-708","496","0","0" +"10914","403","14","0","-6283","-807","432","0","0" +"10913","403","15","0","-6363","-820","401","0","0" +"10912","403","16","0","-6535","-884","317","0","0" +"10911","403","17","0","-6682","-949","286","0","0" +"10910","403","18","0","-6683","-1065","301","0","0" +"10909","403","19","0","-6642","-1148","311","0","0" +"10908","403","20","0","-6576","-1166","314","0","0" +"10907","403","21","0","-6558","-1169","310","0","0" +"10906","403","22","0","-6556","-1169","310","0","0" +"10951","404","0","0","-4822","-1156","503","0","0" +"10950","404","1","0","-4823","-1154","504","0","0" +"10949","404","2","0","-4846","-1118","518","0","0" +"10948","404","3","0","-4847","-1066","550","0","0" +"10947","404","4","0","-4931","-996","541","0","0" +"10946","404","5","0","-4950","-924","542","0","0" +"10945","404","6","0","-4971","-894","543","0","0" +"10944","404","7","0","-4994","-866","517","0","0" +"10943","404","8","0","-5101","-769","503","0","0" +"10942","404","9","0","-5364","-666","497","0","0" +"10941","404","10","0","-5599","-612","472","0","0" +"10940","404","11","0","-5868","-574","436","0","0" +"10939","404","12","0","-6030","-664","491","0","0" +"10938","404","13","0","-6109","-715","488","0","0" +"10937","404","14","0","-6333","-832","432","0","0" +"10936","404","15","0","-6467","-900","382","0","0" +"10935","404","16","0","-6667","-986","325","0","0" +"10934","404","17","0","-6699","-1087","319","0","0" +"10933","404","18","0","-6642","-1148","322","0","0" +"10932","404","19","0","-6553","-1168","312","0","0" +"10983","406","0","0","-6634","-2178","245","0","0" +"10984","406","1","0","-6636","-2179","245","0","0" +"10985","406","2","0","-6669","-2186","251","0","0" +"10986","406","3","0","-6839","-2225","283","0","0" +"10987","406","4","0","-6912","-2187","293","0","0" +"10988","406","5","0","-6941","-2030","302","0","0" +"10989","406","6","0","-6867","-1716","271","0","0" +"10990","406","7","0","-6876","-1289","263","0","0" +"10991","406","8","0","-6729","-1042","269","0","0" +"10992","406","9","0","-6557","-1099","313","0","0" +"11002","407","0","0","-6557","-1099","310","0","0" +"11001","407","1","0","-6559","-1098","311","0","0" +"11000","407","2","0","-6602","-1081","309","0","0" +"10999","407","3","0","-6729","-1042","267","0","0" +"10998","407","4","0","-6876","-1289","263","0","0" +"10997","407","5","0","-6867","-1716","271","0","0" +"10996","407","6","0","-6941","-2030","302","0","0" +"10995","407","7","0","-6912","-2187","293","0","0" +"10994","407","8","0","-6799","-2456","288","0","0" +"10993","407","9","0","-6684","-2460","284","0","0" +"12410","407","10","0","-6635","-2381","284","0","0" +"12411","407","11","0","-6630","-2243","265","0","0" +"12412","407","12","0","-6633","-2182","247","0","0" +"11005","408","0","0","-7505","-2188","166","0","0" +"11006","408","1","0","-7507","-2187","166","0","0" +"11007","408","2","0","-7553","-2141","178","0","0" +"11008","408","3","0","-7640","-1993","211","0","0" +"11009","408","4","0","-7601","-1749","264","0","0" +"11010","408","5","0","-7543","-1645","318","0","0" +"11011","408","6","0","-7334","-1588","338","0","0" +"11012","408","7","0","-7130","-1468","292","0","0" +"11013","408","8","0","-6870","-1196","276","0","0" +"11014","408","9","0","-6713","-1058","296","0","0" +"11015","408","10","0","-6555","-1100","312","0","0" +"11030","409","0","0","-6555","-1100","310","0","0" +"11029","409","1","0","-6557","-1099","311","0","0" +"11028","409","2","0","-6613","-1086","309","0","0" +"11027","409","3","0","-6745","-1099","295","0","0" +"11026","409","4","0","-6904","-1246","279","0","0" +"11025","409","5","0","-7235","-1518","312","0","0" +"11024","409","6","0","-7378","-1613","335","0","0" +"11023","409","7","0","-7599","-1700","243","0","0" +"11022","409","8","0","-7657","-1870","229","0","0" +"11021","409","9","0","-7633","-1990","211","0","0" +"11020","409","10","0","-7505","-2188","168","0","0" +"11032","410","0","0","-8362","-2738","186","0","0" +"11033","410","1","0","-8359","-2740","187","0","0" +"11034","410","2","0","-8321","-2756","200","0","0" +"11035","410","3","0","-8230","-2774","206","0","0" +"11036","410","4","0","-8100","-2732","219","0","0" +"11037","410","5","0","-7999","-2566","218","0","0" +"11038","410","6","0","-7899","-2166","218","0","0" +"11039","410","7","0","-7780","-1868","214","0","0" +"11040","410","8","0","-7377","-1618","339","0","0" +"11041","410","9","0","-7020","-1368","279","0","0" +"11042","410","10","0","-6817","-1123","273","0","0" +"11043","410","11","0","-6611","-1167","315","0","0" +"12851","410","12","0","-6552","-1169","312","0","0" +"11055","411","0","0","-6554","-1169","310","0","0" +"11054","411","1","0","-6557","-1169","311","0","0" +"11053","411","2","0","-6596","-1171","315","0","0" +"11052","411","3","0","-6663","-1207","314","0","0" +"11051","411","4","0","-6898","-1327","298","0","0" +"11050","411","5","0","-7132","-1465","297","0","0" +"11049","411","6","0","-7379","-1611","333","0","0" +"11048","411","7","0","-7834","-1901","219","0","0" +"11047","411","8","0","-8112","-2166","203","0","0" +"11046","411","9","0","-8166","-2466","201","0","0" +"11045","411","10","0","-8132","-2666","202","0","0" +"11044","411","11","0","-8252","-2797","220","0","0" +"12643","411","12","0","-8362","-2738","188","0","0" +"11058","412","0","0","-634","-4720","6","0","0" +"11059","412","1","0","-632","-4721","7","0","0" +"11060","412","2","0","-611","-4731","10","0","0" +"11061","412","3","0","-503","-4778","28","0","0" +"11062","412","4","0","-354","-4703","59","0","0" +"11063","412","5","0","-225","-4355","128","0","0" +"11064","412","6","0","-87","-4265","160","0","0" +"11065","412","7","0","65","-4103","183","0","0" +"11066","412","8","0","157","-3797","201","0","0" +"11068","412","9","0","-40","-3242","188","0","0" +"11069","412","10","0","140","-2719","198","0","0" +"11070","412","11","0","125","-2194","229","0","0" +"11071","412","12","0","103","-2032","230","0","0" +"11072","412","13","0","13","-1923","235","0","0" +"11073","412","14","0","-58","-1864","230","0","0" +"11074","412","15","0","-135","-1807","222","0","0" +"11075","412","16","0","-275","-1672","191","0","0" +"11957","412","17","0","-305","-1474","164","0","0" +"21631","412","18","0","-327","-1229","122","0","0" +"21632","412","19","0","-271","-1038","99","0","0" +"21633","412","20","0","-223","-936","89","0","0" +"21634","412","21","0","-74","-894","69","0","0" +"21635","412","22","0","0","-860","62","0","0" +"11092","413","0","0","-1","-860","60","0","0" +"11091","413","1","0","-3","-847","62","0","0" +"11090","413","2","0","-34","-783","74","0","0" +"11089","413","3","0","-144","-767","95","0","0" +"11088","413","4","0","-342","-997","100","0","0" +"11087","413","5","0","-306","-1349","128","0","0" +"11086","413","6","0","-255","-1683","181","0","0" +"11085","413","7","0","99","-2000","238","0","0" +"11084","413","8","0","133","-2167","238","0","0" +"11083","413","9","0","66","-2699","238","0","0" +"11082","413","10","0","0","-3335","238","0","0" +"11081","413","11","0","-163","-4174","214","0","0" +"11080","413","12","0","-267","-4399","184","0","0" +"11079","413","13","0","-432","-4499","118","0","0" +"11078","413","14","0","-568","-4554","76","0","0" +"18317","413","15","0","-689","-4580","50","0","0" +"18318","413","16","0","-712","-4647","27","0","0" +"18319","413","17","0","-674","-4691","22","0","0" +"18320","413","18","0","-636","-4719","7","0","0" +"11095","414","0","0","1570","266","-42","0","0" +"11096","414","1","0","1568","263","-41","0","0" +"11097","414","2","0","1563","251","-37","0","0" +"11098","414","3","0","1568","229","-33","0","0" +"11099","414","4","0","1592","212","-31","0","0" +"11100","414","5","0","1614","213","-31","0","0" +"11101","414","6","0","1633","239","-31","0","0" +"11102","414","7","0","1740","241","-42","0","0" +"11103","414","8","0","1749","277","-47","0","0" +"11104","414","9","0","1720","338","-58","0","0" +"11105","414","10","0","1687","361","-32","0","0" +"11106","414","11","0","1687","396","4","0","0" +"11107","414","12","0","1711","436","5","0","0" +"11108","414","13","0","1726","468","2","0","0" +"11109","414","14","0","1727","494","-1","0","0" +"11110","414","15","0","1693","534","-6","0","0" +"11111","414","16","0","1674","557","-5","0","0" +"11112","414","17","0","1682","587","0","0","0" +"11113","414","18","0","1688","618","11","0","0" +"11114","414","19","0","1679","638","20","0","0" +"11115","414","20","0","1652","644","31","0","0" +"11116","414","21","0","1618","646","42","0","0" +"11117","414","22","0","1601","655","48","0","0" +"11118","414","23","0","1589","678","57","0","0" +"11119","414","24","0","1596","713","70","0","0" +"11120","414","25","0","1614","728","78","0","0" +"11121","414","26","0","1640","733","86","0","0" +"11122","414","27","0","1681","729","91","0","0" +"11123","414","28","0","1736","736","82","0","0" +"11124","414","29","0","1797","756","70","0","0" +"11125","414","30","0","1835","724","63","0","0" +"11126","414","31","0","1814","643","67","0","0" +"11127","414","32","0","1812","528","83","0","0" +"11128","414","33","0","1950","290","51","0","0" +"11129","414","34","0","1898","-213","45","0","0" +"11130","414","35","0","1710","-475","43","0","0" +"11131","414","36","0","1672","-618","52","0","0" +"11132","414","37","0","1711","-704","70","0","0" +"11133","414","38","0","1716","-870","70","0","0" +"11134","414","39","0","1639","-998","79","0","0" +"11135","414","40","0","1637","-1185","68","0","0" +"11136","414","41","0","1643","-1266","74","0","0" +"11137","414","42","0","1673","-1346","75","0","0" +"11138","414","43","0","1638","-1395","77","0","0" +"11139","414","44","0","1531","-1445","86","0","0" +"11140","414","45","0","1414","-1630","79","0","0" +"11141","414","46","0","1295","-1690","89","0","0" +"11142","414","47","0","1164","-2251","71","0","0" +"11164","414","48","0","953","-2393","81","0","0" +"11165","414","49","0","862","-2391","115","0","0" +"11166","414","50","0","821","-2400","143","0","0" +"11167","414","51","0","787","-2414","171","0","0" +"11168","414","52","0","762","-2446","200","0","0" +"11169","414","53","0","726","-2482","229","0","0" +"11170","414","54","0","658","-2512","263","0","0" +"11171","414","55","0","612","-2493","271","0","0" +"11172","414","56","0","574","-2498","273","0","0" +"11173","414","57","0","538","-2519","265","0","0" +"11174","414","58","0","498","-2498","257","0","0" +"11175","414","59","0","421","-2505","232","0","0" +"11176","414","60","0","181","-2617","206","0","0" +"11177","414","61","0","31","-2946","202","0","0" +"11178","414","62","0","369","-3640","220","0","0" +"11179","414","63","0","-129","-4369","182","0","0" +"11180","414","64","0","-256","-4791","69","0","0" +"11181","414","65","0","-440","-4854","31","0","0" +"11182","414","66","0","-634","-4720","8","0","0" +"11249","415","0","0","-634","-4720","6","0","0" +"11248","415","1","0","-631","-4722","7","0","0" +"11247","415","2","0","-571","-4765","15","0","0" +"11246","415","3","0","-440","-4854","31","0","0" +"11245","415","4","0","-256","-4791","69","0","0" +"11244","415","5","0","-129","-4369","182","0","0" +"11243","415","6","0","369","-3640","220","0","0" +"11242","415","7","0","31","-2946","202","0","0" +"11241","415","8","0","181","-2617","206","0","0" +"11240","415","9","0","421","-2505","232","0","0" +"11239","415","10","0","498","-2498","257","0","0" +"11238","415","11","0","538","-2519","265","0","0" +"11237","415","12","0","574","-2498","273","0","0" +"11236","415","13","0","612","-2493","271","0","0" +"11235","415","14","0","658","-2512","263","0","0" +"11234","415","15","0","726","-2482","229","0","0" +"11233","415","16","0","762","-2446","200","0","0" +"11232","415","17","0","787","-2414","171","0","0" +"11231","415","18","0","821","-2400","143","0","0" +"11230","415","19","0","862","-2391","115","0","0" +"11229","415","20","0","953","-2393","81","0","0" +"11228","415","21","0","1164","-2251","71","0","0" +"11227","415","22","0","1295","-1690","89","0","0" +"11226","415","23","0","1414","-1630","79","0","0" +"11225","415","24","0","1531","-1445","86","0","0" +"11224","415","25","0","1638","-1395","77","0","0" +"11223","415","26","0","1673","-1346","75","0","0" +"11222","415","27","0","1643","-1266","74","0","0" +"11221","415","28","0","1637","-1185","68","0","0" +"11220","415","29","0","1639","-998","79","0","0" +"11219","415","30","0","1716","-870","70","0","0" +"11218","415","31","0","1711","-704","70","0","0" +"11217","415","32","0","1672","-618","52","0","0" +"11216","415","33","0","1710","-475","43","0","0" +"11215","415","34","0","1898","-213","45","0","0" +"11214","415","35","0","1950","290","48","0","0" +"11213","415","36","0","1940","480","52","0","0" +"11212","415","37","0","1953","599","62","0","0" +"11211","415","38","0","1908","678","57","0","0" +"11210","415","39","0","1813","748","70","0","0" +"11209","415","40","0","1737","727","82","0","0" +"11208","415","41","0","1681","729","91","0","0" +"11207","415","42","0","1640","733","86","0","0" +"11206","415","43","0","1614","728","78","0","0" +"11205","415","44","0","1596","713","70","0","0" +"11204","415","45","0","1589","678","57","0","0" +"11203","415","46","0","1601","655","48","0","0" +"11202","415","47","0","1618","646","42","0","0" +"11201","415","48","0","1652","644","31","0","0" +"11200","415","49","0","1679","638","20","0","0" +"11199","415","50","0","1688","618","11","0","0" +"11198","415","51","0","1682","587","0","0","0" +"11197","415","52","0","1674","557","-5","0","0" +"11196","415","53","0","1693","534","-6","0","0" +"11195","415","54","0","1727","494","-1","0","0" +"11194","415","55","0","1726","468","2","0","0" +"11193","415","56","0","1711","436","5","0","0" +"11192","415","57","0","1687","396","4","0","0" +"11191","415","58","0","1687","361","-32","0","0" +"11190","415","59","0","1720","338","-58","0","0" +"11189","415","60","0","1749","277","-47","0","0" +"11188","415","61","0","1740","241","-42","0","0" +"11187","415","62","0","1633","239","-31","0","0" +"11186","415","63","0","1614","213","-31","0","0" +"11185","415","64","0","1592","212","-31","0","0" +"11184","415","65","0","1568","229","-33","0","0" +"11183","415","66","0","1563","251","-37","0","0" +"11250","415","67","0","1570","266","-39","0","0" +"11252","416","0","1","-2381","-1882","96","0","0" +"11253","416","1","1","-2376","-1880","97","0","0" +"11254","416","2","1","-2349","-1875","100","0","0" +"11255","416","3","1","-2267","-1866","108","0","0" +"11256","416","4","1","-2113","-1898","124","0","0" +"11257","416","5","1","-1812","-1923","158","0","0" +"11258","416","6","1","-1430","-1892","127","0","0" +"11259","416","7","1","-957","-2168","132","0","0" +"11260","416","8","1","-601","-2218","239","0","0" +"11261","416","9","1","-430","-2421","150","0","0" +"11262","416","10","1","-410","-2533","125","0","0" +"11263","416","11","1","-442","-2597","99","0","0" +"11277","417","0","1","-440","-2597","96","0","0" +"11276","417","1","1","-441","-2600","97","0","0" +"11275","417","2","1","-464","-2648","101","0","0" +"11274","417","3","1","-586","-2659","130","0","0" +"11273","417","4","1","-799","-2600","145","0","0" +"11272","417","5","1","-1098","-2334","145","0","0" +"11271","417","6","1","-1498","-2165","123","0","0" +"11270","417","7","1","-1867","-2099","112","0","0" +"11269","417","8","1","-2233","-2019","116","0","0" +"11268","417","9","1","-2358","-1933","108","0","0" +"17659","417","10","1","-2379","-1881","98","0","0" +"11297","419","0","1","-1196","28","179","0","0" +"11296","419","1","1","-1202","30","180","0","0" +"11295","419","2","1","-1267","35","186","0","0" +"11294","419","3","1","-1322","-60","159","0","0" +"11293","419","4","1","-1452","-408","65","0","0" +"11292","419","5","1","-1881","-730","39","0","0" +"11291","419","6","1","-2435","-1131","11","0","0" +"11290","419","7","1","-2279","-1534","125","0","0" +"11289","419","8","1","-2379","-1882","100","0","0" +"11300","420","0","1","-2381","-1880","96","0","0" +"11301","420","1","1","-2378","-1878","97","0","0" +"11302","420","2","1","-2353","-1860","102","0","0" +"11303","420","3","1","-2294","-1815","115","0","0" +"11304","420","4","1","-2339","-1666","119","0","0" +"11305","420","5","1","-2279","-1252","25","0","0" +"11306","420","6","1","-2291","-813","8","0","0" +"11307","420","7","1","-1860","-527","10","0","0" +"11308","420","8","1","-1075","-675","4","0","0" +"11309","420","9","1","-858","-359","57","0","0" +"11310","420","10","1","-957","-113","168","0","0" +"11311","420","11","1","-1100","0","179","0","0" +"12429","420","12","1","-1172","24","181","0","0" +"12430","420","13","1","-1197","29","179","0","0" +"11312","421","0","1","-2381","-1881","96","0","0" +"11313","421","1","1","-2378","-1879","97","0","0" +"11314","421","2","1","-2362","-1867","99","0","0" +"11315","421","3","1","-2303","-1829","105","0","0" +"11316","421","4","1","-2306","-1759","105","0","0" +"11317","421","5","1","-2395","-1717","108","0","0" +"11318","421","6","1","-2487","-1800","115","0","0" +"11319","421","7","1","-2754","-1973","109","0","0" +"11320","421","8","1","-3027","-2022","124","0","0" +"11321","421","9","1","-3267","-1926","113","0","0" +"11322","421","10","1","-3692","-1958","107","0","0" +"11323","421","11","1","-3968","-1814","107","0","0" +"11324","421","12","1","-4158","-1894","106","0","0" +"11325","421","13","1","-4392","-1880","102","0","0" +"11326","421","14","1","-4650","-1857","105","0","0" +"11328","421","15","1","-4815","-2028","19","0","0" +"11329","421","16","1","-5020","-2014","32","0","0" +"11330","421","17","1","-5080","-2191","37","0","0" +"11331","421","18","1","-5278","-2244","67","0","0" +"11332","421","19","1","-5388","-2398","93","0","0" +"11355","421","20","1","-5410","-2415","94","0","0" +"11333","422","0","1","-5409","-2417","91","0","0" +"11334","422","1","1","-5413","-2416","92","0","0" +"11335","422","2","1","-5442","-2408","100","0","0" +"11336","422","3","1","-5531","-2359","87","0","0" +"11337","422","4","1","-5509","-2244","53","0","0" +"11338","422","5","1","-5412","-2058","-16","0","0" +"11339","422","6","1","-5236","-1952","-43","0","0" +"11340","422","7","1","-5186","-1813","-32","0","0" +"11341","422","8","1","-5017","-1775","0","0","0" +"11342","422","9","1","-4667","-1838","122","0","0" +"11343","422","10","1","-4381","-1878","100","0","0" +"11344","422","11","1","-4122","-1886","105","0","0" +"11345","422","12","1","-3900","-1768","110","0","0" +"11346","422","13","1","-3698","-1898","113","0","0" +"11347","422","14","1","-3362","-1897","118","0","0" +"11348","422","15","1","-2997","-2009","137","0","0" +"11349","422","16","1","-2558","-1867","121","0","0" +"11350","422","17","1","-2426","-1707","118","0","0" +"11351","422","18","1","-2317","-1738","113","0","0" +"11352","422","19","1","-2326","-1858","104","0","0" +"11353","422","20","1","-2380","-1882","100","0","0" +"11400","423","0","1","-6812","835","50","0","0" +"11399","423","1","1","-6814","833","51","0","0" +"11398","423","2","1","-6846","796","68","0","0" +"11397","423","3","1","-6896","736","84","0","0" +"11396","423","4","1","-6837","570","33","0","0" +"11395","423","5","1","-6888","400","33","0","0" +"11394","423","6","1","-6887","165","21","0","0" +"11393","423","7","1","-6755","-58","21","0","0" +"11392","423","8","1","-6515","-109","32","0","0" +"11391","423","9","1","-6302","-274","23","0","0" +"11390","423","10","1","-6239","-380","31","0","0" +"11389","423","11","1","-6255","-477","15","0","0" +"11388","423","12","1","-6229","-579","-81","0","0" +"11387","423","13","1","-6264","-652","-88","0","0" +"11386","423","14","1","-6340","-744","-121","0","0" +"11385","423","15","1","-6538","-773","-226","0","0" +"11384","423","16","1","-6724","-683","-243","0","0" +"11383","423","17","1","-7123","-690","-232","0","0" +"11382","423","18","1","-7382","-765","-232","0","0" +"11381","423","19","1","-7514","-959","-237","0","0" +"11380","423","20","1","-7853","-1293","-232","0","0" +"11379","423","21","1","-8123","-1532","-199","0","0" +"11378","423","22","1","-8125","-1984","12","0","0" +"11377","423","23","1","-8074","-2252","46","0","0" +"11376","423","24","1","-8020","-2394","46","0","0" +"11375","423","25","1","-7967","-2520","73","0","0" +"11374","423","26","1","-7766","-2628","45","0","0" +"11373","423","27","1","-7589","-2992","58","0","0" +"11372","423","28","1","-7222","-2958","39","0","0" +"11371","423","29","1","-7061","-3191","26","0","0" +"11370","423","30","1","-7002","-3570","34","0","0" +"11369","423","31","1","-7015","-3753","33","0","0" +"11368","423","32","1","-7055","-3781","12","0","0" +"11427","424","0","1","-6761","772","90","0","0" +"11426","424","1","1","-6761","768","91","0","0" +"11425","424","2","1","-6761","751","93","0","0" +"11424","424","3","1","-6756","666","95","0","0" +"11423","424","4","1","-6766","467","52","0","0" +"11422","424","5","1","-6779","126","30","0","0" +"11421","424","6","1","-6728","-106","30","0","0" +"11420","424","7","1","-6461","-211","33","0","0" +"11419","424","8","1","-6272","-304","25","0","0" +"11418","424","9","1","-6257","-482","20","0","0" +"11417","424","10","1","-6437","-459","-101","0","0" +"11416","424","11","1","-6590","-624","-229","0","0" +"11415","424","12","1","-6892","-749","-240","0","0" +"11414","424","13","1","-6944","-1077","-251","0","0" +"11413","424","14","1","-7065","-1202","-217","0","0" +"11412","424","15","1","-7003","-1427","-231","0","0" +"11411","424","16","1","-7111","-1580","-243","0","0" +"11410","424","17","1","-7046","-1751","-212","0","0" +"11409","424","18","1","-6935","-2278","-159","0","0" +"11408","424","19","1","-7054","-2576","33","0","0" +"11407","424","20","1","-7084","-2958","29","0","0" +"11406","424","21","1","-7034","-3525","27","0","0" +"11405","424","22","1","-7182","-3657","19","0","0" +"17932","424","23","1","-7222","-3735","9","0","0" +"11432","425","0","0","-8360","-2739","185","0","0" +"11433","425","1","0","-8356","-2744","185","0","0" +"11434","425","2","0","-8315","-2775","200","0","0" +"11435","425","3","0","-8252","-2788","202","0","0" +"11436","425","4","0","-8127","-2703","202","0","0" +"11437","425","5","0","-8030","-2529","211","0","0" +"11438","425","6","0","-7988","-2223","194","0","0" +"11439","425","7","0","-8046","-1980","194","0","0" +"11440","425","8","0","-8078","-1689","194","0","0" +"11441","425","9","0","-8117","-1487","207","0","0" +"11442","425","10","0","-8186","-1176","207","0","0" +"11443","425","11","0","-8192","-922","226","0","0" +"11444","425","12","0","-8142","-713","226","0","0" +"11445","425","13","0","-8161","-592","226","0","0" +"11446","425","14","0","-8229","-440","226","0","0" +"11447","425","15","0","-8288","-372","203","0","0" +"11448","425","16","0","-8437","-411","150","0","0" +"11449","425","17","0","-8555","-497","157","0","0" +"11450","425","18","0","-8664","-481","156","0","0" +"11451","425","19","0","-8726","-432","168","0","0" +"11452","425","20","0","-8767","-354","103","0","0" +"11453","425","21","0","-8917","-336","116","0","0" +"11454","425","22","0","-9006","-272","159","0","0" +"11455","425","23","0","-9050","-15","177","0","0" +"11456","425","24","0","-9145","136","173","0","0" +"11457","425","25","0","-9131","242","168","0","0" +"11458","425","26","0","-9039","378","153","0","0" +"11459","425","27","0","-8919","417","134","0","0" +"11460","425","28","0","-8835","478","111","0","0" +"11493","427","0","0","-8846","501","109","0","0" +"11492","427","1","0","-8852","496","112","0","0" +"11491","427","2","0","-8949","452","130","0","0" +"11490","427","3","0","-9033","490","141","0","0" +"11489","427","4","0","-9110","472","145","0","0" +"11488","427","5","0","-9200","401","165","0","0" +"11487","427","6","0","-9104","133","185","0","0" +"11486","427","7","0","-8985","-34","199","0","0" +"11485","427","8","0","-8865","-127","182","0","0" +"11484","427","9","0","-8767","-354","177","0","0" +"11483","427","10","0","-8722","-431","180","0","0" +"11482","427","11","0","-8598","-528","152","0","0" +"11481","427","12","0","-8475","-428","171","0","0" +"11480","427","13","0","-8352","-378","155","0","0" +"11479","427","14","0","-8263","-413","203","0","0" +"11478","427","15","0","-8221","-487","226","0","0" +"11477","427","16","0","-8152","-633","210","0","0" +"11476","427","17","0","-8167","-866","202","0","0" +"11475","427","18","0","-8211","-1198","185","0","0" +"11474","427","19","0","-8225","-1533","189","0","0" +"11473","427","20","0","-8212","-1835","183","0","0" +"11472","427","21","0","-8213","-2067","183","0","0" +"11471","427","22","0","-8165","-2433","203","0","0" +"11470","427","23","0","-8130","-2609","195","0","0" +"11469","427","24","0","-8157","-2776","202","0","0" +"11468","427","25","0","-8285","-2788","212","0","0" +"12729","427","26","0","-8357","-2742","186","0","0" +"11494","428","0","0","-4822","-1155","502","0","0" +"11495","428","1","0","-4831","-1156","508","0","0" +"11496","428","2","0","-4841","-1156","511","0","0" +"11497","428","3","0","-4851","-1148","515","0","0" +"11498","428","4","0","-4861","-1129","521","0","0" +"11499","428","5","0","-4843","-1092","551","0","0" +"11500","428","6","0","-4847","-1063","553","0","0" +"11501","428","7","0","-4868","-1045","550","0","0" +"11502","428","8","0","-4937","-990","540","0","0" +"11503","428","9","0","-4934","-938","542","0","0" +"11504","428","10","0","-4993","-872","541","0","0" +"11505","428","11","0","-5020","-833","504","0","0" +"11506","428","12","0","-5070","-795","515","0","0" +"11507","428","13","0","-5123","-810","517","0","0" +"11508","428","14","0","-5233","-933","527","0","0" +"11509","428","15","0","-5240","-1187","565","0","0" +"11510","428","16","0","-5103","-1388","615","0","0" +"11511","428","17","0","-4910","-1457","712","0","0" +"11512","428","18","0","-4736","-1492","729","0","0" +"11513","428","19","0","-4481","-1411","603","0","0" +"11514","428","20","0","-4273","-1462","482","0","0" +"11515","428","21","0","-4037","-1368","233","0","0" +"11516","428","22","0","-3803","-1332","131","0","0" +"11517","428","23","0","-3534","-1367","67","0","0" +"11518","428","24","0","-3346","-1400","45","0","0" +"11519","428","25","0","-3152","-1448","44","0","0" +"11520","428","26","0","-2829","-1533","44","0","0" +"11521","428","27","0","-2466","-1566","33","0","0" +"11522","428","28","0","-2058","-1528","59","0","0" +"11523","428","29","0","-1865","-1465","79","0","0" +"11524","428","30","0","-1732","-1433","83","0","0" +"11525","428","31","0","-1533","-1533","80","0","0" +"11526","428","32","0","-1333","-1499","107","0","0" +"11527","428","33","0","-899","-1433","141","0","0" +"11528","428","34","0","-470","-1432","182","0","0" +"11529","428","35","0","34","-1453","236","0","0" +"11530","428","36","0","368","-1432","130","0","0" +"11531","428","37","0","668","-1470","129","0","0" +"11532","428","38","0","814","-1461","129","0","0" +"11533","428","39","0","884","-1500","98","0","0" +"11534","428","40","0","929","-1465","79","0","0" +"11535","428","41","0","930","-1430","66","0","0" +"11585","429","0","0","930","-1429","65","0","0" +"11584","429","1","0","937","-1428","68","0","0" +"11583","429","2","0","982","-1430","106","0","0" +"11582","429","3","0","1009","-1514","132","0","0" +"11581","429","4","0","918","-1526","143","0","0" +"11580","429","5","0","653","-1467","152","0","0" +"11579","429","6","0","302","-1370","109","0","0" +"11578","429","7","0","104","-1115","69","0","0" +"11577","429","8","0","-241","-1151","69","0","0" +"11576","429","9","0","-575","-1288","69","0","0" +"11575","429","10","0","-1034","-1524","157","0","0" +"11574","429","11","0","-1550","-1566","94","0","0" +"11573","429","12","0","-1798","-1357","65","0","0" +"11572","429","13","0","-2100","-1523","26","0","0" +"11571","429","14","0","-2680","-1448","17","0","0" +"11570","429","15","0","-2816","-1404","28","0","0" +"11569","429","16","0","-3026","-1357","18","0","0" +"11568","429","17","0","-3247","-1074","58","0","0" +"11567","429","18","0","-3421","-1028","75","0","0" +"11566","429","19","0","-4004","-1068","183","0","0" +"11565","429","20","0","-4230","-1032","306","0","0" +"11564","429","21","0","-4419","-859","567","0","0" +"11563","429","22","0","-4690","-713","686","0","0" +"11562","429","23","0","-4974","-635","614","0","0" +"11561","429","24","0","-5104","-746","513","0","0" +"11560","429","25","0","-5027","-824","507","0","0" +"11559","429","26","0","-4980","-883","542","0","0" +"11558","429","27","0","-4950","-918","543","0","0" +"11557","429","28","0","-4903","-930","544","0","0" +"11556","429","29","0","-4869","-966","544","0","0" +"11555","429","30","0","-4844","-1028","549","0","0" +"11554","429","31","0","-4792","-1103","527","0","0" +"11553","429","32","0","-4763","-1144","522","0","0" +"11552","429","33","0","-4790","-1171","512","0","0" +"11586","429","34","0","-4815","-1167","508","0","0" +"11587","429","35","0","-4822","-1154","503","0","0" +"11588","431","0","0","930","-1430","65","0","0" +"11589","431","1","0","933","-1434","66","0","0" +"11590","431","2","0","950","-1468","86","0","0" +"11591","431","3","0","952","-1516","103","0","0" +"11592","431","4","0","989","-1563","111","0","0" +"11593","431","5","0","1037","-1617","118","0","0" +"11594","431","6","0","1059","-1708","118","0","0" +"11595","431","7","0","1097","-1892","118","0","0" +"11596","431","8","0","1037","-2446","124","0","0" +"11597","431","9","0","1113","-2775","97","0","0" +"11598","431","10","0","1385","-3044","123","0","0" +"11599","431","11","0","1603","-3157","145","0","0" +"11600","431","12","0","1712","-3499","191","0","0" +"11601","431","13","0","1796","-3726","191","0","0" +"11602","431","14","0","2072","-4474","139","0","0" +"11603","431","15","0","2066","-5081","136","0","0" +"11604","431","16","0","2162","-5253","125","0","0" +"12890","431","17","0","2269","-5342","89","0","0" +"11621","432","0","0","2269","-5342","88","0","0" +"11620","432","1","0","2269","-5306","93","0","0" +"11619","432","2","0","2270","-5240","98","0","0" +"11618","432","3","0","2271","-5117","109","0","0" +"11617","432","4","0","2215","-4792","158","0","0" +"11616","432","5","0","2035","-4306","107","0","0" +"11615","432","6","0","1930","-3976","188","0","0" +"11614","432","7","0","1808","-3709","171","0","0" +"11613","432","8","0","1763","-3422","165","0","0" +"11612","432","9","0","1500","-3162","129","0","0" +"11611","432","10","0","1486","-2876","99","0","0" +"11610","432","11","0","1449","-2494","66","0","0" +"11609","432","12","0","1346","-1899","100","0","0" +"11608","432","13","0","1196","-1566","80","0","0" +"11607","432","14","0","1182","-1404","115","0","0" +"11606","432","15","0","1019","-1377","119","0","0" +"11605","432","16","0","930","-1430","66","0","0" +"11630","436","0","0","3067","-3533","231","0","0" +"11631","436","1","0","3133","-3433","231","2","60" +"11632","436","2","0","3200","-3336","231","0","0" +"11633","436","3","0","3266","-3300","231","0","0" +"11634","436","4","0","3364","-3366","231","0","0" +"11635","436","5","0","3332","-3466","231","0","0" +"11636","436","6","0","3267","-3567","231","0","0" +"11637","436","7","0","3200","-3667","231","0","0" +"11638","436","8","0","3133","-3766","231","0","0" +"11639","436","9","0","3034","-3831","231","0","0" +"11640","436","10","0","2965","-3767","231","0","0" +"11641","436","11","0","3000","-3633","231","0","0" +"11642","436","12","0","3066","-3533","231","0","0" +"11649","437","0","0","2269","-5340","87","0","0" +"11650","437","1","0","2267","-5330","90","0","0" +"11651","437","2","0","2258","-5294","101","0","0" +"11652","437","3","0","2230","-5239","106","0","0" +"11653","437","4","0","2157","-5110","106","0","0" +"11654","437","5","0","2045","-4998","111","0","0" +"11655","437","6","0","1912","-4872","111","0","0" +"11656","437","7","0","1847","-4800","136","0","0" +"11657","437","8","0","1783","-4703","136","0","0" +"11658","437","9","0","1761","-4435","136","0","0" +"11659","437","10","0","1710","-4268","136","0","0" +"11660","437","11","0","1751","-3989","168","0","0" +"11661","437","12","0","1652","-3852","188","0","0" +"11662","437","13","0","1358","-3883","252","0","0" +"11663","437","14","0","1255","-3901","280","0","0" +"11664","437","15","0","1145","-3956","255","0","0" +"11665","437","16","0","950","-4155","177","0","0" +"11666","437","17","0","551","-4050","175","0","0" +"11667","437","18","0","28","-3602","229","0","0" +"11668","437","19","0","-232","-3507","291","0","0" +"11669","437","20","0","-554","-3403","371","0","0" +"11670","437","21","0","-1035","-3237","92","0","0" +"11671","437","22","0","-1503","-2817","69","0","0" +"11672","437","23","0","-2085","-2577","108","0","0" +"11673","437","24","0","-2251","-2571","48","0","0" +"11674","437","25","0","-2333","-2545","30","0","0" +"11675","437","26","0","-2389","-2531","30","0","0" +"11676","437","27","0","-2401","-2379","30","0","0" +"11677","437","28","0","-2334","-1870","30","0","0" +"11678","437","29","0","-2526","-1695","36","0","0" +"11679","437","30","0","-3506","-1341","74","0","0" +"11680","437","31","0","-3955","-1287","189","0","0" +"11681","437","32","0","-4371","-1012","514","0","0" +"11682","437","33","0","-4628","-759","702","0","0" +"11683","437","34","0","-4978","-630","605","0","0" +"11684","437","35","0","-5099","-727","517","0","0" +"11685","437","36","0","-5027","-827","511","0","0" +"11686","437","37","0","-5002","-855","510","0","0" +"11687","437","38","0","-4966","-901","542","0","0" +"11688","437","39","0","-4941","-930","541","0","0" +"11689","437","40","0","-4890","-925","543","0","0" +"11690","437","41","0","-4869","-964","542","0","0" +"11691","437","42","0","-4845","-1024","549","0","0" +"11692","437","43","0","-4817","-1069","540","0","0" +"11693","437","44","0","-4787","-1119","521","0","0" +"11694","437","45","0","-4791","-1143","509","0","0" +"11695","437","46","0","-4811","-1155","506","0","0" +"11696","437","47","0","-4822","-1155","504","0","0" +"11744","438","0","0","-4822","-1155","502","0","0" +"11743","438","1","0","-4827","-1148","506","0","0" +"11742","438","2","0","-4842","-1121","524","0","0" +"11741","438","3","0","-4841","-1089","543","0","0" +"11740","438","4","0","-4853","-1059","550","0","0" +"11739","438","5","0","-4922","-1008","542","0","0" +"11738","438","6","0","-4949","-965","543","0","0" +"11737","438","7","0","-4953","-922","542","0","0" +"11736","438","8","0","-4975","-890","541","0","0" +"11735","438","9","0","-5002","-855","510","0","0" +"11734","438","10","0","-5049","-793","514","0","0" +"11733","438","11","0","-5080","-659","560","0","0" +"11732","438","12","0","-4959","-515","639","0","0" +"11731","438","13","0","-4719","-558","639","0","0" +"11730","438","14","0","-4228","-1162","456","0","0" +"11729","438","15","0","-3865","-1360","134","0","0" +"11728","438","16","0","-3461","-1536","78","0","0" +"11727","438","17","0","-2926","-2215","74","0","0" +"11726","438","18","0","-2766","-2502","128","0","0" +"11725","438","19","0","-2237","-2491","143","0","0" +"11724","438","20","0","-1503","-2817","69","0","0" +"11723","438","21","0","-1035","-3237","92","0","0" +"11722","438","22","0","-550","-3421","365","0","0" +"11721","438","23","0","-280","-3597","287","0","0" +"11720","438","24","0","399","-3771","200","0","0" +"11719","438","25","0","833","-3773","223","0","0" +"11718","438","26","0","1180","-3924","267","0","0" +"11717","438","27","0","1290","-3937","264","0","0" +"11716","438","28","0","1542","-3921","183","0","0" +"11715","438","29","0","1661","-4144","176","0","0" +"11714","438","30","0","2025","-4650","109","0","0" +"11713","438","31","0","2238","-4951","121","0","0" +"11712","438","32","0","2231","-5153","100","0","0" +"11711","438","33","0","2229","-5252","95","0","0" +"11710","438","34","0","2269","-5340","89","0","0" +"11745","439","0","0","-7589","-3318","170","0","0" +"11746","439","1","0","-7614","-3408","170","0","0" +"11747","439","2","0","-7654","-3352","170","0","0" +"11748","439","3","0","-7700","-3321","170","0","0" +"11749","439","4","0","-7741","-3347","170","0","0" +"11782","439","5","0","-7752","-3385","170","0","0" +"11783","439","6","0","-7735","-3409","170","0","0" +"11784","439","7","0","-7708","-3407","170","0","0" +"11785","439","8","0","-7690","-3388","170","0","0" +"11786","439","9","0","-7669","-3418","170","0","0" +"11787","439","10","0","-7674","-3440","170","0","0" +"11788","439","11","0","-7705","-3448","170","0","0" +"11789","439","12","0","-7735","-3433","170","0","0" +"11790","439","13","0","-7788","-3394","170","0","0" +"11791","439","14","0","-7806","-3361","170","0","0" +"11792","439","15","0","-7863","-3321","170","0","0" +"11793","439","16","0","-7901","-3286","170","0","0" +"11752","440","0","0","475","1538","132","0","0" +"11753","440","1","0","466","1533","136","0","0" +"11754","440","2","0","442","1519","143","0","0" +"11755","440","3","0","385","1484","144","0","0" +"11756","440","4","0","267","1380","158","0","0" +"11757","440","5","0","247","1012","213","0","0" +"11758","440","6","0","166","831","205","0","0" +"11759","440","7","0","115","599","146","0","0" +"11760","440","8","0","34","33","121","0","0" +"11761","440","9","0","-189","-362","181","0","0" +"11762","440","10","0","-301","-558","116","0","0" +"11763","440","11","0","-190","-825","94","0","0" +"11764","440","12","0","-75","-884","72","0","0" +"11765","440","13","0","-5","-857","61","0","0" +"11779","441","0","0","-5","-857","60","0","0" +"11778","441","1","0","-5","-833","63","0","0" +"11777","441","2","0","-37","-769","71","0","0" +"11776","441","3","0","-154","-733","80","0","0" +"11775","441","4","0","-300","-683","96","0","0" +"11774","441","5","0","-386","-537","96","0","0" +"11773","441","6","0","-355","-184","99","0","0" +"11772","441","7","0","-164","108","87","0","0" +"11771","441","8","0","197","565","128","0","0" +"11770","441","9","0","320","783","160","0","0" +"11769","441","10","0","375","942","211","0","0" +"11768","441","11","0","278","1319","147","0","0" +"11767","441","12","0","316","1426","154","0","0" +"11766","441","13","0","480","1539","133","0","0" +"11804","443","0","1","2825","-289","108","0","0" +"11805","443","1","1","2846","-287","113","0","0" +"11806","443","2","1","2875","-266","125","0","0" +"11807","443","3","1","2866","-187","123","0","0" +"11808","443","4","1","2866","-132","125","0","0" +"11809","443","5","1","2840","34","115","0","0" +"11810","443","6","1","2850","266","108","0","0" +"11811","443","7","1","2789","391","105","0","0" +"11812","443","8","1","2791","493","104","0","0" +"11813","443","9","1","2872","507","122","0","0" +"11814","443","10","1","3019","579","124","0","0" +"11815","443","11","1","3171","633","115","0","0" +"11816","443","12","1","3371","753","115","0","0" +"11817","443","13","1","3440","1022","127","0","0" +"11818","443","14","1","3311","1243","20","0","0" +"11819","443","15","1","3241","1474","14","0","0" +"11820","443","16","1","3341","2016","24","0","0" +"11821","443","17","1","3269","2223","57","0","0" +"11822","443","18","1","3066","2435","143","0","0" +"11823","443","19","1","2918","2448","156","0","0" +"11824","443","20","1","2823","2229","276","0","0" +"11825","443","21","1","2707","1910","365","0","0" +"11826","443","22","1","2710","1792","386","0","0" +"11827","443","23","1","2665","1676","329","0","0" +"11828","443","24","1","2666","1557","311","0","0" +"19032","443","25","1","2675","1455","233","0","0" +"11855","444","0","1","2675","1455","231","0","0" +"11854","444","1","1","2674","1467","236","0","0" +"11853","444","2","1","2669","1508","254","0","0" +"11852","444","3","1","2664","1563","287","0","0" +"11851","444","4","1","2667","1674","354","0","0" +"11850","444","5","1","2741","1896","377","0","0" +"11849","444","6","1","2832","2356","213","0","0" +"11848","444","7","1","3038","2454","133","0","0" +"11847","444","8","1","3380","1939","24","0","0" +"11846","444","9","1","3518","1084","21","0","0" +"11845","444","10","1","3574","853","18","0","0" +"11844","444","11","1","3480","670","23","0","0" +"11843","444","12","1","3289","542","14","0","0" +"11842","444","13","1","3199","430","15","0","0" +"11841","444","14","1","3209","286","22","0","0" +"11840","444","15","1","3121","179","36","0","0" +"11839","444","16","1","2976","161","85","0","0" +"11838","444","17","1","2840","166","115","0","0" +"11837","444","18","1","2836","73","108","0","0" +"11836","444","19","1","2791","-46","107","0","0" +"11835","444","20","1","2752","-161","117","0","0" +"11856","444","21","1","2747","-222","122","0","0" +"11857","444","22","1","2798","-275","117","0","0" +"18321","444","23","1","2824","-290","109","0","0" +"11859","445","0","1","-3828","-4521","11","0","0" +"11860","445","1","1","-3817","-4518","13","0","0" +"11861","445","2","1","-3800","-4514","17","0","0" +"11862","445","3","1","-3766","-4508","26","0","0" +"11863","445","4","1","-3706","-4490","26","0","0" +"11864","445","5","1","-3641","-4437","31","0","0" +"11865","445","6","1","-3542","-4367","30","0","0" +"11866","445","7","1","-3420","-4367","30","0","0" +"11867","445","8","1","-3023","-4302","30","0","0" +"11868","445","9","1","-2714","-4217","30","0","0" +"11869","445","10","1","-2415","-4042","30","0","0" +"11870","445","11","1","-2038","-3842","30","0","0" +"11871","445","12","1","-1352","-4024","62","0","0" +"11872","445","13","1","-717","-3942","67","0","0" +"11873","445","14","1","-424","-3826","45","0","0" +"11874","445","15","1","-144","-3548","103","0","0" +"11875","445","16","1","354","-3541","114","0","0" +"11876","445","17","1","1465","-3825","114","0","0" +"11877","445","18","1","1934","-3733","117","0","0" +"11878","445","19","1","2499","-3731","113","0","0" +"11879","445","20","1","2635","-3760","135","0","0" +"11880","445","21","1","2692","-3856","118","0","0" +"11881","445","22","1","2723","-3879","103","0","0" +"11908","446","0","1","2723","-3879","101","0","0" +"11907","446","1","1","2733","-3870","105","0","0" +"11906","446","2","1","2758","-3847","112","0","0" +"11905","446","3","1","2781","-3806","112","0","0" +"11904","446","4","1","2775","-3736","106","0","0" +"11903","446","5","1","2469","-3668","118","0","0" +"11902","446","6","1","2070","-3610","118","0","0" +"11901","446","7","1","1433","-3817","136","0","0" +"11900","446","8","1","384","-3492","135","0","0" +"11899","446","9","1","-229","-3541","114","0","0" +"11898","446","10","1","-457","-3807","46","0","0" +"11897","446","11","1","-736","-4006","42","0","0" +"11896","446","12","1","-1295","-3901","23","0","0" +"11895","446","13","1","-1659","-3936","49","0","0" +"11894","446","14","1","-2198","-4036","24","0","0" +"11893","446","15","1","-2788","-4211","18","0","0" +"11892","446","16","1","-2992","-4389","41","0","0" +"11891","446","17","1","-3455","-4430","41","0","0" +"11890","446","18","1","-3676","-4479","35","0","0" +"11889","446","19","1","-3781","-4512","24","0","0" +"11888","446","20","1","-3827","-4521","13","0","0" +"11909","447","0","1","2722","-3880","101","0","0" +"11910","447","1","1","2737","-3885","106","0","0" +"11911","447","2","1","2771","-3897","115","0","0" +"11912","447","3","1","2824","-3918","132","0","0" +"11913","447","4","1","3029","-3998","198","0","0" +"11914","447","5","1","3372","-4117","204","0","0" +"11915","447","6","1","3766","-4619","290","0","0" +"11916","447","7","1","3919","-4905","315","0","0" +"11917","447","8","1","4512","-5260","503","0","0" +"11918","447","9","1","4866","-5265","736","0","0" +"11919","447","10","1","5085","-5120","933","0","0" +"11920","447","11","1","5099","-4966","919","0","0" +"11921","447","12","1","5229","-4856","796","0","0" +"11922","447","13","1","5292","-4689","777","0","0" +"11923","447","14","1","5379","-4526","778","0","0" +"11924","447","15","1","5539","-4489","778","0","0" +"11925","447","16","1","5777","-4604","786","0","0" +"11926","447","17","1","6267","-4768","786","0","0" +"11927","447","18","1","6467","-4779","769","0","0" +"11928","447","19","1","6689","-4762","727","0","0" +"11929","447","20","1","6766","-4747","710","0","0" +"18322","447","21","1","6793","-4741","704","0","0" +"11950","448","0","1","6796","-4742","702","0","0" +"11949","448","1","1","6786","-4741","706","0","0" +"11948","448","2","1","6763","-4739","714","0","0" +"11947","448","3","1","6717","-4738","728","0","0" +"11946","448","4","1","6608","-4724","761","0","0" +"11945","448","5","1","6478","-4727","785","0","0" +"11944","448","6","1","6033","-4747","809","0","0" +"11943","448","7","1","5433","-4762","823","0","0" +"11942","448","8","1","5157","-4926","906","0","0" +"11941","448","9","1","5091","-5118","945","0","0" +"11940","448","10","1","4670","-5263","737","0","0" +"11939","448","11","1","4165","-5145","503","0","0" +"11938","448","12","1","3772","-4900","315","0","0" +"11937","448","13","1","3370","-4645","151","0","0" +"11936","448","14","1","3173","-4465","162","0","0" +"11935","448","15","1","3020","-4252","148","0","0" +"11934","448","16","1","2875","-4000","153","0","0" +"11933","448","17","1","2782","-3918","114","0","0" +"12848","448","18","1","2723","-3879","102","0","0" +"11958","449","0","1","-6807","838","50","0","0" +"11959","449","1","1","-6813","829","53","0","0" +"11960","449","2","1","-6823","812","56","0","0" +"11961","449","3","1","-6849","795","64","0","0" +"11962","449","4","1","-6901","802","64","0","0" +"11963","449","5","1","-6969","929","64","0","0" +"11964","449","6","1","-6859","1062","64","0","0" +"11965","449","7","1","-6538","1232","64","0","0" +"11966","449","8","1","-6239","1322","157","0","0" +"11967","449","9","1","-6148","1310","183","0","0" +"11968","449","10","1","-6010","1293","187","0","0" +"11969","449","11","1","-5925","1314","170","0","0" +"11970","449","12","1","-5848","1212","116","0","0" +"11971","449","13","1","-5802","1134","94","0","0" +"11972","449","14","1","-5680","1126","83","0","0" +"11973","449","15","1","-5610","1144","73","0","0" +"11974","449","16","1","-5507","1216","63","0","0" +"11975","449","17","1","-5311","1148","99","0","0" +"11976","449","18","1","-5179","1193","94","0","0" +"11977","449","19","1","-5081","1165","99","0","0" +"11978","449","20","1","-4961","1164","90","0","0" +"11979","449","21","1","-4832","1140","111","0","0" +"11980","449","22","1","-4690","1052","129","0","0" +"11981","449","23","1","-4595","899","89","0","0" +"11982","449","24","1","-4582","700","68","0","0" +"11983","449","25","1","-4361","534","86","0","0" +"11984","449","26","1","-4365","323","65","0","0" +"11985","449","27","1","-4380","229","49","0","0" +"11986","449","28","1","-4417","200","27","0","0" +"12021","450","0","1","-4414","200","26","0","0" +"12020","450","1","1","-4429","199","29","0","0" +"12019","450","2","1","-4499","198","46","0","0" +"12018","450","3","1","-4600","266","46","0","0" +"12017","450","4","1","-4711","324","46","0","0" +"12016","450","5","1","-4714","449","46","0","0" +"12015","450","6","1","-4693","566","67","0","0" +"12014","450","7","1","-4638","646","78","0","0" +"12013","450","8","1","-4588","754","67","0","0" +"12012","450","9","1","-4604","929","94","0","0" +"12011","450","10","1","-4695","1013","126","0","0" +"12010","450","11","1","-4810","1064","111","0","0" +"12009","450","12","1","-4876","1188","99","0","0" +"12008","450","13","1","-5030","1214","69","0","0" +"12007","450","14","1","-5285","1192","87","0","0" +"12006","450","15","1","-5437","1180","79","0","0" +"12005","450","16","1","-5583","1111","68","0","0" +"12004","450","17","1","-5674","1165","90","0","0" +"12003","450","18","1","-5832","1218","118","0","0" +"12002","450","19","1","-5924","1306","170","0","0" +"12001","450","20","1","-5995","1299","193","0","0" +"12000","450","21","1","-6239","1322","186","0","0" +"11999","450","22","1","-6515","1332","76","0","0" +"11998","450","23","1","-6734","1165","63","0","0" +"11997","450","24","1","-6896","929","63","0","0" +"11996","450","25","1","-6894","836","63","0","0" +"11995","450","26","1","-6869","807","63","0","0" +"11994","450","27","1","-6841","811","61","0","0" +"11993","450","28","1","-6810","836","52","0","0" +"12022","451","0","1","-6760","773","89","0","0" +"12023","451","1","1","-6761","763","92","0","0" +"12024","451","2","1","-6762","751","93","0","0" +"12025","451","3","1","-6760","700","93","0","0" +"12026","451","4","1","-6699","629","96","0","0" +"12027","451","5","1","-6505","635","60","0","0" +"12028","451","6","1","-6459","806","63","0","0" +"12029","451","7","1","-6466","1233","64","0","0" +"12030","451","8","1","-6330","1334","63","0","0" +"12031","451","9","1","-6135","1307","201","0","0" +"12032","451","10","1","-6049","1290","176","0","0" +"12033","451","11","1","-5935","1309","173","0","0" +"12034","451","12","1","-5878","1257","122","0","0" +"12035","451","13","1","-5833","1217","105","0","0" +"12036","451","14","1","-5609","1328","91","0","0" +"12037","451","15","1","-5400","1420","78","0","0" +"12038","451","16","1","-5298","1412","71","0","0" +"12039","451","17","1","-5170","1464","71","0","0" +"12040","451","18","1","-4813","1639","95","0","0" +"12041","451","19","1","-4783","1872","94","0","0" +"12042","451","20","1","-4709","2034","36","0","0" +"12043","451","21","1","-4569","2261","36","0","0" +"12044","451","22","1","-4327","2614","65","0","0" +"12045","451","23","1","-3999","3032","65","0","0" +"12046","451","24","1","-3999","3333","65","0","0" +"12047","451","25","1","-4134","3431","65","0","0" +"12048","451","26","1","-4267","3399","36","0","0" +"12049","451","27","1","-4333","3366","23","0","0" +"12050","451","28","1","-4372","3339","14","0","0" +"12055","452","0","1","-6115","-1144","-186","0","0" +"12056","452","1","1","-6130","-1142","-181","0","0" +"12057","452","2","1","-6167","-1131","-174","0","0" +"12058","452","3","1","-6237","-1132","-174","0","0" +"12059","452","4","1","-6314","-1183","-174","0","0" +"12060","452","5","1","-6465","-1298","-174","0","0" +"12061","452","6","1","-6699","-1491","-174","0","0" +"12062","452","7","1","-6779","-1772","-174","0","0" +"12063","452","8","1","-6880","-2051","-174","0","0" +"12064","452","9","1","-6939","-2264","-174","0","0" +"12065","452","10","1","-7088","-2569","20","0","0" +"12102","452","11","1","-7087","-2807","27","0","0" +"12103","452","12","1","-7129","-3252","27","0","0" +"12104","452","13","1","-7130","-3528","27","0","0" +"12105","452","14","1","-7188","-3666","22","0","0" +"12912","452","15","1","-7223","-3732","10","0","0" +"12066","453","0","1","-6115","-1145","-186","0","0" +"12067","453","1","1","-6133","-1141","-181","0","0" +"12068","453","2","1","-6177","-1127","-174","0","0" +"12069","453","3","1","-6238","-1142","-172","0","0" +"12070","453","4","1","-6406","-1241","-172","0","0" +"12071","453","5","1","-6700","-1473","-172","0","0" +"12072","453","6","1","-6816","-1787","-172","0","0" +"12073","453","7","1","-6874","-2081","-172","0","0" +"12074","453","8","1","-6956","-2255","-172","0","0" +"12075","453","9","1","-7110","-2576","26","0","0" +"12106","453","10","1","-7210","-2801","29","0","0" +"12107","453","11","1","-7233","-3099","29","0","0" +"12108","453","12","1","-7298","-3532","29","0","0" +"12109","453","13","1","-7241","-3765","29","0","0" +"12110","453","14","1","-7142","-3829","29","0","0" +"12111","453","15","1","-7081","-3826","29","0","0" +"12112","453","16","1","-7044","-3781","13","0","0" +"12076","454","0","1","-6113","-1143","-186","0","0" +"12077","454","1","1","-6132","-1141","-183","0","0" +"12078","454","2","1","-6207","-1133","-174","0","0" +"12079","454","3","1","-6405","-1095","-174","0","0" +"12080","454","4","1","-6584","-868","-182","0","0" +"12081","454","5","1","-6566","-590","-226","0","0" +"12082","454","6","1","-6391","-555","-171","0","0" +"12083","454","7","1","-6328","-552","-144","0","0" +"12084","454","8","1","-6228","-588","-91","0","0" +"12085","454","9","1","-6234","-456","-33","0","0" +"12086","454","10","1","-6302","-368","20","0","0" +"12087","454","11","1","-6482","-185","21","0","0" +"12088","454","12","1","-6699","-37","21","0","0" +"12113","454","13","1","-6845","288","15","0","0" +"12114","454","14","1","-6944","634","60","0","0" +"12115","454","15","1","-6887","780","62","0","0" +"12116","454","16","1","-6811","836","52","0","0" +"12089","455","0","1","-6116","-1143","-186","0","0" +"12090","455","1","1","-6133","-1143","-184","0","0" +"12091","455","2","1","-6216","-1135","-174","0","0" +"12092","455","3","1","-6412","-1088","-174","0","0" +"12093","455","4","1","-6597","-909","-187","0","0" +"12094","455","5","1","-6574","-650","-226","0","0" +"12095","455","6","1","-6366","-552","-168","0","0" +"12096","455","7","1","-6255","-588","-113","0","0" +"12097","455","8","1","-6219","-558","-100","0","0" +"12098","455","9","1","-6226","-467","-49","0","0" +"12099","455","10","1","-6298","-371","17","0","0" +"12100","455","11","1","-6401","-233","8","0","0" +"12101","455","12","1","-6679","-37","14","0","0" +"12117","455","13","1","-6751","346","27","0","0" +"12118","455","14","1","-6784","517","40","0","0" +"12119","455","15","1","-6755","685","91","0","0" +"12120","455","16","1","-6760","772","91","0","0" +"12137","456","0","1","-6811","836","50","0","0" +"12136","456","1","1","-6836","817","57","0","0" +"12135","456","2","1","-6905","746","65","0","0" +"12134","456","3","1","-6969","572","44","0","0" +"12133","456","4","1","-6803","277","15","0","0" +"12132","456","5","1","-6701","-37","15","0","0" +"12131","456","6","1","-6399","-243","15","0","0" +"12130","456","7","1","-6280","-402","17","0","0" +"12129","456","8","1","-6227","-469","-9","0","0" +"12128","456","9","1","-6224","-574","-101","0","0" +"12127","456","10","1","-6272","-586","-115","0","0" +"12126","456","11","1","-6357","-649","-155","0","0" +"12125","456","12","1","-6589","-783","-204","0","0" +"12124","456","13","1","-6555","-951","-209","0","0" +"12123","456","14","1","-6405","-1095","-190","0","0" +"12122","456","15","1","-6207","-1133","-169","0","0" +"12121","456","16","1","-6116","-1143","-186","0","0" +"12155","457","0","1","-6760","772","89","0","0" +"12154","457","1","1","-6753","751","93","0","0" +"12153","457","2","1","-6729","666","93","0","0" +"12152","457","3","1","-6701","500","56","0","0" +"12151","457","4","1","-6678","190","55","0","0" +"12150","457","5","1","-6597","-64","55","0","0" +"12149","457","6","1","-6449","-171","22","0","0" +"12148","457","7","1","-6319","-312","53","0","0" +"12147","457","8","1","-6226","-467","-30","0","0" +"12146","457","9","1","-6219","-558","-81","0","0" +"12145","457","10","1","-6255","-588","-102","0","0" +"12144","457","11","1","-6366","-548","-173","0","0" +"12143","457","12","1","-6573","-647","-228","0","0" +"12142","457","13","1","-6579","-852","-201","0","0" +"12141","457","14","1","-6417","-1026","-173","0","0" +"12140","457","15","1","-6236","-1121","-169","0","0" +"12139","457","16","1","-6115","-1145","-185","0","0" +"12171","458","0","1","-7223","-3732","9","0","0" +"12170","458","1","1","-7218","-3720","13","0","0" +"12169","458","2","1","-7199","-3668","22","0","0" +"12168","458","3","1","-7176","-3568","30","0","0" +"12167","458","4","1","-7155","-3399","30","0","0" +"12166","458","5","1","-7128","-2832","48","0","0" +"12165","458","6","1","-7110","-2575","23","0","0" +"12164","458","7","1","-6986","-2265","-174","0","0" +"12163","458","8","1","-6880","-2051","-213","0","0" +"12162","458","9","1","-6779","-1772","-204","0","0" +"12161","458","10","1","-6699","-1491","-211","0","0" +"12160","458","11","1","-6465","-1298","-204","0","0" +"12159","458","12","1","-6314","-1183","-196","0","0" +"12158","458","13","1","-6273","-1129","-192","0","0" +"18269","458","14","1","-6187","-1120","-177","0","0" +"18270","458","15","1","-6116","-1145","-186","0","0" +"12188","459","0","1","-7044","-3781","11","0","0" +"12187","459","1","1","-7028","-3771","20","0","0" +"12186","459","2","1","-6991","-3716","53","0","0" +"12185","459","3","1","-6996","-3626","56","0","0" +"12184","459","4","1","-7038","-3322","28","0","0" +"12183","459","5","1","-7145","-2994","30","0","0" +"12182","459","6","1","-7170","-2768","30","0","0" +"12181","459","7","1","-7071","-2573","30","0","0" +"12180","459","8","1","-6931","-2269","-173","0","0" +"12179","459","9","1","-6874","-2081","-213","0","0" +"12178","459","10","1","-6816","-1787","-221","0","0" +"12177","459","11","1","-6700","-1473","-229","0","0" +"12176","459","12","1","-6406","-1241","-223","0","0" +"12175","459","13","1","-6238","-1142","-189","0","0" +"12174","459","14","1","-6185","-1126","-178","0","0" +"12173","459","15","1","-6115","-1144","-185","0","0" +"12220","460","0","1","-895","-3773","12","0","0" +"12221","460","1","1","-875","-3819","24","0","0" +"12222","460","2","1","-893","-3873","32","0","0" +"12223","460","3","1","-1009","-3946","24","0","0" +"12224","460","4","1","-1276","-3984","32","0","0" +"12225","460","5","1","-1588","-3993","32","0","0" +"12226","460","6","1","-2245","-4047","32","0","0" +"12227","460","7","1","-2880","-4235","32","0","0" +"12228","460","8","1","-3211","-4403","32","0","0" +"12229","460","9","1","-3532","-4454","41","0","0" +"12230","460","10","1","-3693","-4484","29","0","0" +"12231","460","11","1","-3789","-4506","24","0","0" +"12232","460","12","1","-3826","-4517","12","0","0" +"12199","461","0","1","-893","-3774","12","0","0" +"12200","461","1","1","-875","-3797","20","0","0" +"12201","461","2","1","-836","-3841","29","0","0" +"12202","461","3","1","-710","-3853","80","0","0" +"12203","461","4","1","-622","-3814","103","0","0" +"12204","461","5","1","-500","-3497","112","0","0" +"12205","461","6","1","-652","-3308","122","0","0" +"12206","461","7","1","-714","-3033","107","0","0" +"12207","461","8","1","-670","-2681","120","0","0" +"12208","461","9","1","-632","-2533","120","0","0" +"12853","461","10","1","-533","-2466","120","0","0" +"12854","461","11","1","-466","-2466","120","0","0" +"12855","461","12","1","-417","-2533","120","0","0" +"12856","461","13","1","-440","-2599","98","0","0" +"12218","462","0","1","-442","-2598","97","0","0" +"12217","462","1","1","-438","-2648","106","0","0" +"12216","462","2","1","-434","-2707","114","0","0" +"12215","462","3","1","-455","-2775","109","0","0" +"12214","462","4","1","-565","-2890","108","0","0" +"12213","462","5","1","-933","-3248","110","0","0" +"12212","462","6","1","-1042","-3369","107","0","0" +"12211","462","7","1","-1016","-3620","60","0","0" +"12210","462","8","1","-975","-3784","35","0","0" +"12209","462","9","1","-921","-3803","25","0","0" +"12852","462","10","1","-893","-3774","13","0","0" +"12245","464","0","1","-3826","-4517","11","0","0" +"12244","464","1","1","-3853","-4557","20","0","0" +"12243","464","2","1","-3872","-4611","30","0","0" +"12242","464","3","1","-3831","-4688","29","0","0" +"12241","464","4","1","-3684","-4701","30","0","0" +"12240","464","5","1","-3520","-4600","30","0","0" +"12239","464","6","1","-3015","-4303","30","0","0" +"12238","464","7","1","-2581","-4123","30","0","0" +"12237","464","8","1","-2228","-3904","30","0","0" +"12236","464","9","1","-1366","-4016","30","0","0" +"12235","464","10","1","-1001","-3913","30","0","0" +"12234","464","11","1","-900","-3833","30","0","0" +"12233","464","12","1","-895","-3773","13","0","0" +"12246","465","0","1","2721","-3880","101","0","0" +"12247","465","1","1","2733","-3873","108","0","0" +"12248","465","2","1","2755","-3856","108","0","0" +"12249","465","3","1","2780","-3823","110","0","0" +"12250","465","4","1","2779","-3763","114","0","0" +"12251","465","5","1","2722","-3713","115","0","0" +"12252","465","6","1","2499","-3679","116","0","0" +"12253","465","7","1","2033","-3624","125","0","0" +"12254","465","8","1","1600","-3817","109","0","0" +"12255","465","9","1","1101","-3833","73","0","0" +"12256","465","10","1","-129","-3868","75","0","0" +"12257","465","11","1","-514","-3881","67","0","0" +"12258","465","12","1","-724","-3993","52","0","0" +"12259","465","13","1","-825","-3977","37","0","0" +"12260","465","14","1","-863","-3833","23","0","0" +"17931","465","15","1","-895","-3772","13","0","0" +"12279","466","0","1","-895","-3772","12","0","0" +"12278","466","1","1","-866","-3835","29","0","0" +"12277","466","2","1","-825","-3977","47","0","0" +"12276","466","3","1","-724","-3993","59","0","0" +"12275","466","4","1","-514","-3881","54","0","0" +"12274","466","5","1","-129","-3868","66","0","0" +"12273","466","6","1","1102","-3839","68","0","0" +"12272","466","7","1","1600","-3817","113","0","0" +"12271","466","8","1","1900","-3732","113","0","0" +"12270","466","9","1","2166","-3720","113","0","0" +"12269","466","10","1","2457","-3727","113","0","0" +"12268","466","11","1","2637","-3757","113","0","0" +"12267","466","12","1","2680","-3835","114","0","0" +"12266","466","13","1","2699","-3865","113","0","0" +"12265","466","14","1","2721","-3880","103","0","0" +"12280","467","0","1","2825","-292","108","0","0" +"12281","467","1","1","2838","-298","113","0","0" +"12282","467","2","1","2855","-322","120","0","0" +"12283","467","3","1","2857","-386","120","0","0" +"12284","467","4","1","2826","-493","114","0","0" +"12285","467","5","1","2637","-584","118","0","0" +"12286","467","6","1","2483","-653","124","0","0" +"12287","467","7","1","2476","-752","138","0","0" +"12288","467","8","1","2507","-879","147","0","0" +"12289","467","9","1","2502","-1064","135","0","0" +"12290","467","10","1","2456","-1276","140","0","0" +"12291","467","11","1","2398","-1437","132","0","0" +"12292","467","12","1","2352","-1599","130","0","0" +"12293","467","13","1","2326","-1670","132","0","0" +"12294","467","14","1","2181","-1780","118","0","0" +"12295","467","15","1","2011","-1913","103","0","0" +"12296","467","16","1","1995","-1976","104","0","0" +"12297","467","17","1","2090","-2022","105","0","0" +"12298","467","18","1","2234","-2217","116","0","0" +"12299","467","19","1","2324","-2321","126","0","0" +"12300","467","20","1","2434","-2325","146","0","0" +"12301","467","21","1","2555","-2408","169","0","0" +"12302","467","22","1","2539","-2578","169","0","0" +"12303","467","23","1","2500","-2672","164","0","0" +"12304","467","24","1","2483","-2757","164","0","0" +"12305","467","25","1","2534","-2827","164","0","0" +"12306","467","26","1","2568","-2950","164","0","0" +"12307","467","27","1","2673","-3095","164","0","0" +"12308","467","28","1","2716","-3176","162","0","0" +"12309","467","29","1","2734","-3288","147","0","0" +"12310","467","30","1","2727","-3496","131","0","0" +"12311","467","31","1","2708","-3693","114","0","0" +"12312","467","32","1","2670","-3805","123","0","0" +"12313","467","33","1","2700","-3861","114","0","0" +"19034","467","34","1","2722","-3880","102","0","0" +"12347","468","0","1","2722","-3880","101","0","0" +"12346","468","1","1","2753","-3853","103","0","0" +"12345","468","2","1","2829","-3764","110","0","0" +"12344","468","3","1","2890","-3625","110","0","0" +"12343","468","4","1","2832","-3486","121","0","0" +"12342","468","5","1","2733","-3313","147","0","0" +"12341","468","6","1","2716","-3176","162","0","0" +"12340","468","7","1","2673","-3095","164","0","0" +"12339","468","8","1","2568","-2950","164","0","0" +"12338","468","9","1","2534","-2827","164","0","0" +"12337","468","10","1","2483","-2757","164","0","0" +"12336","468","11","1","2500","-2672","164","0","0" +"12335","468","12","1","2539","-2578","169","0","0" +"12334","468","13","1","2555","-2408","171","0","0" +"12333","468","14","1","2434","-2325","147","0","0" +"12332","468","15","1","2324","-2321","129","0","0" +"12331","468","16","1","2234","-2217","114","0","0" +"12330","468","17","1","2090","-2022","109","0","0" +"12329","468","18","1","1995","-1976","105","0","0" +"12328","468","19","1","2011","-1913","103","0","0" +"12327","468","20","1","2181","-1780","118","0","0" +"12326","468","21","1","2326","-1670","132","0","0" +"12325","468","22","1","2352","-1599","130","0","0" +"12324","468","23","1","2398","-1437","132","0","0" +"12323","468","24","1","2456","-1276","140","0","0" +"12322","468","25","1","2502","-1064","135","0","0" +"12321","468","26","1","2507","-879","147","0","0" +"12320","468","27","1","2476","-752","138","0","0" +"12319","468","28","1","2486","-579","135","0","0" +"12318","468","29","1","2584","-399","127","0","0" +"12317","468","30","1","2646","-299","122","0","0" +"12316","468","31","1","2733","-249","122","0","0" +"12315","468","32","1","2798","-277","116","0","0" +"12314","468","33","1","2825","-292","109","0","0" +"12348","469","0","0","-9430","-2237","69","0","0" +"12349","469","1","0","-9417","-2267","76","0","0" +"12350","469","2","0","-9395","-2301","81","0","0" +"12351","469","3","0","-9315","-2410","95","0","0" +"12352","469","4","0","-9158","-2550","131","0","0" +"12353","469","5","0","-8999","-2601","134","0","0" +"12354","469","6","0","-8884","-2579","150","0","0" +"12355","469","7","0","-8697","-2574","161","0","0" +"12356","469","8","0","-8427","-2542","178","0","0" +"12357","469","9","0","-8178","-2611","178","0","0" +"12358","469","10","0","-8131","-2717","177","0","0" +"12359","469","11","0","-8248","-2800","216","0","0" +"12360","469","12","0","-8363","-2740","187","0","0" +"12373","470","0","0","-8361","-2740","186","0","0" +"12372","470","1","0","-8355","-2745","188","0","0" +"12371","470","2","0","-8311","-2780","203","0","0" +"12370","470","3","0","-8226","-2818","209","0","0" +"12369","470","4","0","-8163","-2782","209","0","0" +"12368","470","5","0","-8133","-2679","198","0","0" +"12367","470","6","0","-8234","-2575","194","0","0" +"12366","470","7","0","-8427","-2542","167","0","0" +"12365","470","8","0","-8697","-2574","169","0","0" +"12364","470","9","0","-8884","-2579","179","0","0" +"12363","470","10","0","-8999","-2601","188","0","0" +"12362","470","11","0","-9158","-2550","160","0","0" +"12895","470","12","0","-9315","-2410","108","0","0" +"12896","470","13","0","-9415","-2350","113","0","0" +"12897","470","14","0","-9430","-2237","70","0","0" +"12402","471","0","1","-4372","3339","13","0","0" +"12401","471","1","1","-4314","3326","28","0","0" +"12400","471","2","1","-4286","3256","36","0","0" +"12399","471","3","1","-4271","2987","65","0","0" +"12398","471","4","1","-4430","2552","65","0","0" +"12397","471","5","1","-4598","2265","37","0","0" +"12396","471","6","1","-4739","1979","63","0","0" +"12395","471","7","1","-4783","1872","94","0","0" +"12394","471","8","1","-4780","1651","98","0","0" +"12393","471","9","1","-5157","1476","71","0","0" +"12392","471","10","1","-5298","1412","78","0","0" +"12391","471","11","1","-5464","1424","79","0","0" +"12390","471","12","1","-5608","1326","91","0","0" +"12389","471","13","1","-5827","1210","104","0","0" +"12388","471","14","1","-5878","1257","130","0","0" +"12387","471","15","1","-5935","1309","178","0","0" +"12386","471","16","1","-6049","1290","186","0","0" +"12385","471","17","1","-6135","1307","176","0","0" +"12384","471","18","1","-6400","1332","64","0","0" +"12383","471","19","1","-6700","1066","55","0","0" +"12382","471","20","1","-6828","905","70","0","0" +"12381","471","21","1","-6867","799","82","0","0" +"12380","471","22","1","-6833","735","92","0","0" +"12379","471","23","1","-6781","732","100","0","0" +"12378","471","24","1","-6760","773","90","0","0" +"12469","473","0","0","-634","-4720","6","0","0" +"12470","473","1","0","-626","-4723","7","0","0" +"12471","473","2","0","-570","-4742","23","0","0" +"12472","473","3","0","-479","-4744","35","0","0" +"12473","473","4","0","-410","-4641","49","0","0" +"12474","473","5","0","-325","-4491","78","0","0" +"12475","473","6","0","-237","-4380","121","0","0" +"12476","473","7","0","-130","-4372","168","0","0" +"12477","473","8","0","26","-4381","168","0","0" +"12478","473","9","0","201","-4371","168","0","0" +"12479","473","10","0","479","-4188","187","0","0" +"12480","473","11","0","840","-4114","200","0","0" +"12481","473","12","0","1155","-4036","274","0","0" +"12482","473","13","0","1317","-3966","298","0","0" +"12483","473","14","0","1543","-4005","223","0","0" +"12484","473","15","0","1673","-4363","166","0","0" +"12485","473","16","0","1831","-4725","156","0","0" +"12486","473","17","0","1888","-4886","156","0","0" +"12487","473","18","0","1978","-5173","142","0","0" +"12488","473","19","0","2147","-5313","120","0","0" +"12489","473","20","0","2317","-5294","84","0","0" +"12510","474","0","0","2317","-5294","83","0","0" +"12509","474","1","0","2313","-5286","86","0","0" +"12508","474","2","0","2281","-5188","97","0","0" +"12507","474","3","0","2197","-4899","136","0","0" +"12506","474","4","0","1998","-4465","136","0","0" +"12505","474","5","0","1662","-4141","177","0","0" +"12504","474","6","0","1268","-3925","286","0","0" +"12503","474","7","0","1046","-4078","204","0","0" +"12502","474","8","0","653","-4141","175","0","0" +"12501","474","9","0","387","-4070","194","0","0" +"12500","474","10","0","-10","-4105","201","0","0" +"12499","474","11","0","-208","-4340","176","0","0" +"12498","474","12","0","-429","-4466","112","0","0" +"12497","474","13","0","-677","-4558","77","0","0" +"12496","474","14","0","-709","-4661","41","0","0" +"12495","474","15","0","-636","-4718","6","0","0" +"12512","475","0","0","283","-2002","195","0","0" +"12513","475","1","0","281","-2007","196","0","0" +"12514","475","2","0","273","-2018","199","0","0" +"12515","475","3","0","245","-2054","204","0","0" +"12516","475","4","0","197","-2084","204","0","0" +"12517","475","5","0","109","-2054","204","0","0" +"12518","475","6","0","50","-1976","228","0","0" +"12519","475","7","0","-6","-1796","247","0","0" +"12520","475","8","0","51","-1735","269","0","0" +"12521","475","9","0","121","-1705","274","0","0" +"12522","475","10","0","202","-1662","249","0","0" +"12523","475","11","0","577","-1487","132","0","0" +"12524","475","12","0","685","-1466","127","0","0" +"12525","475","13","0","821","-1472","104","0","0" +"12526","475","14","0","911","-1479","77","0","0" +"12527","475","15","0","930","-1430","67","0","0" +"12543","476","0","0","930","-1430","65","0","0" +"12542","476","1","0","935","-1438","68","0","0" +"12541","476","2","0","953","-1464","76","0","0" +"12540","476","3","0","941","-1510","92","0","0" +"12539","476","4","0","861","-1529","113","0","0" +"12538","476","5","0","734","-1496","134","0","0" +"12537","476","6","0","561","-1406","134","0","0" +"12536","476","7","0","112","-1502","206","0","0" +"12535","476","8","0","-144","-1635","268","0","0" +"12534","476","9","0","-167","-1776","213","0","0" +"12533","476","10","0","-40","-1871","213","0","0" +"12532","476","11","0","59","-1962","213","0","0" +"12531","476","12","0","143","-1951","210","0","0" +"12530","476","13","0","237","-2011","196","0","0" +"12843","476","14","0","284","-2003","196","0","0" +"12544","477","0","1","135","1323","194","0","0" +"12545","477","1","1","125","1329","196","0","0" +"12546","477","2","1","106","1344","202","0","0" +"12547","477","3","1","72","1376","202","0","0" +"12548","477","4","1","24","1464","184","0","0" +"12549","477","5","1","55","1639","124","0","0" +"12550","477","6","1","231","1814","100","0","0" +"12551","477","7","1","287","1827","97","0","0" +"12552","477","8","1","359","1803","73","0","0" +"12553","477","9","1","551","1715","43","0","0" +"12554","477","10","1","714","1697","43","0","0" +"12555","477","11","1","1015","1545","43","0","0" +"12556","477","12","1","1167","1528","66","0","0" +"12557","477","13","1","1249","1443","107","0","0" +"12558","477","14","1","1443","1428","150","0","0" +"12559","477","15","1","1511","1358","184","0","0" +"12560","477","16","1","1580","1295","227","0","0" +"12561","477","17","1","1718","1331","220","0","0" +"12562","477","18","1","1801","1435","205","0","0" +"12563","477","19","1","1867","1559","220","0","0" +"12564","477","20","1","1970","1566","272","0","0" +"12565","477","21","1","2032","1450","363","0","0" +"12566","477","22","1","2191","1376","368","0","0" +"12567","477","23","1","2348","1377","368","0","0" +"12568","477","24","1","2486","1363","353","0","0" +"12569","477","25","1","2615","1391","293","0","0" +"12570","477","26","1","2683","1460","236","0","0" +"12597","478","0","1","2683","1460","234","0","0" +"12596","478","1","1","2678","1454","235","0","0" +"12595","478","2","1","2658","1433","244","0","0" +"12594","478","3","1","2608","1398","279","0","0" +"12593","478","4","1","2557","1371","321","0","0" +"12592","478","5","1","2442","1359","362","0","0" +"12591","478","6","1","2119","1414","374","0","0" +"12590","478","7","1","1967","1449","264","0","0" +"12589","478","8","1","1712","1338","224","0","0" +"12588","478","9","1","1584","1292","225","0","0" +"12587","478","10","1","1439","1405","183","0","0" +"12586","478","11","1","1232","1475","121","0","0" +"12585","478","12","1","1165","1518","59","0","0" +"12584","478","13","1","1028","1540","34","0","0" +"12583","478","14","1","800","1604","45","0","0" +"12582","478","15","1","636","1757","45","0","0" +"12581","478","16","1","446","1773","47","0","0" +"12580","478","17","1","359","1803","81","0","0" +"12579","478","18","1","287","1827","108","0","0" +"12578","478","19","1","106","1797","111","0","0" +"12577","478","20","1","-77","1519","124","0","0" +"12576","478","21","1","-63","1276","171","0","0" +"12575","478","22","1","119","1219","199","0","0" +"12574","478","23","1","154","1286","202","0","0" +"12573","478","24","1","135","1323","195","0","0" +"12599","479","0","1","7457","-2486","462","0","0" +"12600","479","1","1","7459","-2477","464","0","0" +"12601","479","2","1","7461","-2467","467","0","0" +"12602","479","3","1","7466","-2433","476","0","0" +"12603","479","4","1","7465","-2368","497","0","0" +"12604","479","5","1","7420","-2312","530","0","0" +"12605","479","6","1","7356","-2324","550","0","0" +"12606","479","7","1","7342","-2459","581","0","0" +"12607","479","8","1","7266","-2478","627","0","0" +"12608","479","9","1","7213","-2458","662","0","0" +"12609","479","10","1","7154","-2322","715","0","0" +"12610","479","11","1","7064","-2303","688","0","0" +"12611","479","12","1","6862","-2330","641","0","0" +"12612","479","13","1","6722","-2300","655","0","0" +"12613","479","14","1","6624","-2138","678","0","0" +"12614","479","15","1","6504","-2099","659","0","0" +"12615","479","16","1","6431","-2078","643","0","0" +"12616","479","17","1","6348","-2037","617","0","0" +"12617","479","18","1","6279","-1987","595","0","0" +"12618","479","19","1","6205","-1949","573","0","0" +"12642","480","0","1","6205","-1949","572","0","0" +"12641","480","1","1","6217","-1957","577","0","0" +"12640","480","2","1","6285","-2006","600","0","0" +"12639","480","3","1","6336","-2066","637","0","0" +"12638","480","4","1","6432","-2182","660","0","0" +"12637","480","5","1","6464","-2298","669","0","0" +"12636","480","6","1","6537","-2442","655","0","0" +"12635","480","7","1","6800","-2488","656","0","0" +"12634","480","8","1","6912","-2372","662","0","0" +"12633","480","9","1","7064","-2303","705","0","0" +"12632","480","10","1","7154","-2322","692","0","0" +"12631","480","11","1","7213","-2458","653","0","0" +"12630","480","12","1","7320","-2478","612","0","0" +"12629","480","13","1","7376","-2363","543","0","0" +"12628","480","14","1","7426","-2315","532","0","0" +"12627","480","15","1","7466","-2359","501","0","0" +"12998","480","16","1","7456","-2488","464","0","0" +"12645","481","0","1","2308","-2521","104","0","0" +"12646","481","1","1","2303","-2527","107","0","0" +"12647","481","2","1","2276","-2547","108","0","0" +"12648","481","3","1","2233","-2554","108","0","0" +"12649","481","4","1","2190","-2575","110","0","0" +"12650","481","5","1","2166","-2611","113","0","0" +"12651","481","6","1","2181","-2650","120","0","0" +"12652","481","7","1","2253","-2677","126","0","0" +"12653","481","8","1","2385","-2706","144","0","0" +"12654","481","9","1","2451","-2732","155","0","0" +"12655","481","10","1","2500","-2780","160","0","0" +"12656","481","11","1","2536","-2833","168","0","0" +"12657","481","12","1","2555","-2927","168","0","0" +"12658","481","13","1","2609","-3016","168","0","0" +"12659","481","14","1","2697","-3129","168","0","0" +"12660","481","15","1","2733","-3262","153","0","0" +"12661","481","16","1","2791","-3425","128","0","0" +"12662","481","17","1","2871","-3532","115","0","0" +"12663","481","18","1","2883","-3699","112","0","0" +"12664","481","19","1","2893","-3855","120","0","0" +"12665","481","20","1","2952","-3989","149","0","0" +"12666","481","21","1","3115","-4206","148","0","0" +"12667","481","22","1","3304","-4284","145","0","0" +"12668","481","23","1","3500","-4348","140","0","0" +"12669","481","24","1","3610","-4385","126","0","0" +"12670","481","25","1","3659","-4389","116","0","0" +"12702","482","0","1","3659","-4389","116","0","0" +"12701","482","1","1","3670","-4351","117","0","0" +"12700","482","2","1","3640","-4266","121","0","0" +"12699","482","3","1","3521","-4151","141","0","0" +"12698","482","4","1","3378","-4130","150","0","0" +"12697","482","5","1","3134","-4034","119","0","0" +"12696","482","6","1","2920","-3922","119","0","0" +"12695","482","7","1","2850","-3809","98","0","0" +"12694","482","8","1","2883","-3665","111","0","0" +"12693","482","9","1","2882","-3550","120","0","0" +"12692","482","10","1","2791","-3425","133","0","0" +"12691","482","11","1","2733","-3262","160","0","0" +"12690","482","12","1","2697","-3129","173","0","0" +"12689","482","13","1","2609","-3016","172","0","0" +"12688","482","14","1","2555","-2927","172","0","0" +"12687","482","15","1","2536","-2833","171","0","0" +"12686","482","16","1","2500","-2780","167","0","0" +"12685","482","17","1","2451","-2732","161","0","0" +"12684","482","18","1","2385","-2706","152","0","0" +"12683","482","19","1","2253","-2677","132","0","0" +"12682","482","20","1","2181","-2650","126","0","0" +"12681","482","21","1","2166","-2611","127","0","0" +"12680","482","22","1","2190","-2575","122","0","0" +"12679","482","23","1","2233","-2554","115","0","0" +"12678","482","24","1","2276","-2547","114","0","0" +"12677","482","25","1","2308","-2521","104","0","0" +"12742","484","0","0","-919","-3493","72","0","0" +"12743","484","1","0","-919","-3489","74","0","0" +"12744","484","2","0","-911","-3433","83","0","0" +"12745","484","3","0","-895","-3377","89","0","0" +"12746","484","4","0","-866","-3331","108","0","0" +"12747","484","5","0","-805","-3276","164","0","0" +"12748","484","6","0","-701","-3324","234","0","0" +"12749","484","7","0","-667","-3421","288","0","0" +"12750","484","8","0","-545","-3394","375","0","0" +"12751","484","9","0","-483","-3396","363","0","0" +"12752","484","10","0","-355","-3418","253","0","0" +"12753","484","11","0","-84","-3666","253","0","0" +"12754","484","12","0","-76","-3958","224","0","0" +"12755","484","13","0","-146","-4218","187","0","0" +"12756","484","14","0","-223","-4337","178","0","0" +"12757","484","15","0","-292","-4402","157","0","0" +"12758","484","16","0","-414","-4461","109","0","0" +"12759","484","17","0","-574","-4508","71","0","0" +"12760","484","18","0","-670","-4559","47","0","0" +"12761","484","19","0","-701","-4642","34","0","0" +"12762","484","20","0","-637","-4718","9","0","0" +"12783","485","0","0","-637","-4718","9","0","0" +"12782","485","1","0","-588","-4735","20","0","0" +"12781","485","2","0","-479","-4690","47","0","0" +"12780","485","3","0","-347","-4525","87","0","0" +"12779","485","4","0","-234","-4376","137","0","0" +"12778","485","5","0","-171","-4263","187","0","0" +"12777","485","6","0","-111","-4008","214","0","0" +"12776","485","7","0","-101","-3669","262","0","0" +"12775","485","8","0","-355","-3418","298","0","0" +"12774","485","9","0","-523","-3394","379","0","0" +"12773","485","10","0","-684","-3324","288","0","0" +"12772","485","11","0","-896","-3263","179","0","0" +"12771","485","12","0","-1046","-3333","128","0","0" +"12770","485","13","0","-1064","-3453","92","0","0" +"12769","485","14","0","-999","-3507","90","0","0" +"12768","485","15","0","-919","-3493","73","0","0" +"12784","486","0","1","-4416","200","26","0","0" +"12785","486","1","1","-4428","195","28","0","0" +"12786","486","2","1","-4446","180","33","0","0" +"12787","486","3","1","-4455","147","37","0","0" +"12788","486","4","1","-4445","105","41","0","0" +"12789","486","5","1","-4409","55","57","0","0" +"12790","486","6","1","-4361","-1","76","0","0" +"12791","486","7","1","-4270","-120","76","0","0" +"12792","486","8","1","-4246","-226","70","0","0" +"12793","486","9","1","-4277","-321","64","0","0" +"12794","486","10","1","-4301","-432","42","0","0" +"12795","486","11","1","-4343","-559","16","0","0" +"12796","486","12","1","-4310","-734","-18","0","0" +"12797","486","13","1","-4326","-835","-18","0","0" +"12798","486","14","1","-4469","-966","-17","0","0" +"12799","486","15","1","-4595","-1063","-8","0","0" +"12800","486","16","1","-4715","-1115","-8","0","0" +"12801","486","17","1","-4759","-1206","-8","0","0" +"12802","486","18","1","-4787","-1345","-8","0","0" +"12803","486","19","1","-4884","-1446","-8","0","0" +"12804","486","20","1","-4994","-1543","-8","0","0" +"12805","486","21","1","-5103","-1566","9","0","0" +"12806","486","22","1","-5212","-1728","20","0","0" +"12807","486","23","1","-5212","-1943","21","0","0" +"12808","486","24","1","-5261","-2137","42","0","0" +"12809","486","25","1","-5312","-2278","76","0","0" +"12810","486","26","1","-5362","-2368","98","0","0" +"12811","486","27","1","-5393","-2404","96","0","0" +"12812","486","28","1","-5409","-2416","92","0","0" +"12841","487","0","1","-5409","-2416","90","0","0" +"12840","487","1","1","-5418","-2414","93","0","0" +"12839","487","2","1","-5456","-2400","100","0","0" +"12838","487","3","1","-5514","-2340","84","0","0" +"12837","487","4","1","-5602","-2108","46","0","0" +"12836","487","5","1","-5481","-1764","34","0","0" +"12835","487","6","1","-5184","-1378","-19","0","0" +"12834","487","7","1","-5000","-1392","-19","0","0" +"12833","487","8","1","-4851","-1403","-8","0","0" +"12832","487","9","1","-4754","-1288","-8","0","0" +"12831","487","10","1","-4611","-1243","-22","0","0" +"12830","487","11","1","-4468","-1138","-16","0","0" +"12829","487","12","1","-4355","-996","-8","0","0" +"12828","487","13","1","-4376","-864","-24","0","0" +"12827","487","14","1","-4353","-765","-17","0","0" +"12826","487","15","1","-4275","-655","-5","0","0" +"12825","487","16","1","-4171","-581","13","0","0" +"12824","487","17","1","-4103","-482","35","0","0" +"12823","487","18","1","-4158","-354","71","0","0" +"12822","487","19","1","-4172","-223","94","0","0" +"12821","487","20","1","-4191","-119","87","0","0" +"12820","487","21","1","-4273","-34","73","0","0" +"12819","487","22","1","-4271","95","78","0","0" +"12818","487","23","1","-4319","157","67","0","0" +"12817","487","24","1","-4384","192","38","0","0" +"12816","487","25","1","-4416","200","27","0","0" +"12857","488","0","530","7593","-6787","87","0","0" +"12858","488","1","530","7586","-6778","90","0","0" +"12859","488","2","530","7574","-6757","94","0","0" +"12860","488","3","530","7563","-6689","94","0","0" +"12861","488","4","530","7605","-6617","63","0","0" +"12862","488","5","530","7757","-6625","47","0","0" +"12863","488","6","530","7866","-6647","52","0","0" +"12864","488","7","530","7959","-6701","70","0","0" +"12865","488","8","530","8155","-6800","97","0","0" +"12866","488","9","530","8317","-6973","107","0","0" +"12867","488","10","530","8520","-7000","107","0","0" +"12868","488","11","530","8771","-6999","65","0","0" +"12869","488","12","530","9049","-6965","56","0","0" +"12870","488","13","530","9247","-6966","40","0","0" +"12871","488","14","530","9294","-7067","33","0","0" +"13412","488","15","530","9373","-7166","11","0","0" +"12886","489","0","530","9371","-7165","13","0","0" +"12885","489","1","530","9358","-7150","17","0","0" +"12884","489","2","530","9334","-7121","21","0","0" +"12883","489","3","530","9266","-7031","27","0","0" +"12882","489","4","530","9157","-6987","37","0","0" +"12881","489","5","530","8985","-6970","38","0","0" +"12880","489","6","530","8733","-7026","68","0","0" +"12879","489","7","530","8490","-7027","108","0","0" +"12878","489","8","530","8300","-6988","143","0","0" +"12877","489","9","530","8177","-6947","162","0","0" +"12876","489","10","530","7906","-6930","188","0","0" +"12875","489","11","530","7766","-6851","177","0","0" +"12874","489","12","530","7696","-6833","151","0","0" +"12889","489","13","530","7599","-6823","109","0","0" +"13419","489","14","530","7592","-6788","89","0","0" +"12945","494","0","0","3005","-3053","121","0","0" +"12946","494","1","0","3021","-3060","124","0","0" +"12947","494","2","0","3045","-3070","134","0","0" +"12948","494","3","0","3078","-3082","152","0","0" +"12949","494","4","0","3133","-3087","182","0","0" +"12950","494","5","0","3172","-3114","197","0","0" +"12951","494","6","0","3199","-3153","197","0","0" +"12952","494","7","0","3223","-3215","197","0","0" +"12953","494","8","0","3294","-3324","195","0","0" +"12954","494","9","0","3302","-3454","204","0","0" +"12955","494","10","0","3194","-3610","204","0","0" +"12956","494","11","0","3143","-3689","204","0","0" +"12957","494","12","0","3051","-3871","182","0","0" +"12958","494","13","0","3039","-4005","168","0","0" +"12959","494","14","0","3072","-4132","143","0","0" +"12960","494","15","0","3094","-4230","119","0","0" +"12961","494","16","0","3099","-4273","108","0","0" +"12962","495","0","0","3007","-3054","121","0","0" +"12963","495","1","0","3017","-3066","124","0","0" +"12964","495","2","0","3040","-3094","136","0","0" +"12965","495","3","0","3069","-3137","148","0","0" +"12966","495","4","0","3088","-3188","155","0","0" +"12967","495","5","0","3114","-3275","161","0","0" +"12968","495","6","0","3129","-3348","161","0","0" +"12969","495","7","0","3132","-3388","164","0","0" +"12970","495","8","0","3101","-3430","174","0","0" +"12971","495","9","0","3051","-3504","185","0","0" +"12972","495","10","0","3017","-3604","194","0","0" +"12973","495","11","0","2901","-3802","187","0","0" +"12974","495","12","0","2763","-4006","174","0","0" +"12975","495","13","0","2663","-4176","154","0","0" +"12976","495","14","0","2534","-4361","137","0","0" +"12977","495","15","0","2516","-4531","125","0","0" +"12978","495","16","0","2520","-4689","99","0","0" +"12979","495","17","0","2505","-4735","97","0","0" +"12980","496","0","0","3005","-3053","122","0","0" +"12981","496","1","0","3013","-3073","127","0","0" +"12982","496","2","0","3015","-3103","136","0","0" +"12983","496","3","0","3007","-3150","150","0","0" +"12984","496","4","0","2996","-3186","169","0","0" +"12985","496","5","0","2963","-3241","183","0","0" +"12986","496","6","0","2932","-3362","189","0","0" +"12987","496","7","0","2759","-3467","226","0","0" +"12988","496","8","0","2609","-3559","262","0","0" +"12989","496","9","0","2560","-3591","273","0","0" +"12990","496","10","0","2491","-3642","261","0","0" +"12991","496","11","0","2445","-3653","248","0","0" +"12992","496","12","0","2333","-3666","236","0","0" +"12993","496","13","0","2217","-3654","241","0","0" +"12994","496","14","0","2145","-3649","223","0","0" +"12995","496","15","0","2005","-3660","167","0","0" +"12996","496","16","0","1946","-3650","151","0","0" +"12997","496","17","0","1918","-3638","145","0","0" +"13258","496","18","0","1893","-3636","143","0","0" +"13259","496","19","0","1856","-3644","144","0","0" +"13260","496","20","0","1849","-3651","142","0","0" +"13013","499","0","1","6811","-4610","711","0","0" +"13014","499","1","1","6816","-4619","716","0","0" +"13015","499","2","1","6827","-4648","723","0","0" +"13016","499","3","1","6825","-4711","728","0","0" +"13017","499","4","1","6751","-4786","734","0","0" +"13018","499","5","1","6689","-4810","737","0","0" +"13019","499","6","1","6588","-4828","746","0","0" +"13020","499","7","1","6365","-4908","777","0","0" +"13021","499","8","1","6034","-4919","805","0","0" +"13022","499","9","1","5796","-4969","862","0","0" +"13023","499","10","1","5584","-5003","910","0","0" +"13024","499","11","1","5455","-5013","928","0","0" +"13025","499","12","1","5146","-5070","949","0","0" +"13026","499","13","1","4967","-5133","924","0","0" +"13027","499","14","1","4778","-5141","770","0","0" +"13028","499","15","1","4533","-5133","596","0","0" +"13029","499","16","1","4169","-5100","326","0","0" +"13030","499","17","1","4001","-5018","251","0","0" +"13031","499","18","1","3800","-4833","220","0","0" +"13032","499","19","1","3665","-4700","180","0","0" +"13033","499","20","1","3658","-4498","144","0","0" +"13034","499","21","1","3661","-4390","115","0","0" +"13056","500","0","1","3661","-4390","114","0","0" +"13055","500","1","1","3660","-4402","117","0","0" +"13054","500","2","1","3658","-4498","146","0","0" +"13053","500","3","1","3711","-4656","192","0","0" +"13052","500","4","1","3809","-4826","236","0","0" +"13051","500","5","1","3999","-4966","292","0","0" +"13050","500","6","1","4233","-5067","372","0","0" +"13049","500","7","1","4533","-5133","570","0","0" +"13048","500","8","1","4778","-5141","742","0","0" +"13047","500","9","1","4967","-5133","883","0","0" +"13046","500","10","1","5143","-5081","957","0","0" +"13045","500","11","1","5392","-4982","929","0","0" +"13044","500","12","1","5700","-4910","883","0","0" +"13043","500","13","1","5934","-4855","804","0","0" +"13042","500","14","1","6126","-4879","794","0","0" +"13041","500","15","1","6466","-4699","780","0","0" +"13040","500","16","1","6579","-4604","759","0","0" +"13039","500","17","1","6735","-4592","738","0","0" +"13038","500","18","1","6811","-4610","712","0","0" +"13089","503","0","530","-3633","-10703","0","0","0" +"13090","503","1","530","-3800","-10932","0","0","0" +"13091","503","2","530","-3966","-11066","0","0","0" +"13092","503","3","530","-4039","-11238","0","0","0" +"13093","503","4","530","-4082","-11289","0","0","0" +"13094","503","5","530","-4166","-11303","0","0","0" +"13095","503","6","530","-4264","-11317","0","2","60" +"13096","503","7","530","-4333","-11318","0","0","0" +"13097","503","8","530","-4399","-11311","0","0","0" +"13098","503","9","530","-4466","-11266","0","0","0" +"13536","503","10","530","-4531","-11166","0","0","0" +"13537","503","11","530","-4599","-10966","0","0","0" +"13538","503","12","530","-4633","-10703","0","0","0" +"13539","503","13","1","6299","1233","0","0","0" +"13540","503","14","1","6367","1134","0","0","0" +"13541","503","15","1","6433","1032","0","0","0" +"13542","503","16","1","6471","976","0","0","0" +"13543","503","17","1","6550","938","0","2","60" +"13544","503","18","1","6645","925","0","0","0" +"13545","503","19","1","6756","985","0","0","0" +"13730","503","20","1","6799","1059","0","0","0" +"13731","503","21","1","6752","1164","0","0","0" +"13117","506","0","530","-3678","-11414","314","0","0" +"13118","506","1","530","-3645","-11470","320","0","0" +"13119","506","2","530","-3622","-11565","314","0","0" +"13120","506","3","530","-3648","-11724","269","0","0" +"13121","506","4","530","-3799","-11907","184","0","0" +"13122","506","5","530","-3935","-11957","47","0","0" +"13123","506","6","530","-3995","-11895","3","0","0" +"13124","507","0","530","-1931","-11952","65","0","0" +"13125","507","1","530","-1939","-11959","67","0","0" +"13126","507","2","530","-1951","-11969","71","0","0" +"13127","507","3","530","-1996","-12002","81","0","0" +"13128","507","4","530","-2059","-12026","107","0","0" +"13129","507","5","530","-2232","-12000","123","0","0" +"13130","507","6","530","-2608","-11856","101","0","0" +"13131","507","7","530","-3414","-11865","35","0","0" +"13132","507","8","530","-3716","-11934","35","0","0" +"13133","507","9","530","-3904","-11948","35","0","0" +"13134","507","10","530","-3977","-11939","22","0","0" +"13135","507","11","530","-4049","-11866","16","0","0" +"13261","507","12","530","-4055","-11813","13","0","0" +"13262","507","13","530","-4054","-11793","11","0","0" +"13147","508","0","530","-4053","-11789","9","0","0" +"13146","508","1","530","-4052","-11803","12","0","0" +"13145","508","2","530","-4048","-11844","14","0","0" +"13144","508","3","530","-4033","-11891","14","0","0" +"13143","508","4","530","-3966","-11937","23","0","0" +"13142","508","5","530","-3793","-11966","36","0","0" +"13141","508","6","530","-3618","-11919","47","0","0" +"13140","508","7","530","-3333","-11821","47","0","0" +"13139","508","8","530","-2599","-11840","108","0","0" +"13138","508","9","530","-2167","-11845","119","0","0" +"13137","508","10","530","-2032","-11842","78","0","0" +"13263","508","11","530","-1987","-11878","66","0","0" +"13264","508","12","530","-1967","-11925","66","0","0" +"15882","508","13","530","-1934","-11953","59","0","0" +"13232","512","0","530","-139","5534","44","0","0" +"13233","512","1","530","-123","5578","55","0","0" +"13234","512","2","530","-159","5764","54","0","0" +"13235","512","3","530","-173","5943","38","0","0" +"13236","512","4","530","-204","6161","33","0","0" +"13237","512","5","530","-188","6295","41","0","0" +"13238","512","6","530","-29","6310","53","0","0" +"13239","512","7","530","105","6328","71","0","0" +"13240","512","8","530","275","6370","78","0","0" +"13241","512","9","530","578","6343","45","0","0" +"13242","512","10","530","669","6487","66","0","0" +"13243","512","11","530","708","6656","57","0","0" +"13244","512","12","530","710","6899","23","0","0" +"13245","512","13","530","626","7109","33","0","0" +"13246","512","14","530","479","7009","46","0","0" +"13247","512","15","530","353","6725","68","0","0" +"13248","512","16","530","487","6382","38","0","0" +"13249","512","17","530","468","6168","74","0","0" +"13250","512","18","530","463","5833","71","0","0" +"13251","512","19","530","469","5756","66","0","0" +"13252","512","20","530","482","5630","44","0","0" +"13253","512","21","530","417","5587","58","0","0" +"13254","512","22","530","216","5525","74","0","0" +"13255","512","23","530","10","5523","39","0","0" +"13256","512","24","530","-144","5532","34","0","0" +"13291","514","0","530","-3970","-11929","0","0","0" +"13292","514","1","530","-3941","-11952","-2","0","0" +"13293","514","2","530","-3899","-11945","-3","0","0" +"13294","514","3","530","-3843","-11964","-2","0","0" +"13295","514","4","530","-3814","-11982","-1","0","0" +"13296","514","5","530","-3771","-11986","0","0","0" +"13297","514","6","530","-3735","-11992","1","0","0" +"13298","514","7","530","-3697","-11984","2","0","0" +"13299","514","8","530","-3668","-11981","3","0","0" +"13300","514","9","530","-3649","-11968","4","0","0" +"13301","514","10","530","-3604","-11979","6","0","0" +"13302","514","11","530","-3565","-11975","8","0","0" +"13303","514","12","530","-3523","-11977","9","0","0" +"13304","514","13","530","-3488","-11981","12","0","0" +"13305","514","14","530","-3462","-11981","14","0","0" +"13306","514","15","530","-3441","-11996","16","0","0" +"13307","514","16","530","-3403","-12007","18","0","0" +"13308","514","17","530","-3342","-12015","18","0","0" +"13309","514","18","530","-3305","-12025","18","0","0" +"13310","514","19","530","-3275","-12058","20","0","0" +"13311","514","20","530","-3247","-12075","20","0","0" +"13312","514","21","530","-3209","-12108","20","0","0" +"13313","514","22","530","-3184","-12133","20","0","0" +"13314","514","23","530","-3166","-12154","20","0","0" +"13315","514","24","530","-3126","-12186","20","0","0" +"13316","514","25","530","-3116","-12229","22","0","0" +"13317","514","26","530","-3091","-12248","22","0","0" +"13318","514","27","530","-3043","-12242","17","0","0" +"13319","514","28","530","-2987","-12232","12","0","0" +"13320","514","29","530","-2945","-12228","11","0","0" +"13321","514","30","530","-2929","-12225","14","0","0" +"13322","514","31","530","-2909","-12223","17","0","0" +"13323","514","32","530","-2876","-12218","12","0","0" +"13324","514","33","530","-2850","-12213","12","0","0" +"13325","514","34","530","-2840","-12213","15","0","0" +"13406","514","35","530","-2806","-12210","18","0","0" +"13407","514","36","530","-2785","-12208","12","0","0" +"13408","514","37","530","-2763","-12209","8","0","0" +"13409","514","38","530","-2710","-12204","9","0","0" +"13410","514","39","530","-2670","-12173","13","0","0" +"13411","514","40","530","-2662","-12146","16","0","0" +"13326","515","0","530","200","4243","122","0","0" +"13327","515","1","530","204","4251","125","0","0" +"13328","515","2","530","208","4266","128","0","0" +"13329","515","3","530","205","4293","136","0","0" +"13330","515","4","530","193","4323","136","0","0" +"13331","515","5","530","168","4356","136","0","0" +"13332","515","6","530","123","4400","136","0","0" +"13333","515","7","530","54","4404","136","0","0" +"13334","515","8","530","-16","4375","136","0","0" +"13335","515","9","530","-142","4285","140","0","0" +"13336","515","10","530","-306","4062","140","0","0" +"13337","515","11","530","-648","3755","88","0","0" +"13338","515","12","530","-765","3664","88","0","0" +"13339","515","13","530","-844","3609","88","0","0" +"13340","515","14","530","-874","3469","113","0","0" +"13341","515","15","530","-908","3169","113","0","0" +"13342","515","16","530","-899","2867","113","0","0" +"13343","515","17","530","-875","2720","114","0","0" +"13344","515","18","530","-833","2676","116","0","0" +"13345","515","19","530","-766","2684","121","0","0" +"13346","515","20","530","-699","2685","109","0","0" +"13347","515","21","530","-673","2716","96","0","0" +"13369","516","0","530","-673","2716","95","0","0" +"13368","516","1","530","-672","2706","97","0","0" +"13367","516","2","530","-670","2679","100","0","0" +"13366","516","3","530","-651","2592","94","0","0" +"13365","516","4","530","-577","2545","93","0","0" +"13364","516","5","530","-466","2632","85","0","0" +"13363","516","6","530","-100","2966","47","0","0" +"13362","516","7","530","-49","3167","39","0","0" +"13361","516","8","530","-62","3573","96","0","0" +"13360","516","9","530","-99","3900","120","0","0" +"13359","516","10","530","99","4066","111","0","0" +"13358","516","11","530","176","4194","130","0","0" +"13357","516","12","530","201","4245","123","0","0" +"13370","517","0","530","-587","4101","92","0","0" +"13371","517","1","530","-599","4099","93","0","0" +"13372","517","2","530","-611","4098","95","0","0" +"13373","517","3","530","-632","4093","98","0","0" +"13374","517","4","530","-655","4073","97","0","0" +"13375","517","5","530","-680","4031","75","0","0" +"13376","517","6","530","-666","3933","60","0","0" +"13377","517","7","530","-619","3833","54","0","0" +"13378","517","8","530","-572","3701","54","0","0" +"13379","517","9","530","-509","3466","72","0","0" +"13380","517","10","530","-99","3234","34","0","0" +"13381","517","11","530","-15","3099","23","0","0" +"13382","517","12","530","0","2801","81","0","0" +"13383","517","13","530","33","2599","96","0","0" +"13384","517","14","530","145","2515","97","0","0" +"13385","517","15","530","228","2553","102","0","0" +"13386","517","16","530","241","2600","100","0","0" +"13387","517","17","530","226","2633","90","0","0" +"13405","518","0","530","226","2633","88","0","0" +"13404","518","1","530","217","2641","91","0","0" +"13403","518","2","530","199","2655","95","0","0" +"13402","518","3","530","141","2695","104","0","0" +"13401","518","4","530","64","2775","109","0","0" +"13400","518","5","530","-221","2924","30","0","0" +"13399","518","6","530","-567","3134","29","0","0" +"13398","518","7","530","-565","3467","73","0","0" +"13397","518","8","530","-465","3831","82","0","0" +"13396","518","9","530","-474","4010","96","0","0" +"13395","518","10","530","-545","4087","98","0","0" +"13394","518","11","530","-587","4100","93","0","0" +"13424","520","0","530","-1803","8029","-25","0","0" +"13425","520","1","530","-1773","8023","-20","0","0" +"13426","520","2","530","-1739","8019","-14","0","0" +"13427","520","3","530","-1676","8012","-1","0","0" +"13428","520","4","530","-1640","8005","7","0","0" +"13429","520","5","530","-1602","7993","9","0","0" +"13430","520","6","530","-1574","7965","9","0","0" +"13431","520","7","530","-1538","7932","9","0","0" +"13432","520","8","530","-1493","7894","9","0","0" +"13433","520","9","530","-1417","7812","9","0","0" +"13434","520","10","530","-1378","7693","9","0","0" +"13435","520","11","530","-1446","7615","15","0","0" +"13436","520","12","530","-1536","7600","15","0","0" +"13437","520","13","530","-1619","7670","15","0","0" +"13438","520","14","530","-1615","7736","15","0","0" +"13439","520","15","530","-1601","7818","15","0","0" +"13440","520","16","530","-1577","7901","15","0","0" +"13441","520","17","530","-1561","7978","15","0","0" +"13442","520","18","530","-1481","8079","15","0","0" +"13443","520","19","530","-1485","8169","15","0","0" +"13444","520","20","530","-1573","8230","15","0","0" +"13445","520","21","530","-1672","8235","7","0","0" +"13446","520","22","530","-1740","8173","-5","0","0" +"13447","520","23","530","-1826","8046","-21","0","0" +"13478","522","0","530","-1396","7796","-11","0","0" +"13479","522","1","530","-1431","7845","-4","0","0" +"13480","522","2","530","-1479","7888","1","0","0" +"13481","522","3","530","-1529","7926","3","0","0" +"13482","522","4","530","-1576","7962","0","0","0" +"13483","522","5","530","-1637","8009","0","0","0" +"13484","522","6","530","-1746","8028","3","0","0" +"13485","522","7","530","-1810","8076","3","0","0" +"13486","522","8","530","-1759","8165","3","0","0" +"13487","522","9","530","-1688","8214","3","0","0" +"13488","522","10","530","-1612","8240","3","0","0" +"13489","522","11","530","-1497","8160","3","0","0" +"13490","522","12","530","-1546","7999","3","0","0" +"13491","522","13","530","-1600","7855","3","0","0" +"13492","522","14","530","-1608","7742","3","0","0" +"13493","522","15","530","-1565","7660","7","0","0" +"13494","522","16","530","-1443","7657","7","0","0" +"13495","522","17","530","-1371","7704","7","0","0" +"13496","522","18","530","-1376","7771","-7","0","0" +"13498","523","0","530","-1514","8119","-17","0","0" +"13499","523","1","530","-1526","8083","-10","0","0" +"13500","523","2","530","-1547","8026","3","0","0" +"13501","523","3","530","-1566","7968","6","0","0" +"13502","523","4","530","-1599","7855","6","0","0" +"13503","523","5","530","-1664","7744","6","0","0" +"13504","523","6","530","-1790","7730","6","0","0" +"13505","523","7","530","-1882","7772","6","0","0" +"13506","523","8","530","-1930","7892","9","0","0" +"13507","523","9","530","-1840","8034","6","0","0" +"13508","523","10","530","-1727","8039","6","0","0" +"13509","523","11","530","-1629","8005","6","0","0" +"13510","523","12","530","-1570","7959","6","0","0" +"13511","523","13","530","-1501","7908","6","0","0" +"13512","523","14","530","-1369","7822","6","0","0" +"13513","523","15","530","-1289","7907","6","0","0" +"13514","523","16","530","-1312","8053","-1","0","0" +"13515","523","17","530","-1446","8134","-7","0","0" +"13516","523","18","530","-1511","8149","-15","0","0" +"13518","524","0","530","-1646","7749","-13","0","0" +"13519","524","1","530","-1612","7832","2","0","0" +"13520","524","2","530","-1577","7920","15","0","0" +"13521","524","3","530","-1542","8001","17","0","0" +"13522","524","4","530","-1454","8085","17","0","0" +"13523","524","5","530","-1333","8081","8","0","0" +"13524","524","6","530","-1300","8001","5","0","0" +"13525","524","7","530","-1321","7872","6","0","0" +"13526","524","8","530","-1408","7855","14","0","0" +"13527","524","9","530","-1488","7900","9","0","0" +"13528","524","10","530","-1563","7946","5","0","0" +"13529","524","11","530","-1612","7995","5","0","0" +"13530","524","12","530","-1685","8028","6","0","0" +"13531","524","13","530","-1798","8045","15","0","0" +"13532","524","14","530","-1846","7956","15","0","0" +"13533","524","15","530","-1818","7757","6","0","0" +"13534","524","16","530","-1659","7724","-11","0","0" +"13546","525","0","0","-6554","-1169","310","0","0" +"13547","525","1","0","-6567","-1167","313","0","0" +"13548","525","2","0","-6607","-1154","313","0","0" +"13549","525","3","0","-6633","-1119","314","0","0" +"13550","525","4","0","-6600","-1066","325","0","0" +"13551","525","5","0","-6498","-1066","360","0","0" +"13552","525","6","0","-6393","-1112","403","0","0" +"13553","525","7","0","-6251","-1212","460","0","0" +"13554","525","8","0","-6117","-1312","502","0","0" +"13555","525","9","0","-5994","-1389","514","0","0" +"13556","525","10","0","-5917","-1466","497","0","0" +"13557","525","11","0","-5800","-1665","445","0","0" +"13558","525","12","0","-5699","-1833","451","0","0" +"13559","525","13","0","-5666","-2032","451","0","0" +"13560","525","14","0","-5642","-2201","470","0","0" +"13561","525","15","0","-5599","-2296","499","0","0" +"13562","525","16","0","-5598","-2482","478","0","0" +"13563","525","17","0","-5550","-2682","451","0","0" +"13564","525","18","0","-5459","-2769","416","0","0" +"13565","525","19","0","-5418","-2822","377","0","0" +"13566","525","20","0","-5414","-2888","358","0","0" +"13567","525","21","0","-5420","-2928","349","0","0" +"13579","526","0","0","-5428","-2935","353","0","0" +"13580","526","1","0","-5447","-2942","368","0","0" +"13581","526","2","0","-5488","-2894","368","0","0" +"13582","526","3","0","-5512","-2854","382","0","0" +"13583","526","4","0","-5526","-2741","415","0","0" +"13584","526","5","0","-5549","-2652","462","0","0" +"13585","526","6","0","-5674","-2349","519","0","0" +"13586","526","7","0","-5706","-2143","514","0","0" +"13587","526","8","0","-5755","-1772","468","0","0" +"13588","526","9","0","-5833","-1566","491","0","0" +"13589","526","10","0","-5948","-1412","519","0","0" +"13590","526","11","0","-6133","-1300","517","0","0" +"13591","526","12","0","-6339","-1155","417","0","0" +"13592","526","13","0","-6461","-1120","371","0","0" +"13593","526","14","0","-6506","-1135","342","0","0" +"13594","526","15","0","-6538","-1169","319","0","0" +"21788","526","16","0","-6554","-1169","311","0","0" +"13598","527","0","1","3378","994","6","0","0" +"13599","527","1","1","3383","1012","12","0","0" +"13600","527","2","1","3411","1047","16","0","0" +"13601","527","3","1","3499","1098","25","0","0" +"13602","527","4","1","3733","934","23","0","0" +"13603","527","5","1","3819","778","34","0","0" +"13604","527","6","1","3877","714","41","0","0" +"13605","527","7","1","3949","633","33","0","0" +"13606","527","8","1","4053","515","52","0","0" +"13607","527","9","1","4130","486","61","0","0" +"13608","527","10","1","4206","476","76","0","0" +"13609","527","11","1","4295","489","109","0","0" +"13610","527","12","1","4458","544","171","0","0" +"13611","527","13","1","4528","440","151","0","0" +"13612","527","14","1","4567","247","148","0","0" +"13613","527","15","1","4546","142","163","0","0" +"13614","527","16","1","4603","-101","300","0","0" +"13615","527","17","1","4565","-193","304","0","0" +"13616","527","18","1","4574","-249","304","0","0" +"13617","527","19","1","4580","-393","319","0","0" +"13618","527","20","1","4572","-475","314","0","0" +"13619","527","21","1","4581","-566","299","0","0" +"13620","527","22","1","4540","-630","285","0","0" +"13621","527","23","1","4609","-798","306","0","0" +"13622","527","24","1","4719","-770","309","0","0" +"13623","527","25","1","4840","-740","305","0","0" +"13624","527","26","1","4930","-734","317","0","0" +"13625","527","27","1","5000","-738","322","0","0" +"13626","527","28","1","5107","-747","336","0","0" +"13627","527","29","1","5189","-740","349","0","0" +"13628","527","30","1","5290","-737","357","0","0" +"13629","527","31","1","5270","-585","329","0","0" +"13630","527","32","1","5255","-442","332","0","0" +"13631","527","33","1","5249","-393","330","0","0" +"13632","527","34","1","5202","-369","343","0","0" +"13633","527","35","1","5092","-332","376","0","0" +"13634","527","36","1","5069","-333","368","0","0" +"13636","528","0","1","5069","-333","366","0","0" +"13637","528","1","1","5096","-327","376","0","0" +"13638","528","2","1","5223","-375","345","0","0" +"13639","528","3","1","5252","-407","338","0","0" +"13640","528","4","1","5264","-525","337","0","0" +"13641","528","5","1","5272","-653","338","0","0" +"13642","528","6","1","5266","-735","381","0","0" +"13643","528","7","1","5135","-748","340","0","0" +"13644","528","8","1","4925","-735","318","0","0" +"13645","528","9","1","4829","-744","309","0","0" +"13646","528","10","1","4732","-770","313","0","0" +"13647","528","11","1","4611","-802","309","0","0" +"13648","528","12","1","4555","-687","276","0","0" +"13649","528","13","1","4570","-591","290","0","0" +"13650","528","14","1","4575","-443","322","0","0" +"13651","528","15","1","4584","-317","315","0","0" +"13652","528","16","1","4568","-229","307","0","0" +"13653","528","17","1","4558","-189","307","0","0" +"13654","528","18","1","4550","-96","293","0","0" +"13655","528","19","1","4583","139","215","0","0" +"13656","528","20","1","4521","469","168","0","0" +"13657","528","21","1","4527","607","174","0","0" +"13658","528","22","1","4475","713","150","0","0" +"13659","528","23","1","4308","833","124","0","0" +"13660","528","24","1","4213","835","127","0","0" +"13661","528","25","1","4053","892","36","0","0" +"13662","528","26","1","3961","825","20","0","0" +"13663","528","27","1","3890","819","19","0","0" +"13664","528","28","1","3826","843","19","0","0" +"13665","528","29","1","3762","909","7","0","0" +"13666","528","30","1","3728","916","7","0","0" +"13667","528","31","1","3672","928","21","0","0" +"13668","528","32","1","3605","915","21","0","0" +"13669","528","33","1","3433","933","21","0","0" +"13736","528","34","1","3374","1000","7","0","0" +"13672","529","0","1","974","1047","105","0","0" +"13673","529","1","1","984","1055","115","0","0" +"13674","529","2","1","1014","1055","128","0","0" +"13675","529","3","1","1031","1048","141","0","0" +"13676","529","4","1","1039","1012","154","0","0" +"13677","529","5","1","1115","974","251","0","0" +"13678","529","6","1","1174","972","253","0","0" +"13679","529","7","1","1254","984","261","0","0" +"13680","529","8","1","1282","987","261","0","0" +"13681","529","9","1","1351","1029","225","0","0" +"13682","529","10","1","1436","1048","225","0","0" +"13683","529","11","1","1500","1083","225","0","0" +"13684","529","12","1","1569","1132","224","0","0" +"13685","529","13","1","1657","1190","224","0","0" +"13686","529","14","1","1707","1229","299","0","0" +"13687","529","15","1","1763","1285","299","0","0" +"13688","529","16","1","1817","1369","242","0","0" +"13689","529","17","1","1945","1498","262","0","0" +"13690","529","18","1","2034","1484","317","0","0" +"13691","529","19","1","2099","1429","386","0","0" +"13692","529","20","1","2173","1410","395","0","0" +"13693","529","21","1","2297","1395","370","0","0" +"13694","529","22","1","2552","1457","351","0","0" +"13695","529","23","1","2708","1424","378","0","0" +"13696","529","24","1","2853","1385","414","0","0" +"13697","529","25","1","3223","1344","438","0","0" +"13698","529","26","1","3577","1070","123","0","0" +"13699","529","27","1","3556","930","51","0","0" +"13700","529","28","1","3431","933","22","0","0" +"13701","529","29","1","3379","999","7","0","0" +"13705","530","0","1","3376","996","6","0","0" +"13706","530","1","1","3388","1014","12","0","0" +"13707","530","2","1","3419","1079","37","0","0" +"13708","530","3","1","3433","1200","106","0","0" +"13709","530","4","1","3336","1315","366","0","0" +"13710","530","5","1","2996","1296","475","0","0" +"13711","530","6","1","2855","1359","457","0","0" +"13712","530","7","1","2416","1366","387","0","0" +"13713","530","8","1","2125","1392","387","0","0" +"13714","530","9","1","2027","1450","337","0","0" +"13715","530","10","1","1810","1366","267","0","0" +"13716","530","11","1","1576","1279","235","0","0" +"13717","530","12","1","1526","1211","222","0","0" +"13718","530","13","1","1544","1092","222","0","0" +"13719","530","14","1","1387","977","222","0","0" +"13720","530","15","1","1358","824","230","0","0" +"13721","530","16","1","1334","753","230","0","0" +"13722","530","17","1","1280","729","222","0","0" +"13723","530","18","1","1221","733","222","0","0" +"13724","530","19","1","1169","785","222","0","0" +"13725","530","20","1","1061","822","222","0","0" +"13726","530","21","1","1001","905","162","0","0" +"13727","530","22","1","946","968","130","0","0" +"13728","530","23","1","961","1022","113","0","0" +"13729","530","24","1","973","1043","107","0","0" +"13752","531","0","530","9335","-7882","75","0","0" +"13753","531","1","530","9334","-7826","116","0","0" +"13754","531","2","530","9329","-7797","138","0","0" +"13755","531","3","530","9334","-7812","138","0","0" +"13758","532","0","530","-1541","8798","43","0","0" +"13759","532","1","530","-1514","8815","55","0","0" +"13760","532","2","530","-1476","8856","68","0","0" +"13761","532","3","530","-1448","8886","79","0","0" +"13762","532","4","530","-1374","8953","99","0","0" +"13763","532","5","530","-1285","9014","117","0","0" +"13764","532","6","530","-1181","9033","137","0","0" +"13765","532","7","530","-1148","8964","151","0","0" +"13766","532","8","530","-1237","8877","134","0","0" +"13767","532","9","530","-1300","8920","134","0","0" +"13768","532","10","530","-1259","9016","140","0","0" +"13769","532","11","530","-1166","9092","170","0","0" +"13770","532","12","530","-1081","9233","272","0","0" +"13771","532","13","530","-1088","9466","379","0","0" +"13772","532","14","530","-1221","9633","305","0","0" +"13773","532","15","530","-1342","9636","268","0","0" +"13774","532","16","530","-1485","9749","276","0","0" +"13775","532","17","530","-1574","9776","276","0","0" +"13776","532","18","530","-1634","9776","276","0","0" +"13777","532","19","530","-1802","9578","239","0","0" +"13778","532","20","530","-1800","9443","167","0","0" +"13779","532","21","530","-1840","9303","129","0","0" +"13780","532","22","530","-1816","9199","122","0","0" +"13781","532","23","530","-1767","9107","120","0","0" +"13782","532","24","530","-1691","9026","103","0","0" +"13783","532","25","530","-1598","8908","80","0","0" +"13784","532","26","530","-1536","8794","39","0","0" +"13804","534","0","560","2382","1164","75","0","0" +"13805","534","1","560","2387","1018","84","0","0" +"13806","534","2","560","2436","876","93","0","0" +"13807","534","3","560","2502","762","93","0","0" +"13808","534","4","560","2468","678","87","0","0" +"13809","534","5","560","2320","584","82","0","0" +"13810","534","6","560","2225","603","74","0","0" +"13811","534","7","560","2069","802","53","0","0" +"13812","534","8","560","1851","877","69","0","0" +"13813","534","9","560","1712","788","86","0","0" +"13814","534","10","560","1833","270","112","0","0" +"13815","534","11","560","1902","206","112","0","0" +"13816","534","12","560","2014","240","73","0","0" +"13817","535","0","530","216","6060","149","0","0" +"13818","535","1","530","211","6047","151","0","0" +"13819","535","2","530","188","5990","157","0","0" +"13820","535","3","530","138","5920","144","0","0" +"13821","535","4","530","81","5830","122","0","0" +"13822","535","5","530","-87","5582","88","0","0" +"13823","535","6","530","-231","5333","111","0","0" +"13824","535","7","530","-233","5148","126","0","0" +"13825","535","8","530","-246","4929","85","0","0" +"13826","535","9","530","-231","4399","106","0","0" +"13827","535","10","530","-100","4167","117","0","0" +"13828","535","11","530","66","4133","99","0","0" +"13829","535","12","530","166","4166","130","0","0" +"13830","535","13","530","201","4245","123","0","0" +"13846","536","0","530","201","4245","122","0","0" +"13845","536","1","530","201","4261","126","0","0" +"13844","536","2","530","195","4300","132","0","0" +"13843","536","3","530","168","4337","135","0","0" +"13842","536","4","530","99","4400","144","0","0" +"13841","536","5","530","-65","4666","109","0","0" +"13840","536","6","530","-233","4933","110","0","0" +"13839","536","7","530","-249","5166","137","0","0" +"13838","536","8","530","-246","5299","107","0","0" +"13837","536","9","530","-152","5699","73","0","0" +"13836","536","10","530","-66","5966","120","0","0" +"13835","536","11","530","83","6184","148","0","0" +"13834","536","12","530","199","6196","148","0","0" +"13833","536","13","530","222","6115","157","0","0" +"14749","536","14","530","215","6063","150","0","0" +"13847","537","0","530","219","7816","23","0","0" +"13848","537","1","530","225","7829","27","0","0" +"13849","537","2","530","233","7846","31","0","0" +"13850","537","3","530","254","7874","36","0","0" +"13851","537","4","530","300","7899","44","0","0" +"13852","537","5","530","366","7895","50","0","0" +"13853","537","6","530","433","7833","62","0","0" +"13854","537","7","530","484","7733","74","0","0" +"13855","537","8","530","466","7600","60","0","0" +"13856","537","9","530","300","7358","55","0","0" +"13857","537","10","530","200","6999","58","0","0" +"13858","537","11","530","266","6466","72","0","0" +"13859","537","12","530","251","6244","71","0","0" +"13860","537","13","530","136","6000","55","0","0" +"13861","537","14","530","66","5766","63","0","0" +"13862","537","15","530","-54","5480","72","0","0" +"13863","537","16","530","-245","5333","94","0","0" +"13864","537","17","530","-238","5166","126","0","0" +"13865","537","18","530","-250","4967","90","0","0" +"13866","537","19","530","-347","4432","109","0","0" +"13867","537","20","530","-399","4199","160","0","0" +"13868","537","21","530","-499","4116","130","0","0" +"13869","537","22","530","-587","4101","95","0","0" +"13898","538","0","530","-587","4101","92","0","0" +"13897","538","1","530","-599","4100","95","0","0" +"13896","538","2","530","-625","4100","102","0","0" +"13895","538","3","530","-670","4117","108","0","0" +"13894","538","4","530","-734","4182","108","0","0" +"13893","538","5","530","-700","4329","116","0","0" +"13892","538","6","530","-468","4499","114","0","0" +"13891","538","7","530","-289","4866","126","0","0" +"13890","538","8","530","-248","5166","136","0","0" +"13889","538","9","530","-266","5333","83","0","0" +"13888","538","10","530","-318","5566","53","0","0" +"13887","538","11","530","-195","6067","53","0","0" +"13886","538","12","530","-163","6299","53","0","0" +"13885","538","13","530","-66","6533","53","0","0" +"13884","538","14","530","67","6766","118","0","0" +"13883","538","15","530","166","6999","67","0","0" +"13882","538","16","530","217","7233","55","0","0" +"13881","538","17","530","130","7440","54","0","0" +"13880","538","18","530","72","7664","50","0","0" +"13879","538","19","530","47","7833","53","0","0" +"13878","538","20","530","110","7933","70","0","0" +"13877","538","21","530","195","7931","51","0","0" +"13876","538","22","530","233","7866","38","0","0" +"13899","538","23","530","219","7816","24","0","0" +"13900","539","0","530","-2728","7305","89","0","0" +"13901","539","1","530","-2731","7297","91","0","0" +"13902","539","2","530","-2745","7251","89","0","0" +"13903","539","3","530","-2767","7134","58","0","0" +"13904","539","4","530","-2732","7000","58","0","0" +"13905","539","5","530","-2600","6667","58","0","0" +"13906","539","6","530","-2333","6533","58","0","0" +"13907","539","7","530","-2000","6533","58","0","0" +"13908","539","8","530","-1666","6466","62","0","0" +"13909","539","9","530","-1399","6367","70","0","0" +"13910","539","10","530","-1257","6247","98","0","0" +"13911","539","11","530","-1144","6135","106","0","0" +"13912","539","12","530","-933","6057","92","0","0" +"13913","539","13","530","-733","6019","63","0","0" +"13914","539","14","530","-499","6019","63","0","0" +"13915","539","15","530","-300","6058","70","0","0" +"13916","539","16","530","-115","6133","78","0","0" +"13917","539","17","530","100","6180","120","0","0" +"13918","539","18","530","202","6163","151","0","0" +"13919","539","19","530","225","6099","150","0","0" +"13920","539","20","530","217","6065","150","0","0" +"13951","540","0","530","214","6064","149","0","0" +"13950","540","1","530","211","6056","151","0","0" +"13949","540","2","530","185","6024","156","0","0" +"13948","540","3","530","99","6000","122","0","0" +"13947","540","4","530","-118","6043","64","0","0" +"13946","540","5","530","-324","6028","65","0","0" +"13945","540","6","530","-467","5960","64","0","0" +"13944","540","7","530","-667","5921","62","0","0" +"13943","540","8","530","-866","5966","98","0","0" +"13942","540","9","530","-1164","6132","113","0","0" +"13941","540","10","530","-1399","6365","94","0","0" +"13940","540","11","530","-1700","6477","74","0","0" +"13939","540","12","530","-2104","6527","52","0","0" +"13938","540","13","530","-2267","6598","36","0","0" +"13937","540","14","530","-2344","6733","39","0","0" +"13936","540","15","530","-2398","6932","35","0","0" +"13935","540","16","530","-2534","7300","55","0","0" +"13934","540","17","530","-2654","7365","105","0","0" +"13933","540","18","530","-2729","7305","90","0","0" +"13952","541","0","530","-1263","7132","58","0","0" +"13953","541","1","530","-1251","7116","61","0","0" +"13954","541","2","530","-1238","7102","64","0","0" +"13955","541","3","530","-1219","7089","68","0","0" +"13956","541","4","530","-1167","7080","74","0","0" +"13957","541","5","530","-1101","7120","74","0","0" +"13958","541","6","530","-1001","7266","91","0","0" +"13959","541","7","530","-836","7535","121","0","0" +"13960","541","8","530","-650","7781","159","0","0" +"13961","541","9","530","-446","7841","210","0","0" +"13962","541","10","530","0","7900","98","0","0" +"13963","541","11","530","133","7933","65","0","0" +"13964","541","12","530","187","7924","51","0","0" +"13965","541","13","530","214","7894","46","0","0" +"13966","541","14","530","225","7853","37","0","0" +"13967","541","15","530","220","7816","24","0","0" +"13983","542","0","530","220","7816","23","0","0" +"13982","542","1","530","233","7830","28","0","0" +"13981","542","2","530","261","7859","36","0","0" +"13980","542","3","530","282","7882","44","0","0" +"13979","542","4","530","313","7929","55","0","0" +"13978","542","5","530","316","7999","57","0","0" +"13977","542","6","530","265","8046","55","0","0" +"13976","542","7","530","166","8127","42","0","0" +"13975","542","8","530","100","8114","42","0","0" +"13974","542","9","530","34","8032","55","0","0" +"13973","542","10","530","-48","7949","86","0","0" +"13972","542","11","530","-178","7833","144","0","0" +"13971","542","12","530","-428","7723","273","0","0" +"13970","542","13","530","-645","7665","194","0","0" +"13969","542","14","530","-799","7633","161","0","0" +"13968","542","15","530","-1198","7433","85","0","0" +"13984","542","16","530","-1297","7364","64","0","0" +"13985","542","17","530","-1332","7267","63","0","0" +"13986","542","18","530","-1315","7194","63","0","0" +"13987","542","19","530","-1263","7133","59","0","0" +"13988","543","0","530","-1261","7133","58","0","0" +"13989","543","1","530","-1252","7117","61","0","0" +"13990","543","2","530","-1241","7099","64","0","0" +"13991","543","3","530","-1234","7067","69","0","0" +"13992","543","4","530","-1246","7011","69","0","0" +"13993","543","5","530","-1235","6932","69","0","0" +"13994","543","6","530","-1308","6734","81","0","0" +"13995","543","7","530","-1408","6500","88","0","0" +"13996","543","8","530","-1327","6299","100","0","0" +"13997","543","9","530","-1103","6100","107","0","0" +"13998","543","10","530","-800","5933","90","0","0" +"13999","543","11","530","-366","5633","90","0","0" +"14000","543","12","530","-257","5239","120","0","0" +"14001","543","13","530","-247","5066","122","0","0" +"14002","543","14","530","-318","4501","100","0","0" +"14003","543","15","530","-366","4234","143","0","0" +"14004","543","16","530","-432","4158","140","0","0" +"14005","543","17","530","-521","4103","109","0","0" +"14006","543","18","530","-589","4101","93","0","0" +"14025","544","0","530","-589","4101","92","0","0" +"14024","544","1","530","-599","4102","94","0","0" +"14023","544","2","530","-609","4104","94","0","0" +"14022","544","3","530","-652","4127","97","0","0" +"14021","544","4","530","-668","4189","101","0","0" +"14020","544","5","530","-598","4300","101","0","0" +"14019","544","6","530","-413","4534","101","0","0" +"14018","544","7","530","-279","4932","101","0","0" +"14017","544","8","530","-233","5166","147","0","0" +"14016","544","9","530","-331","5599","86","0","0" +"14015","544","10","530","-600","5837","101","0","0" +"14014","544","11","530","-1112","6097","108","0","0" +"14013","544","12","530","-1433","6500","101","0","0" +"14012","544","13","530","-1499","6867","101","0","0" +"14011","544","14","530","-1467","7099","92","0","0" +"14010","544","15","530","-1379","7148","101","0","0" +"14009","544","16","530","-1261","7133","58","0","0" +"14026","545","0","530","-2987","3872","10","0","0" +"14027","545","1","530","-2983","3866","11","0","0" +"14028","545","2","530","-2979","3861","12","0","0" +"14029","545","3","530","-2966","3845","13","0","0" +"14030","545","4","530","-2910","3817","13","0","0" +"14031","545","5","530","-2834","3813","16","0","0" +"14032","545","6","530","-2719","3852","-4","0","0" +"14033","545","7","530","-2602","3874","2","0","0" +"14034","545","8","530","-2503","3932","21","0","0" +"14035","545","9","530","-2446","4033","21","0","0" +"14036","545","10","530","-2443","4151","26","0","0" +"14037","545","11","530","-2440","4255","67","0","0" +"14038","545","12","530","-2493","4411","135","0","0" +"14039","545","13","530","-2574","4508","151","0","0" +"14040","545","14","530","-2633","4662","146","0","0" +"14041","545","15","530","-2834","5066","58","0","0" +"14042","545","16","530","-2933","5398","91","0","0" +"14043","545","17","530","-3033","5867","156","0","0" +"14044","545","18","530","-2837","6131","124","0","0" +"14045","545","19","530","-2567","6431","103","0","0" +"14046","545","20","530","-2518","6892","91","0","0" +"14047","545","21","530","-2547","7256","74","0","0" +"14048","545","22","530","-2604","7360","88","0","0" +"14750","545","23","530","-2686","7343","97","0","0" +"14751","545","24","530","-2729","7305","91","0","0" +"14071","546","0","530","-2728","7305","89","0","0" +"14070","546","1","530","-2733","7292","91","0","0" +"14069","546","2","530","-2742","7266","91","0","0" +"14068","546","3","530","-2775","7166","80","0","0" +"14067","546","4","530","-2817","7000","29","0","0" +"14066","546","5","530","-2799","6765","29","0","0" +"14065","546","6","530","-2734","6400","115","0","0" +"14064","546","7","530","-3023","6024","153","0","0" +"14063","546","8","530","-3133","5632","162","0","0" +"14062","546","9","530","-3033","5132","65","0","0" +"14061","546","10","530","-3033","4666","51","0","0" +"14060","546","11","530","-2966","4333","75","0","0" +"14059","546","12","530","-2935","4176","88","0","0" +"14058","546","13","530","-2942","3965","32","0","0" +"14057","546","14","530","-2963","3901","19","0","0" +"14056","546","15","530","-2987","3872","11","0","0" +"14073","547","0","530","-2987","3872","10","0","0" +"14074","547","1","530","-2980","3864","11","0","0" +"14075","547","2","530","-2960","3846","13","0","0" +"14076","547","3","530","-2900","3817","13","0","0" +"14077","547","4","530","-2766","3783","13","0","0" +"14078","547","5","530","-2599","3817","13","0","0" +"14079","547","6","530","-2467","3844","13","0","0" +"14080","547","7","530","-2266","3850","23","0","0" +"14081","547","8","530","-2133","3808","17","0","0" +"14082","547","9","530","-1940","3749","27","0","0" +"14083","547","10","530","-1801","3700","86","0","0" +"14084","547","11","530","-1534","3466","86","0","0" +"14085","547","12","530","-1333","3164","86","0","0" +"14086","547","13","530","-1166","2866","86","0","0" +"14087","547","14","530","-967","2700","95","0","0" +"14088","547","15","530","-798","2683","117","0","0" +"14089","547","16","530","-712","2684","108","0","0" +"14090","547","17","530","-671","2717","96","0","0" +"14096","548","0","530","-2566","4424","40","0","0" +"14097","548","1","530","-2568","4410","44","0","0" +"14098","548","2","530","-2571","4390","49","0","0" +"14099","548","3","530","-2565","4343","53","0","0" +"14100","548","4","530","-2491","4273","53","0","0" +"14101","548","5","530","-2366","4189","15","0","0" +"14102","548","6","530","-2300","4116","15","0","0" +"14103","548","7","530","-2200","4033","15","0","0" +"14104","548","8","530","-2100","4028","15","0","0" +"14105","548","9","530","-2000","4000","36","0","0" +"14106","548","10","530","-1900","3999","65","0","0" +"14107","548","11","530","-1800","4013","107","0","0" +"14108","548","12","530","-1666","3867","135","0","0" +"14109","548","13","530","-1334","3333","107","0","0" +"14110","548","14","530","-966","3332","107","0","0" +"14111","548","15","530","-433","3032","108","0","0" +"14112","548","16","530","-52","2645","108","0","0" +"14113","548","17","530","136","2524","106","0","0" +"14114","548","18","530","226","2555","107","0","0" +"14115","548","19","530","240","2600","102","0","0" +"14535","548","20","530","228","2631","90","0","0" +"14116","549","0","530","-2566","4424","40","0","0" +"14117","549","1","530","-2569","4410","43","0","0" +"14118","549","2","530","-2574","4378","47","0","0" +"14119","549","3","530","-2566","4332","52","0","0" +"14120","549","4","530","-2516","4286","33","0","0" +"14121","549","5","530","-2417","4236","21","0","0" +"14122","549","6","530","-2333","4261","21","0","0" +"14123","549","7","530","-2238","4331","22","0","0" +"14124","549","8","530","-2116","4358","22","0","0" +"14125","549","9","530","-2026","4400","22","0","0" +"14126","549","10","530","-1977","4533","29","0","0" +"14127","549","11","530","-1957","4730","29","0","0" +"14128","549","12","530","-1962","4833","29","0","0" +"14129","549","13","530","-1957","4966","39","0","0" +"14130","549","14","530","-1970","5099","46","0","0" +"14131","549","15","530","-1953","5166","37","0","0" +"14132","549","16","530","-1920","5244","23","0","0" +"14133","549","17","530","-1837","5302","-8","0","0" +"14134","550","0","530","-2566","4424","40","0","0" +"14135","550","1","530","-2570","4411","44","0","0" +"14136","550","2","530","-2576","4393","48","0","0" +"14137","550","3","530","-2600","4326","61","0","0" +"14138","550","4","530","-2632","4200","90","0","0" +"14139","550","5","530","-2676","3942","149","0","0" +"14140","550","6","530","-2805","3598","142","0","0" +"14141","550","7","530","-3033","3200","120","0","0" +"14142","550","8","530","-3133","3033","142","0","0" +"14143","550","9","530","-3100","2798","112","0","0" +"14144","550","10","530","-3050","2635","105","0","0" +"14145","550","11","530","-3014","2559","82","0","0" +"14157","551","0","530","-3016","2556","79","0","0" +"14156","551","1","530","-3019","2571","84","0","0" +"14155","551","2","530","-3033","2610","89","0","0" +"14154","551","3","530","-3055","2764","108","0","0" +"14153","551","4","530","-3000","3067","159","0","0" +"14152","551","5","530","-2833","3599","142","0","0" +"14151","551","6","530","-2967","4132","149","0","0" +"14150","551","7","530","-2834","4365","92","0","0" +"14149","551","8","530","-2700","4394","81","0","0" +"14148","551","9","530","-2600","4411","52","0","0" +"17766","551","10","530","-2566","4424","40","0","0" +"14175","552","0","530","-1837","5302","-11","0","0" +"14174","552","1","530","-1809","5311","-6","0","0" +"14173","552","2","530","-1764","5308","2","0","0" +"14172","552","3","530","-1717","5256","16","0","0" +"14171","552","4","530","-1662","5135","31","0","0" +"14170","552","5","530","-1750","5010","31","0","0" +"14169","552","6","530","-1866","4923","22","0","0" +"14168","552","7","530","-2114","4853","25","0","0" +"14167","552","8","530","-2262","4817","39","0","0" +"14166","552","9","530","-2400","4846","61","0","0" +"14165","552","10","530","-2599","4892","88","0","0" +"14164","552","11","530","-2755","4785","68","0","0" +"14163","552","12","530","-2767","4567","68","0","0" +"14162","552","13","530","-2733","4447","78","0","0" +"14161","552","14","530","-2666","4413","64","0","0" +"14160","552","15","530","-2600","4412","51","0","0" +"17765","552","16","530","-2566","4424","41","0","0" +"14176","553","0","530","-2987","3872","10","0","0" +"14177","553","1","530","-2977","3862","12","0","0" +"14178","553","2","530","-2942","3833","14","0","0" +"14179","553","3","530","-2867","3807","16","0","0" +"14180","553","4","530","-2758","3666","16","0","0" +"14181","553","5","530","-2744","3566","16","0","0" +"14182","553","6","530","-2878","3366","30","0","0" +"14183","553","7","530","-2986","3200","64","0","0" +"14184","553","8","530","-3086","3100","136","0","0" +"14185","553","9","530","-3232","2933","159","0","0" +"14186","553","10","530","-3417","2722","153","0","0" +"14187","553","11","530","-3554","2525","97","0","0" +"14188","553","12","530","-3699","2383","119","0","0" +"14189","553","13","530","-3895","2269","149","0","0" +"14190","553","14","530","-3952","2235","133","0","0" +"14191","553","15","530","-3985","2199","121","0","0" +"14192","553","16","530","-3986","2156","107","0","0" +"14209","554","0","530","-3986","2155","106","0","0" +"14208","554","1","530","-3975","2154","111","0","0" +"14207","554","2","530","-3958","2151","117","0","0" +"14206","554","3","530","-3887","2139","131","0","0" +"14205","554","4","530","-3766","2165","122","0","0" +"14204","554","5","530","-3566","2299","111","0","0" +"14203","554","6","530","-3300","2466","97","0","0" +"14202","554","7","530","-3099","2732","97","0","0" +"14201","554","8","530","-2933","3061","110","0","0" +"14200","554","9","530","-2742","3331","137","0","0" +"14199","554","10","530","-2635","3631","157","0","0" +"14198","554","11","530","-2634","3966","147","0","0" +"14197","554","12","530","-2766","4099","108","0","0" +"14196","554","13","530","-2884","4040","39","0","0" +"14195","554","14","530","-2936","3971","26","0","0" +"14194","554","15","530","-2956","3908","21","0","0" +"14193","554","16","530","-2987","3872","10","0","0" +"14211","555","0","530","-2987","3872","10","0","0" +"14212","555","1","530","-2983","3866","11","0","0" +"14213","555","2","530","-2966","3847","16","0","0" +"14214","555","3","530","-2918","3822","16","0","0" +"14215","555","4","530","-2833","3816","16","0","0" +"14216","555","5","530","-2766","3837","8","0","0" +"14217","555","6","530","-2601","3881","8","0","0" +"14218","555","7","530","-2559","3998","12","0","0" +"14219","555","8","530","-2457","4109","16","0","0" +"14220","555","9","530","-2400","4203","16","0","0" +"14221","555","10","530","-2301","4255","18","0","0" +"14222","555","11","530","-2166","4255","18","0","0" +"14223","555","12","530","-2066","4367","18","0","0" +"14224","555","13","530","-2000","4500","21","0","0" +"14225","555","14","530","-1960","4600","21","0","0" +"14226","555","15","530","-1964","4732","21","0","0" +"14227","555","16","530","-1960","4932","29","0","0" +"14228","555","17","530","-1970","5032","43","0","0" +"14229","555","18","530","-1965","5205","34","0","0" +"14230","555","19","530","-1920","5261","27","0","0" +"14231","555","20","530","-1837","5302","-7","0","0" +"14252","557","0","530","-1837","5302","-8","0","0" +"14251","557","1","530","-1817","5309","-4","0","0" +"14250","557","2","530","-1773","5303","4","0","0" +"14249","557","3","530","-1726","5251","14","0","0" +"14248","557","4","530","-1731","5178","26","0","0" +"14247","557","5","530","-1805","5114","33","0","0" +"14246","557","6","530","-1922","4983","33","0","0" +"14245","557","7","530","-1974","4566","30","0","0" +"14244","557","8","530","-2058","4366","25","0","0" +"14243","557","9","530","-2152","4265","25","0","0" +"14242","557","10","530","-2299","4252","25","0","0" +"14241","557","11","530","-2498","4186","26","0","0" +"14240","557","12","530","-2635","4127","27","0","0" +"14239","557","13","530","-2799","4096","27","0","0" +"14238","557","14","530","-2939","4000","26","0","0" +"14237","557","15","530","-2950","3905","20","0","0" +"14236","557","16","530","-2987","3872","10","0","0" +"14271","558","0","530","-671","2717","96","0","0" +"14270","558","1","530","-672","2710","98","0","0" +"14269","558","2","530","-674","2698","102","0","0" +"14268","558","3","530","-677","2646","101","0","0" +"14267","558","4","530","-637","2542","93","0","0" +"14266","558","5","530","-733","2455","78","0","0" +"14265","558","6","530","-985","2571","47","0","0" +"14264","558","7","530","-1335","3100","76","0","0" +"14263","558","8","530","-1644","3762","166","0","0" +"14262","558","9","530","-2177","4042","145","0","0" +"14261","558","10","530","-2445","4093","144","0","0" +"14260","558","11","530","-2618","4118","131","0","0" +"14259","558","12","530","-2828","4105","59","0","0" +"14258","558","13","530","-2931","4008","39","0","0" +"14257","558","14","530","-2949","3923","27","0","0" +"14256","558","15","530","-2987","3872","10","0","0" +"14272","559","0","530","-2728","7305","89","0","0" +"14273","559","1","530","-2732","7297","92","0","0" +"14274","559","2","530","-2748","7253","88","0","0" +"14275","559","3","530","-2809","7081","38","0","0" +"14276","559","4","530","-2802","6804","73","0","0" +"14277","559","5","530","-2702","6520","132","0","0" +"14278","559","6","530","-2597","6165","230","0","0" +"14279","559","7","530","-2478","5933","327","0","0" +"14280","559","8","530","-2400","5733","368","0","0" +"14281","559","9","530","-2299","5434","149","0","0" +"14282","559","10","530","-2166","5325","100","0","0" +"14283","559","11","530","-1998","5298","43","0","0" +"14284","559","12","530","-1837","5302","-10","0","0" +"14301","560","0","530","-1837","5302","-10","0","0" +"14300","560","1","530","-1823","5314","-5","0","0" +"14299","560","2","530","-1799","5335","5","0","0" +"14298","560","3","530","-1724","5392","39","0","0" +"14297","560","4","530","-1665","5493","94","0","0" +"14296","560","5","530","-1668","5700","198","0","0" +"14295","560","6","530","-1895","5914","249","0","0" +"14294","560","7","530","-2034","6095","216","0","0" +"14293","560","8","530","-2099","6264","123","0","0" +"14292","560","9","530","-2235","6700","49","0","0" +"14291","560","10","530","-2450","7134","63","0","0" +"14290","560","11","530","-2567","7333","90","0","0" +"14289","560","12","530","-2666","7359","101","0","0" +"14752","560","13","530","-2733","7307","90","0","0" +"14304","561","0","530","215","6063","149","0","0" +"14305","561","1","530","210","6053","151","0","0" +"14306","561","2","530","184","6008","155","0","0" +"14307","561","3","530","93","5966","128","0","0" +"14308","561","4","530","-166","5966","92","0","0" +"14309","561","5","530","-466","5953","66","0","0" +"14310","561","6","530","-698","5900","83","0","0" +"14311","561","7","530","-933","5950","161","0","0" +"14312","561","8","530","-1133","6000","219","0","0" +"14313","561","9","530","-1432","6034","257","0","0" +"14314","561","10","530","-1635","5901","238","0","0" +"14315","561","11","530","-1932","5700","171","0","0" +"14316","561","12","530","-2027","5544","103","0","0" +"14317","561","13","530","-2001","5377","42","0","0" +"14318","561","14","530","-1917","5318","14","0","0" +"14319","561","15","530","-1837","5302","-9","0","0" +"14335","562","0","530","-1837","5302","-11","0","0" +"14334","562","1","530","-1820","5309","-6","0","0" +"14333","562","2","530","-1789","5308","0","0","0" +"14332","562","3","530","-1689","5292","16","0","0" +"14331","562","4","530","-1501","5217","60","0","0" +"14330","562","5","530","-1300","5217","86","0","0" +"14329","562","6","530","-1070","5359","70","0","0" +"14328","562","7","530","-875","5600","75","0","0" +"14327","562","8","530","-467","5733","75","0","0" +"14326","562","9","530","-133","5933","95","0","0" +"14325","562","10","530","60","6111","137","0","0" +"14324","562","11","530","123","6181","150","0","0" +"14323","562","12","530","213","6148","156","0","0" +"14322","562","13","530","228","6086","154","0","0" +"14321","562","14","530","216","6063","150","0","0" +"14351","564","0","530","-330","1017","57","0","0" +"14352","564","1","530","-353","1007","62","0","0" +"14353","564","2","530","-375","1001","80","0","0" +"14354","564","3","530","-386","1033","86","0","0" +"14355","564","4","530","-384","1118","106","0","0" +"14356","564","5","530","-395","1246","104","0","0" +"14357","564","6","530","-405","1361","104","0","0" +"14358","564","7","530","-314","1523","82","0","0" +"14359","564","8","530","-337","1641","84","0","0" +"14360","564","9","530","-498","1768","84","0","0" +"14361","564","10","530","-616","1858","104","0","0" +"14362","564","11","530","-791","1994","96","0","0" +"14363","564","12","530","-873","2420","97","0","0" +"14364","564","13","530","-866","2632","109","0","0" +"14365","564","14","530","-800","2686","117","0","0" +"14366","564","15","530","-705","2683","109","0","0" +"14367","564","16","530","-676","2716","95","0","0" +"14368","565","0","530","-176","1022","56","0","0" +"14369","565","1","530","-144","1016","63","0","0" +"14370","565","2","530","-100","1046","65","0","0" +"14371","565","3","530","-74","1111","65","0","0" +"14372","565","4","530","-26","1199","65","0","0" +"14373","565","5","530","108","1475","90","0","0" +"14374","565","6","530","98","1657","90","0","0" +"14375","565","7","530","15","1855","90","0","0" +"14376","565","8","530","113","2133","114","0","0" +"14377","565","9","530","237","2508","119","0","0" +"14378","565","10","530","240","2595","103","0","0" +"14379","565","11","530","227","2634","89","0","0" +"14385","566","0","530","-674","2715","95","0","0" +"14386","566","1","530","-677","2695","99","0","0" +"14387","566","2","530","-689","2639","108","0","0" +"14388","566","3","530","-695","2583","113","0","0" +"14389","566","4","530","-685","2508","115","0","0" +"14390","566","5","530","-575","2264","115","0","0" +"14391","566","6","530","-500","2147","115","0","0" +"14392","566","7","530","-514","2021","115","0","0" +"14393","566","8","530","-527","1907","115","0","0" +"14394","566","9","530","-453","1766","115","0","0" +"14395","566","10","530","-341","1670","101","0","0" +"14396","566","11","530","-303","1540","101","0","0" +"14397","566","12","530","-320","1391","101","0","0" +"14398","566","13","530","-379","1283","101","0","0" +"14399","566","14","530","-420","1208","101","0","0" +"14400","566","15","530","-395","1080","101","0","0" +"14401","566","16","530","-390","1020","101","0","0" +"14402","566","17","530","-362","1007","88","0","0" +"14403","566","18","530","-336","1015","60","0","0" +"14404","567","0","530","225","2634","88","0","0" +"14405","567","1","530","215","2639","91","0","0" +"14406","567","2","530","157","2664","104","0","0" +"14407","567","3","530","102","2673","106","0","0" +"14408","567","4","530","39","2600","106","0","0" +"14409","567","5","530","58","2342","106","0","0" +"14410","567","6","530","75","2222","119","0","0" +"14411","567","7","530","46","2061","119","0","0" +"14412","567","8","530","-135","1908","119","0","0" +"14413","567","9","530","-76","1766","119","0","0" +"14414","567","10","530","31","1650","119","0","0" +"14415","567","11","530","13","1509","119","0","0" +"14416","567","12","530","-137","1308","67","0","0" +"14417","567","13","530","-111","1209","73","0","0" +"14418","567","14","530","-82","1109","80","0","0" +"14419","567","15","530","-87","1068","80","0","0" +"14420","567","16","530","-110","1025","72","0","0" +"14421","567","17","530","-170","1019","65","0","0" +"14422","567","18","530","-180","1026","56","0","0" +"14425","568","0","530","3082","3595","145","0","0" +"14426","568","1","530","3103","3591","153","0","0" +"14427","568","2","530","3132","3586","161","0","0" +"14428","568","3","530","3193","3590","166","0","0" +"14429","568","4","530","3257","3666","166","0","0" +"14430","568","5","530","3203","3866","209","0","0" +"14431","568","6","530","3067","4130","198","0","0" +"14432","568","7","530","2966","4384","258","0","0" +"14433","568","8","530","2909","4577","343","0","0" +"14434","568","9","530","2932","5199","328","0","0" +"14435","568","10","530","2803","6033","260","0","0" +"14436","568","11","530","2632","6499","159","0","0" +"14437","568","12","530","2466","6748","166","0","0" +"14438","568","13","530","2233","6818","191","0","0" +"14439","568","14","530","2183","6793","185","0","0" +"14454","569","0","530","2183","6793","184","0","0" +"14453","569","1","530","2187","6784","187","0","0" +"14452","569","2","530","2210","6736","195","0","0" +"14451","569","3","530","2266","6633","190","0","0" +"14450","569","4","530","2343","6482","190","0","0" +"14449","569","5","530","2566","6033","219","0","0" +"14448","569","6","530","2827","5322","309","0","0" +"14447","569","7","530","2837","4799","335","0","0" +"14446","569","8","530","2701","4201","238","0","0" +"14445","569","9","530","2700","3966","216","0","0" +"14444","569","10","530","2833","3740","200","0","0" +"14443","569","11","530","2985","3607","177","0","0" +"15526","569","12","530","3082","3596","147","0","0" +"14472","570","0","530","2182","6793","184","0","0" +"14471","570","1","530","2184","6783","187","0","0" +"14470","570","2","530","2186","6745","195","0","0" +"14469","570","3","530","2178","6683","204","0","0" +"14468","570","4","530","2114","6602","214","0","0" +"14467","570","5","530","1932","6566","227","0","0" +"14466","570","6","530","1683","6452","307","0","0" +"14465","570","7","530","1385","6336","536","0","0" +"14464","570","8","530","1032","6359","547","0","0" +"14463","570","9","530","700","6334","422","0","0" +"14462","570","10","530","533","6332","324","0","0" +"14461","570","11","530","420","6252","230","0","0" +"14460","570","12","530","330","6185","185","0","0" +"14459","570","13","530","242","6108","156","0","0" +"15351","570","14","530","217","6061","150","0","0" +"14473","571","0","530","-1261","7133","58","0","0" +"14474","571","1","530","-1255","7123","61","0","0" +"14475","571","2","530","-1246","7109","64","0","0" +"14476","571","3","530","-1229","7073","71","0","0" +"14477","571","4","530","-1246","7006","70","0","0" +"14478","571","5","530","-1289","6766","85","0","0" +"14479","571","6","530","-1333","6533","116","0","0" +"14480","571","7","530","-1433","6401","158","0","0" +"14481","571","8","530","-1765","6200","246","0","0" +"14482","571","9","530","-1882","5948","264","0","0" +"14483","571","10","530","-1950","5667","143","0","0" +"14484","571","11","530","-2021","5463","87","0","0" +"14485","571","12","530","-1998","5362","47","0","0" +"14486","571","13","530","-1906","5311","14","0","0" +"14487","571","14","530","-1837","5302","-10","0","0" +"14502","572","0","530","-1837","5302","-11","0","0" +"14501","572","1","530","-1826","5308","-8","0","0" +"14500","572","2","530","-1809","5316","-4","0","0" +"14499","572","3","530","-1769","5346","12","0","0" +"14498","572","4","530","-1691","5443","73","0","0" +"14497","572","5","530","-1703","5621","156","0","0" +"14496","572","6","530","-1844","5927","248","0","0" +"14495","572","7","530","-1800","6333","157","0","0" +"14494","572","8","530","-1710","6802","52","0","0" +"14493","572","9","530","-1633","7131","36","0","0" +"14492","572","10","530","-1466","7218","47","0","0" +"14491","572","11","530","-1366","7215","63","0","0" +"14490","572","12","530","-1300","7172","65","0","0" +"14489","572","13","530","-1261","7133","59","0","0" +"14503","573","0","530","-586","4100","92","0","0" +"14504","573","1","530","-599","4099","96","0","0" +"14505","573","2","530","-628","4103","100","0","0" +"14506","573","3","530","-686","4125","101","0","0" +"14507","573","4","530","-800","4200","119","0","0" +"14508","573","5","530","-1076","4410","257","0","0" +"14509","573","6","530","-1233","4516","273","0","0" +"14510","573","7","530","-1359","4606","200","0","0" +"14511","573","8","530","-1585","4675","51","0","0" +"14512","573","9","530","-1765","4798","34","0","0" +"14513","573","10","530","-1919","4902","34","0","0" +"14514","573","11","530","-1963","5001","39","0","0" +"14515","573","12","530","-1966","5130","33","0","0" +"14516","573","13","530","-1933","5227","25","0","0" +"14517","573","14","530","-1889","5293","6","0","0" +"14518","573","15","530","-1837","5302","-10","0","0" +"14534","574","0","530","-1837","5302","-11","0","0" +"14533","574","1","530","-1818","5310","-6","0","0" +"14532","574","2","530","-1794","5315","0","0","0" +"14531","574","3","530","-1684","5305","21","0","0" +"14530","574","4","530","-1500","5234","52","0","0" +"14529","574","5","530","-1319","5058","112","0","0" +"14528","574","6","530","-1199","4799","182","0","0" +"14527","574","7","530","-1099","4502","269","0","0" +"14526","574","8","530","-701","4399","196","0","0" +"14525","574","9","530","-433","4334","144","0","0" +"14524","574","10","530","-399","4233","141","0","0" +"14523","574","11","530","-465","4134","125","0","0" +"14522","574","12","530","-530","4101","112","0","0" +"14521","574","13","530","-586","4100","93","0","0" +"14560","575","0","530","228","2631","88","0","0" +"14559","575","1","530","211","2641","96","0","0" +"14558","575","2","530","191","2652","104","0","0" +"14557","575","3","530","147","2673","105","0","0" +"14556","575","4","530","36","2717","101","0","0" +"14555","575","5","530","-99","2765","84","0","0" +"14554","575","6","530","-299","2864","73","0","0" +"14553","575","7","530","-599","3031","49","0","0" +"14552","575","8","530","-1078","3285","105","0","0" +"14551","575","9","530","-1254","3352","139","0","0" +"14550","575","10","530","-1466","3499","129","0","0" +"14549","575","11","530","-1736","3819","156","0","0" +"14548","575","12","530","-2073","4004","154","0","0" +"14547","575","13","530","-2609","4060","143","0","0" +"14546","575","14","530","-2776","4244","151","0","0" +"14545","575","15","530","-2767","4336","105","0","0" +"14544","575","16","530","-2672","4395","59","0","0" +"14543","575","17","530","-2599","4405","51","0","0" +"17767","575","18","530","-2566","4424","41","0","0" +"14562","576","0","530","-1837","5302","-11","0","0" +"14563","576","1","530","-1820","5307","-8","0","0" +"14564","576","2","530","-1798","5314","-4","0","0" +"14565","576","3","530","-1755","5317","3","0","0" +"14566","576","4","530","-1629","5305","20","0","0" +"14567","576","5","530","-1504","5231","42","0","0" +"14568","576","6","530","-1417","5182","83","0","0" +"14569","576","7","530","-1242","5266","60","0","0" +"14570","576","8","530","-1072","5420","53","0","0" +"14571","576","9","530","-919","5540","71","0","0" +"14572","576","10","530","-808","5664","74","0","0" +"14573","576","11","530","-577","5933","69","0","0" +"14574","576","12","530","-440","6248","69","0","0" +"14575","576","13","530","-138","6818","69","0","0" +"14576","576","14","530","-100","7133","95","0","0" +"14577","576","15","530","-111","7333","69","0","0" +"14578","576","16","530","-166","7484","69","0","0" +"14579","576","17","530","-166","7630","63","0","0" +"14580","576","18","530","-119","7766","63","0","0" +"14581","576","19","530","66","7933","68","0","0" +"14582","576","20","530","170","7940","56","0","0" +"14583","576","21","530","216","7917","46","0","0" +"14584","576","22","530","232","7866","33","0","0" +"14585","576","23","530","220","7814","24","0","0" +"14609","577","0","530","220","7814","23","0","0" +"14608","577","1","530","232","7827","28","0","0" +"14607","577","2","530","251","7847","34","0","0" +"14606","577","3","530","309","7900","44","0","0" +"14605","577","4","530","374","7891","49","0","0" +"14604","577","5","530","428","7799","57","0","0" +"14603","577","6","530","477","7666","66","0","0" +"14602","577","7","530","365","7395","52","0","0" +"14601","577","8","530","191","7031","66","0","0" +"14600","577","9","530","27","6816","91","0","0" +"14599","577","10","530","-297","6370","73","0","0" +"14598","577","11","530","-578","5933","60","0","0" +"14597","577","12","530","-813","5634","70","0","0" +"14596","577","13","530","-900","5533","73","0","0" +"14595","577","14","530","-1117","5300","65","0","0" +"14594","577","15","530","-1281","5090","72","0","0" +"14593","577","16","530","-1459","5000","32","0","0" +"14592","577","17","530","-1675","5094","36","0","0" +"14591","577","18","530","-1926","5121","37","0","0" +"14590","577","19","530","-1948","5211","28","0","0" +"14589","577","20","530","-1890","5294","10","0","0" +"14588","577","21","530","-1837","5302","-10","0","0" +"14610","578","0","530","2447","6019","155","0","0" +"14611","578","1","530","2447","6008","158","0","0" +"14612","578","2","530","2446","5993","162","0","0" +"14613","578","3","530","2449","5978","165","0","0" +"14614","578","4","530","2467","5951","171","0","0" +"14615","578","5","530","2502","5941","177","0","0" +"14616","578","6","530","2576","5981","185","0","0" +"14617","578","7","530","2600","6066","178","0","0" +"14618","578","8","530","2533","6233","165","0","0" +"14619","578","9","530","2199","6300","181","0","0" +"14620","578","10","530","1733","6340","353","0","0" +"14621","578","11","530","1476","6309","486","0","0" +"14622","578","12","530","1167","6354","539","0","0" +"14623","578","13","530","1000","6351","539","0","0" +"14624","578","14","530","634","6498","445","0","0" +"14625","578","15","530","433","6800","241","0","0" +"14626","578","16","530","235","7166","115","0","0" +"14627","578","17","530","66","7333","91","0","0" +"14628","578","18","530","14","7526","79","0","0" +"14629","578","19","530","17","7700","81","0","0" +"14630","578","20","530","23","7866","80","0","0" +"14631","578","21","530","100","7934","65","0","0" +"14632","578","22","530","179","7932","50","0","0" +"14633","578","23","530","218","7900","41","0","0" +"15509","578","24","530","231","7859","34","0","0" +"15510","578","25","530","219","7817","24","0","0" +"14657","579","0","530","219","7817","23","0","0" +"14656","579","1","530","230","7827","26","0","0" +"14655","579","2","530","242","7839","28","0","0" +"14654","579","3","530","263","7859","34","0","0" +"14653","579","4","530","311","7891","44","0","0" +"14652","579","5","530","392","7882","41","0","0" +"14651","579","6","530","431","7798","59","0","0" +"14650","579","7","530","499","7600","67","0","0" +"14649","579","8","530","598","7201","236","0","0" +"14648","579","9","530","732","6965","328","0","0" +"14647","579","10","530","999","6717","507","0","0" +"14646","579","11","530","1193","6597","582","0","0" +"14645","579","12","530","1365","6528","538","0","0" +"14658","579","13","530","1766","6399","319","0","0" +"14659","579","14","530","1999","6365","237","0","0" +"14660","579","15","530","2233","6200","216","0","0" +"14661","579","16","530","2335","6111","193","0","0" +"14662","579","17","530","2400","6054","164","0","0" +"14663","579","18","530","2446","6019","156","0","0" +"14664","580","0","530","3082","3596","147","0","0" +"14665","580","1","530","3103","3589","154","0","0" +"14666","580","2","530","3133","3585","160","0","0" +"14667","580","3","530","3181","3614","164","0","0" +"14668","580","4","530","3200","3733","184","0","0" +"14669","580","5","530","3214","3886","216","0","0" +"14670","580","6","530","3068","4329","236","0","0" +"14671","580","7","530","2932","4575","336","0","0" +"14672","580","8","530","2868","5127","324","0","0" +"14673","580","9","530","2799","5599","280","0","0" +"14674","580","10","530","2767","6032","181","0","0" +"14675","580","11","530","2599","6168","182","0","0" +"14676","580","12","530","2400","6166","182","0","0" +"14677","580","13","530","2367","6100","171","0","0" +"14678","580","14","530","2400","6053","164","0","0" +"14679","580","15","530","2444","6019","156","0","0" +"14695","581","0","530","2444","6019","155","0","0" +"14694","581","1","530","2444","5999","162","0","0" +"14693","581","2","530","2450","5978","168","0","0" +"14692","581","3","530","2476","5947","176","0","0" +"14691","581","4","530","2589","5962","176","0","0" +"14690","581","5","530","2715","5800","206","0","0" +"14689","581","6","530","2599","5334","321","0","0" +"14688","581","7","530","2543","5033","311","0","0" +"14687","581","8","530","2550","4433","249","0","0" +"14686","581","9","530","2601","4133","220","0","0" +"14685","581","10","530","2696","3911","202","0","0" +"14684","581","11","530","2859","3694","211","0","0" +"14683","581","12","530","2943","3608","185","0","0" +"15527","581","13","530","3082","3596","146","0","0" +"14696","582","0","530","-331","1014","57","0","0" +"14697","582","1","530","-369","1010","69","0","0" +"14698","582","2","530","-385","1033","74","0","0" +"14699","582","3","530","-388","1086","72","0","0" +"14700","582","4","530","-381","1131","72","0","0" +"14701","582","5","530","-368","1299","72","0","0" +"14702","582","6","530","-341","1585","99","0","0" +"14703","582","7","530","-326","1829","149","0","0" +"14704","582","8","530","-232","2049","157","0","0" +"14705","582","9","530","-134","2334","157","0","0" +"14706","582","10","530","-100","2666","157","0","0" +"14707","582","11","530","-66","2966","86","0","0" +"14708","582","12","530","-33","3333","86","0","0" +"14709","582","13","530","100","3600","166","0","0" +"14710","582","14","530","245","3799","208","0","0" +"14711","582","15","530","233","3966","168","0","0" +"14712","582","16","530","201","4134","149","0","0" +"14713","582","17","530","199","4217","130","0","0" +"14714","582","18","530","199","4242","124","0","0" +"14722","583","0","530","-175","1023","56","0","0" +"14723","583","1","530","-145","1010","68","0","0" +"14724","583","2","530","-99","1044","70","0","0" +"14725","583","3","530","-82","1083","76","0","0" +"14726","583","4","530","-44","1175","85","0","0" +"14727","583","5","530","10","1309","85","0","0" +"14728","583","6","530","-23","1522","85","0","0" +"14729","583","7","530","46","1694","85","0","0" +"14730","583","8","530","113","1832","85","0","0" +"14731","583","9","530","222","2150","85","0","0" +"14732","583","10","530","223","2307","93","0","0" +"14733","583","11","530","47","2594","106","0","0" +"14734","583","12","530","-7","2815","106","0","0" +"14735","583","13","530","-65","3056","106","0","0" +"14736","583","14","530","-132","3311","97","0","0" +"14737","583","15","530","-193","3473","97","0","0" +"14738","583","16","530","-392","3573","50","0","0" +"14739","583","17","530","-469","3588","39","0","0" +"14740","583","18","530","-518","3617","39","0","0" +"14741","583","19","530","-494","3730","49","0","0" +"14742","583","20","530","-523","3783","47","0","0" +"14743","583","21","530","-504","3901","79","0","0" +"14744","583","22","530","-478","3982","95","0","0" +"14745","583","23","530","-475","4072","107","0","0" +"14746","583","24","530","-532","4116","113","0","0" +"14747","583","25","530","-585","4098","95","0","0" +"14748","583","26","530","-590","4099","93","0","0" +"14754","584","0","530","-37","2121","117","0","0" +"14755","584","1","530","-97","2057","123","0","0" +"14756","584","2","530","-164","2002","134","0","0" +"14757","584","3","530","-210","1871","131","0","0" +"14758","584","4","530","-198","1663","134","0","0" +"14759","584","5","530","-236","1603","85","0","0" +"14760","584","6","530","-274","1545","48","0","0" +"14761","584","7","530","-291","1458","40","0","0" +"14762","584","8","530","-362","1485","40","0","0" +"14763","584","9","530","-329","1522","56","0","0" +"14764","584","10","530","-288","1552","59","0","0" +"14765","584","11","530","-185","1520","47","0","0" +"14766","584","12","530","-147","1483","49","0","0" +"14767","584","13","530","-90","1455","38","0","0" +"14768","584","14","530","-71","1490","38","0","0" +"14769","584","15","530","-126","1527","53","0","0" +"14770","584","16","530","-144","1594","71","0","0" +"14771","584","17","530","-149","1682","135","0","0" +"14772","584","18","530","-169","1869","136","0","0" +"14773","584","19","530","-116","2048","147","0","0" +"15525","584","20","530","-39","2122","117","0","0" +"14777","585","0","530","-649","1860","79","0","0" +"14778","585","1","530","-545","1824","91","0","0" +"14779","585","2","530","-344","1638","99","0","0" +"14780","585","3","530","-314","1571","65","0","0" +"14781","585","4","530","-276","1517","59","0","0" +"14782","585","5","530","-296","1468","63","0","0" +"14783","585","6","530","-352","1476","63","0","0" +"14784","585","7","530","-359","1576","110","0","0" +"14785","585","8","530","-283","1544","61","0","0" +"14786","585","9","530","-249","1534","53","0","0" +"14787","585","10","530","-185","1519","45","0","0" +"14788","585","11","530","-105","1540","56","0","0" +"14789","585","12","530","-65","1535","51","0","0" +"14790","585","13","530","-64","1497","51","0","0" +"14791","585","14","530","-120","1490","51","0","0" +"14792","585","15","530","-271","1524","47","0","0" +"14793","585","16","530","-335","1623","83","0","0" +"14794","585","17","530","-461","1829","111","0","0" +"14795","585","18","530","-571","1963","111","0","0" +"14796","585","19","530","-673","1858","68","0","0" +"14831","587","0","530","-28","2124","114","0","0" +"14832","587","1","530","-45","2072","130","0","0" +"14833","587","2","530","92","2002","159","0","0" +"14834","587","3","530","309","1966","159","0","0" +"14835","587","4","530","615","1876","169","0","0" +"14836","587","5","530","658","1728","140","0","0" +"14837","587","6","530","759","1731","145","0","0" +"14838","587","7","530","757","1881","181","0","0" +"14839","587","8","530","865","1872","183","0","0" +"14852","587","9","530","859","1683","142","0","0" +"15468","587","10","530","975","1681","140","0","0" +"15469","587","11","530","988","1876","166","0","0" +"15470","587","12","530","1171","1864","165","0","0" +"15722","587","13","530","1127","1684","126","0","0" +"15723","587","14","530","720","1727","149","0","0" +"15724","587","15","530","346","1984","174","0","0" +"15725","587","16","530","170","2093","174","0","0" +"15726","587","17","530","40","2165","174","0","0" +"15727","587","18","530","-9","2192","151","0","0" +"15728","587","19","530","-28","2168","133","0","0" +"15729","587","20","530","-29","2122","113","0","0" +"14897","589","0","530","298","1500","-14","0","0" +"14898","589","1","530","316","1492","-1","0","0" +"14899","589","2","530","337","1480","13","0","0" +"14900","589","3","530","348","1466","20","0","0" +"14901","589","4","530","354","1431","28","0","0" +"14902","589","5","530","337","1402","32","0","0" +"14903","589","6","530","302","1399","36","0","0" +"14904","589","7","530","272","1418","45","0","0" +"14905","589","8","530","250","1453","57","0","0" +"14906","589","9","530","263","1491","72","0","0" +"14907","589","10","530","329","1583","97","0","0" +"15646","589","11","530","586","1848","169","0","0" +"15647","589","12","530","712","1842","172","0","0" +"15648","589","13","530","721","1704","142","0","0" +"15649","589","14","530","843","1711","139","0","0" +"15650","589","15","530","819","1858","179","0","0" +"15651","589","16","530","939","1865","174","0","0" +"15652","589","17","530","916","1698","127","0","0" +"15653","589","18","530","1032","1691","135","0","0" +"15654","589","19","530","1039","1878","180","0","0" +"15655","589","20","530","1146","1853","173","0","0" +"15656","589","21","530","1109","1750","144","0","0" +"15657","589","22","530","659","1762","137","0","0" +"15658","589","23","530","299","1500","-13","0","0" +"14973","590","0","530","4156","2959","353","0","0" +"14974","590","1","530","4141","2974","359","0","0" +"14975","590","2","530","4130","2989","363","0","0" +"14976","590","3","530","4086","3044","372","0","0" +"14977","590","4","530","3966","3165","342","0","0" +"14978","590","5","530","3801","3339","269","0","0" +"14979","590","6","530","3533","3519","208","0","0" +"14980","590","7","530","3279","3687","194","0","0" +"14981","590","8","530","2936","3997","215","0","0" +"14982","590","9","530","2847","4031","264","0","0" +"14983","590","10","530","2740","4226","280","0","0" +"14984","590","11","530","2746","4427","298","0","0" +"14985","590","12","530","2879","4744","304","0","0" +"14986","590","13","530","2920","4964","304","0","0" +"14987","590","14","530","2908","5178","305","0","0" +"14988","590","15","530","2905","5289","306","0","0" +"14989","590","16","530","2919","5479","257","0","0" +"14990","590","17","530","2866","5666","221","0","0" +"14991","590","18","530","2666","6020","210","0","0" +"14992","590","19","530","2500","6167","206","0","0" +"14993","590","20","530","2393","6166","192","0","0" +"14994","590","21","530","2370","6097","177","0","0" +"14995","590","22","530","2407","6030","164","0","0" +"14996","590","23","530","2442","6012","158","0","0" +"14954","591","0","530","-3060","756","-8","0","0" +"14955","591","1","530","-3055","765","-6","0","0" +"14956","591","2","530","-3051","779","-4","0","0" +"14957","591","3","530","-3054","802","-2","0","0" +"14958","591","4","530","-3063","829","-1","0","0" +"14959","591","5","530","-3091","868","0","0","0" +"14960","591","6","530","-3123","942","17","0","0" +"14961","591","7","530","-3116","1026","28","0","0" +"14962","591","8","530","-3087","1092","43","0","0" +"14963","591","9","530","-3096","1197","69","0","0" +"14964","591","10","530","-3193","1369","80","0","0" +"14965","591","11","530","-3061","1612","68","0","0" +"14966","591","12","530","-3084","1835","156","0","0" +"14967","591","13","530","-3058","2163","122","0","0" +"14968","591","14","530","-2961","2340","63","0","0" +"14969","591","15","530","-2944","2451","94","0","0" +"14970","591","16","530","-2963","2521","88","0","0" +"14971","591","17","530","-2997","2550","85","0","0" +"14972","591","18","530","-3012","2558","81","0","0" +"15038","592","0","530","2442","6012","158","0","0" +"15037","592","1","530","2403","5999","164","0","0" +"15036","592","2","530","2343","5979","175","0","0" +"15035","592","3","530","2288","6001","175","0","0" +"15034","592","4","530","2282","6057","175","0","0" +"15033","592","5","530","2389","6146","192","0","0" +"15032","592","6","530","2535","6183","223","0","0" +"15031","592","7","530","2635","6175","203","0","0" +"15030","592","8","530","2719","6046","202","0","0" +"15029","592","9","530","2737","5882","202","0","0" +"15028","592","10","530","2819","5681","206","0","0" +"15027","592","11","530","2878","5597","196","0","0" +"15026","592","12","530","2920","5495","203","0","0" +"15025","592","13","530","2938","5333","306","0","0" +"15024","592","14","530","3003","5020","332","0","0" +"15023","592","15","530","2966","4820","315","0","0" +"15022","592","16","530","2923","4692","302","0","0" +"15021","592","17","530","2814","4418","259","0","0" +"15020","592","18","530","2876","4296","261","0","0" +"15019","592","19","530","3020","4294","259","0","0" +"15018","592","20","530","3125","4108","224","0","0" +"15017","592","21","530","3368","3865","241","0","0" +"15016","592","22","530","3633","3533","260","0","0" +"15015","592","23","530","3839","3266","302","0","0" +"15014","592","24","530","3967","3066","331","0","0" +"15013","592","25","530","4007","2912","347","0","0" +"15012","592","26","530","4117","2893","362","0","0" +"15011","592","27","530","4153","2930","362","0","0" +"15010","592","28","530","4157","2961","354","0","0" +"15058","593","0","530","2184","6794","184","0","0" +"15059","593","1","530","2186","6776","189","0","0" +"15060","593","2","530","2192","6745","195","0","0" +"15061","593","3","530","2213","6683","197","0","0" +"15062","593","4","530","2294","6527","203","0","0" +"15063","593","5","530","2406","6367","200","0","0" +"15064","593","6","530","2566","6166","200","0","0" +"15065","593","7","530","2780","5775","210","0","0" +"15066","593","8","530","2908","5533","247","0","0" +"15067","593","9","530","3033","5200","310","0","0" +"15068","593","10","530","3200","4999","318","0","0" +"15069","593","11","530","3245","4788","356","0","0" +"15070","593","12","530","3299","4600","356","0","0" +"15071","593","13","530","3366","4433","294","0","0" +"15072","593","14","530","3518","4032","173","0","0" +"15073","593","15","530","3567","3800","157","0","0" +"15074","593","16","530","3833","3500","161","0","0" +"15075","593","17","530","3921","3367","200","0","0" +"15076","593","18","530","3946","3166","252","0","0" +"15077","593","19","530","4004","2929","364","0","0" +"15078","593","20","530","4123","2889","364","0","0" +"15079","593","21","530","4154","2933","364","0","0" +"15080","593","22","530","4158","2959","355","0","0" +"15057","594","0","530","-3012","2558","81","0","0" +"15056","594","1","530","-3019","2563","83","0","0" +"15055","594","2","530","-3037","2570","89","0","0" +"15054","594","3","530","-3060","2574","93","0","0" +"15053","594","4","530","-3101","2574","95","0","0" +"15052","594","5","530","-3139","2563","95","0","0" +"15051","594","6","530","-3177","2523","93","0","0" +"15050","594","7","530","-3209","2417","93","0","0" +"15049","594","8","530","-3241","2272","93","0","0" +"15048","594","9","530","-3253","2142","93","0","0" +"15047","594","10","530","-3277","2052","85","0","0" +"15046","594","11","530","-3334","1984","63","0","0" +"15045","594","12","530","-3391","1937","97","0","0" +"15044","594","13","530","-3437","1901","103","0","0" +"15043","594","14","530","-3489","1862","103","0","0" +"15042","594","15","530","-3563","1811","96","0","0" +"15041","594","16","530","-3585","1627","62","0","0" +"15040","594","17","530","-3378","1543","63","0","0" +"15039","594","18","530","-3242","1453","78","0","0" +"15100","594","19","530","-3146","1345","90","0","0" +"15101","594","20","530","-3115","1169","90","0","0" +"15102","594","21","530","-3213","989","83","0","0" +"15103","594","22","530","-3202","888","68","0","0" +"15104","594","23","530","-3126","872","44","0","0" +"15105","594","24","530","-3094","846","19","0","0" +"15106","594","25","530","-3068","804","6","0","0" +"15107","594","26","530","-3061","764","-4","0","0" +"15108","594","27","530","-3061","747","-7","0","0" +"15109","595","0","530","-3058","747","-9","0","0" +"15110","595","1","530","-3050","738","-7","0","0" +"15111","595","2","530","-3042","724","-5","0","0" +"15112","595","3","530","-3033","695","0","0","0" +"15113","595","4","530","-3047","662","6","0","0" +"15114","595","5","530","-3095","658","18","0","0" +"15115","595","6","530","-3151","695","31","0","0" +"15116","595","7","530","-3214","773","43","0","0" +"15117","595","8","530","-3233","894","62","0","0" +"15118","595","9","530","-3243","943","62","0","0" +"15119","595","10","530","-3296","998","62","0","0" +"15120","595","11","530","-3337","1059","62","0","0" +"15121","595","12","530","-3371","1152","69","0","0" +"15122","595","13","530","-3336","1239","99","0","0" +"15123","595","14","530","-3250","1306","99","0","0" +"15124","595","15","530","-3253","1466","99","0","0" +"15125","595","16","530","-3317","1660","114","0","0" +"15126","595","17","530","-3465","1797","128","0","0" +"15127","595","18","530","-3535","1843","121","0","0" +"15128","595","19","530","-3595","1880","86","0","0" +"15129","595","20","530","-3715","1978","107","0","0" +"15130","595","21","530","-3814","2022","113","0","0" +"15131","595","22","530","-3882","2052","113","0","0" +"15132","595","23","530","-3935","2122","119","0","0" +"15133","595","24","530","-3956","2155","127","0","0" +"15134","595","25","530","-3960","2209","127","0","0" +"15135","595","26","530","-3988","2241","131","0","0" +"15136","595","27","530","-4035","2229","128","0","0" +"15137","595","28","530","-4045","2193","123","0","0" +"15138","595","29","530","-4032","2176","118","0","0" +"15139","595","30","530","-4008","2164","113","0","0" +"15140","595","31","530","-3995","2159","109","0","0" +"15141","595","32","530","-3986","2157","107","0","0" +"15208","598","0","530","-3989","2154","105","0","0" +"15209","598","1","530","-3975","2157","112","0","0" +"15210","598","2","530","-3957","2161","118","0","0" +"15211","598","3","530","-3922","2174","131","0","0" +"15212","598","4","530","-3816","2194","119","0","0" +"15213","598","5","530","-3708","2217","119","0","0" +"15214","598","6","530","-3625","2168","119","0","0" +"15215","598","7","530","-3601","2081","102","0","0" +"15216","598","8","530","-3586","1964","67","0","0" +"15217","598","9","530","-3593","1856","57","0","0" +"15218","598","10","530","-3598","1766","48","0","0" +"15219","598","11","530","-3592","1703","48","0","0" +"15220","598","12","530","-3602","1638","56","0","0" +"15221","598","13","530","-3646","1583","64","0","0" +"15222","598","14","530","-3694","1550","64","0","0" +"15223","598","15","530","-3765","1506","81","0","0" +"15224","598","16","530","-3799","1465","94","0","0" +"15225","598","17","530","-3798","1391","109","0","0" +"15226","598","18","530","-3782","1232","112","0","0" +"15227","598","19","530","-3701","1138","108","0","0" +"15228","598","20","530","-3590","1154","83","0","0" +"15229","598","21","530","-3499","1134","31","0","0" +"15230","598","22","530","-3477","1040","17","0","0" +"15231","598","23","530","-3476","909","6","0","0" +"15232","598","24","530","-3456","865","6","0","0" +"15233","598","25","530","-3430","846","6","0","0" +"15234","598","26","530","-3377","827","6","0","0" +"15235","598","27","530","-3290","826","6","0","0" +"15236","598","28","530","-3229","811","6","0","0" +"15237","598","29","530","-3169","788","6","0","0" +"15238","598","30","530","-3123","784","9","0","0" +"15239","598","31","530","-3090","775","2","0","0" +"15240","598","32","530","-3077","771","-1","0","0" +"15241","598","33","530","-3069","764","-3","0","0" +"15242","598","34","530","-3065","755","-5","0","0" +"15243","598","35","530","-3063","748","-7","0","0" +"15307","600","0","530","4159","2957","352","0","0" +"15306","600","1","530","4142","2972","361","0","0" +"15305","600","2","530","4126","2991","369","0","0" +"15304","600","3","530","4091","3042","372","0","0" +"15303","600","4","530","3970","3163","353","0","0" +"15302","600","5","530","3820","3366","281","0","0" +"15301","600","6","530","3566","3600","161","0","0" +"15300","600","7","530","3466","3899","179","0","0" +"15299","600","8","530","3433","4166","201","0","0" +"15298","600","9","530","3348","4424","269","0","0" +"15297","600","10","530","3220","4835","423","0","0" +"15296","600","11","530","3067","5198","373","0","0" +"15295","600","12","530","2899","5803","273","0","0" +"15294","600","13","530","2766","6166","213","0","0" +"15293","600","14","530","2669","6431","171","0","0" +"15292","600","15","530","2600","6599","171","0","0" +"15291","600","16","530","2499","6700","171","0","0" +"15290","600","17","530","2379","6758","171","0","0" +"15289","600","18","530","2255","6801","190","0","0" +"15288","600","19","530","2209","6806","194","0","0" +"15287","600","20","530","2186","6794","189","0","0" +"15308","601","0","530","-1316","2358","96","0","0" +"15334","601","1","530","-1300","2366","103","0","0" +"15335","601","2","530","-1266","2366","105","0","0" +"15336","601","3","530","-1233","2366","96","0","0" +"15337","601","4","530","-1067","2366","36","0","0" +"15338","601","5","530","-899","2333","15","0","0" +"15339","601","6","530","-766","2266","13","0","0" +"15340","601","7","530","-633","2266","45","0","0" +"15341","601","8","530","-466","2299","60","0","0" +"15342","601","9","530","-266","2300","74","0","0" +"15343","601","10","530","-132","2300","81","0","0" +"15344","601","11","530","66","2299","95","0","0" +"15345","601","12","530","199","2366","82","0","0" +"15346","601","13","530","232","2467","109","0","0" +"15347","601","14","530","243","2558","110","0","0" +"15348","601","15","530","238","2609","101","0","0" +"15349","601","16","530","229","2634","90","0","0" +"15370","602","0","530","229","2634","91","0","0" +"15371","602","1","530","216","2640","95","0","0" +"15372","602","2","530","188","2652","102","0","0" +"15373","602","3","530","132","2677","110","0","0" +"15374","602","4","530","66","2696","109","0","0" +"15375","602","5","530","-65","2732","80","0","0" +"15376","602","6","530","-332","2733","42","0","0" +"15377","602","7","530","-467","2733","73","0","0" +"15378","602","8","530","-565","2766","96","0","0" +"15379","602","9","530","-666","2866","71","0","0" +"15380","602","10","530","-766","2899","42","0","0" +"15381","602","11","530","-932","2900","34","0","0" +"15382","602","12","530","-1033","2866","23","0","0" +"15383","602","13","530","-1166","2699","17","0","0" +"15384","602","14","530","-1233","2599","46","0","0" +"15385","602","15","530","-1307","2465","91","0","0" +"15386","602","16","530","-1317","2358","91","0","0" +"15369","603","0","530","217","6061","149","0","0" +"15368","603","1","530","212","6049","152","0","0" +"15367","603","2","530","206","6018","155","0","0" +"15366","603","3","530","220","5980","157","0","0" +"15365","603","4","530","292","5942","163","0","0" +"15364","603","5","530","365","5984","164","0","0" +"15363","603","6","530","476","6232","190","0","0" +"15362","603","7","530","666","6499","331","0","0" +"15361","603","8","530","886","6693","460","0","0" +"15360","603","9","530","1175","6733","578","0","0" +"15359","603","10","530","1335","6717","559","0","0" +"15358","603","11","530","1499","6748","410","0","0" +"15357","603","12","530","1599","6768","270","0","0" +"15356","603","13","530","1705","6800","182","0","0" +"15355","603","14","530","1899","6833","164","0","0" +"15389","603","15","530","2067","6852","191","0","0" +"15390","603","16","530","2119","6843","194","0","0" +"15391","603","17","530","2169","6807","191","0","0" +"15392","603","18","530","2182","6793","184","0","0" +"15393","604","0","530","-31","2125","112","0","0" +"15394","604","1","530","-37","2125","114","0","0" +"15395","604","2","530","-43","2126","116","0","0" +"15396","604","3","530","-53","2127","120","0","0" +"15397","604","4","530","-65","2126","125","0","0" +"15398","604","5","530","-77","2123","131","0","0" +"15399","604","6","530","-97","2122","142","0","0" +"15400","604","7","530","-121","2123","151","0","0" +"15401","604","8","530","-147","2125","159","0","0" +"15402","604","9","530","-194","2131","160","0","0" +"15403","604","10","530","-249","2139","160","0","0" +"15404","604","11","530","-304","2164","160","0","0" +"15405","604","12","530","-343","2190","160","0","0" +"15406","604","13","530","-391","2225","164","0","0" +"15407","604","14","530","-443","2227","164","0","0" +"15408","604","15","530","-502","2212","160","0","0" +"15409","604","16","530","-579","2241","160","0","0" +"15410","604","17","530","-640","2271","162","0","0" +"15411","604","18","530","-696","2275","158","0","0" +"15412","604","19","530","-760","2276","155","0","0" +"15413","604","20","530","-822","2280","153","0","0" +"15414","604","21","530","-889","2292","153","0","0" +"15415","604","22","530","-928","2315","153","0","0" +"15416","604","23","530","-980","2338","154","0","0" +"15417","604","24","530","-1030","2350","153","0","0" +"15418","604","25","530","-1063","2349","150","0","0" +"15419","604","26","530","-1121","2356","145","0","0" +"15420","604","27","530","-1163","2374","140","0","0" +"15421","604","28","530","-1201","2380","124","0","0" +"15422","604","29","530","-1246","2386","90","0","0" +"15423","604","30","530","-1278","2397","89","0","0" +"15424","604","31","530","-1296","2392","90","0","0" +"15425","604","32","530","-1310","2380","90","0","0" +"15426","604","33","530","-1318","2361","90","0","0" +"15472","605","0","1","-8163","-4798","45","0","0" +"15473","605","1","1","-8168","-4833","42","0","0" +"15474","605","2","1","-8181","-4861","35","0","0" +"15475","605","3","1","-8173","-4889","35","0","0" +"15476","605","4","1","-8137","-4897","28","0","0" +"15477","605","5","1","-8104","-4900","27","0","0" +"15478","605","6","1","-8085","-4885","18","0","0" +"15479","605","7","1","-8088","-4847","3","0","0" +"15480","605","8","1","-8113","-4839","-5","0","0" +"15481","605","9","1","-8136","-4856","-12","0","0" +"15482","605","10","1","-8148","-4880","-24","0","0" +"15483","605","11","1","-8124","-4910","-32","0","0" +"15484","605","12","1","-8101","-4915","-36","0","0" +"15485","605","13","1","-8081","-4885","-44","0","0" +"15486","605","14","1","-8077","-4841","-59","0","0" +"15487","605","15","1","-8080","-4782","-74","0","0" +"15488","605","16","1","-8122","-4688","-99","0","0" +"15489","605","17","1","-8254","-4598","-127","0","0" +"15490","605","18","1","-8296","-4590","-140","0","0" +"15491","605","19","1","-8376","-4626","-154","0","0" +"15492","605","20","1","-8448","-4661","-169","0","0" +"15493","605","21","1","-8494","-4647","-175","0","0" +"15494","605","22","1","-8518","-4606","-188","0","0" +"15495","605","23","1","-8520","-4548","-188","0","0" +"15496","605","24","1","-8485","-4475","-185","0","0" +"15497","605","25","1","-8428","-4423","-185","0","0" +"15498","605","26","1","-8372","-4376","-192","0","0" +"15499","605","27","1","-8360","-4329","-207","0","0" +"15500","606","0","530","3072","3596","145","0","0" +"15501","606","1","530","3061","3590","148","0","0" +"15502","606","2","530","3033","3573","152","0","0" +"15503","606","3","530","2901","3516","153","0","0" +"15504","606","4","530","2743","3443","150","0","0" +"15505","606","5","530","2610","3356","159","0","0" +"15506","606","6","530","2543","3260","142","0","0" +"15507","606","7","530","2405","3124","91","0","0" +"15508","606","8","530","2202","2914","96","0","0" +"17901","606","9","530","2174","2842","120","0","0" +"17902","606","10","530","2235","2793","130","0","0" +"15528","607","0","530","298","1500","-13","0","0" +"15529","607","1","530","283","1476","10","0","0" +"15530","607","2","530","279","1436","42","0","0" +"15531","607","3","530","311","1408","61","0","0" +"15532","607","4","530","343","1421","70","0","0" +"15716","607","5","530","365","1442","75","0","0" +"15717","607","6","530","482","1586","86","0","0" +"15718","607","7","530","536","1782","98","0","0" +"15719","607","8","530","509","1903","109","0","0" +"15720","607","9","530","509","1990","110","0","0" +"15533","608","0","530","508","1988","109","0","0" +"15534","608","1","530","452","1930","123","0","0" +"15535","608","2","530","322","1775","98","0","0" +"15641","608","3","530","317","1719","95","0","0" +"15643","608","4","530","295","1638","18","0","0" +"15644","608","5","530","298","1501","-13","0","0" +"15570","611","0","530","273","1484","-13","0","0" +"15571","611","1","530","269","1478","-9","0","0" +"15572","611","2","530","259","1465","-3","0","0" +"15573","611","3","530","226","1426","6","0","0" +"15574","611","4","530","115","1279","45","0","0" +"15575","611","5","530","34","1183","76","0","0" +"15576","611","6","530","-358","1106","105","0","0" +"15577","611","7","530","-398","1036","104","0","0" +"15578","611","8","530","-344","1021","71","0","0" +"15579","611","9","530","-337","1021","64","0","0" +"15580","611","10","530","-334","1021","60","0","0" +"15581","611","11","530","-330","1021","58","0","0" +"15583","612","0","530","-672","1857","67","0","0" +"15584","612","1","530","-626","1854","89","0","0" +"15585","612","2","530","-573","1854","128","0","0" +"15586","612","3","530","-378","1792","180","0","0" +"15587","612","4","530","-97","1757","180","0","0" +"15588","612","5","530","116","1626","114","0","0" +"15589","612","6","530","274","1485","-11","0","0" +"15592","613","0","530","-329","1019","55","0","0" +"15593","613","1","530","-320","1020","58","0","0" +"15594","613","2","530","-309","1022","62","0","0" +"15595","613","3","530","-297","1025","65","0","0" +"15596","613","4","530","-264","1035","77","0","0" +"15597","613","5","530","-222","1045","89","0","0" +"15598","613","6","530","-163","1074","97","0","0" +"15599","613","7","530","-80","1121","107","0","0" +"15600","613","8","530","-1","1188","120","0","0" +"15601","613","9","530","49","1253","102","0","0" +"15602","613","10","530","231","1463","6","0","0" +"15603","613","11","530","275","1487","-11","0","0" +"15607","614","0","530","-672","2716","95","0","0" +"15608","614","1","530","-673","2706","98","0","0" +"15609","614","2","530","-681","2666","102","0","0" +"15610","614","3","530","-670","2625","97","0","0" +"15611","614","4","530","-634","2569","91","0","0" +"15612","614","5","530","-571","2499","86","0","0" +"15613","614","6","530","-366","2300","100","0","0" +"15614","614","7","530","-14","2002","133","0","0" +"15615","614","8","530","207","1801","63","0","0" +"15616","614","9","530","292","1661","33","0","0" +"15617","614","10","530","333","1592","1","0","0" +"15618","614","11","530","307","1513","-3","0","0" +"15619","614","12","530","274","1487","-12","0","0" +"15622","615","0","530","275","1487","-10","0","0" +"15623","615","1","530","265","1486","-8","0","0" +"15624","615","2","530","255","1485","-4","0","0" +"15625","615","3","530","236","1482","4","0","0" +"15626","615","4","530","165","1485","32","0","0" +"15627","615","5","530","83","1553","104","0","0" +"15628","615","6","530","21","1616","121","0","0" +"15629","615","7","530","0","1661","128","0","0" +"15630","615","8","530","-43","1736","143","0","0" +"15631","615","9","530","-113","1831","160","0","0" +"15632","615","10","530","-262","2036","159","0","0" +"15633","615","11","530","-372","2205","159","0","0" +"15634","615","12","530","-486","2439","159","0","0" +"15635","615","13","530","-511","2622","155","0","0" +"15636","615","14","530","-530","2668","141","0","0" +"15637","615","15","530","-567","2698","136","0","0" +"15638","615","16","530","-606","2717","129","0","0" +"15639","615","17","530","-645","2708","110","0","0" +"15640","615","18","530","-660","2709","104","0","0" +"15660","616","0","530","2975","1847","142","0","0" +"15661","616","1","530","2967","1861","146","0","0" +"15662","616","2","530","2945","1888","152","0","0" +"15663","616","3","530","2919","1952","150","0","0" +"15664","616","4","530","2850","2105","150","0","0" +"15665","616","5","530","2841","2263","142","0","0" +"15666","616","6","530","2882","2400","148","0","0" +"15667","616","7","530","2885","2667","148","0","0" +"15668","616","8","530","2816","2909","148","0","0" +"15669","616","9","530","2827","3266","176","0","0" +"15670","616","10","530","2900","3500","176","0","0" +"15671","616","11","530","2999","3578","163","0","0" +"15672","616","12","530","3078","3595","145","0","0" +"15715","617","0","530","3077","3592","147","0","0" +"15714","617","1","530","3092","3583","151","0","0" +"15713","617","2","530","3113","3561","156","0","0" +"15712","617","3","530","3152","3503","166","0","0" +"15711","617","4","530","3167","3366","177","0","0" +"15710","617","5","530","3172","3059","167","0","0" +"15709","617","6","530","3200","2832","182","0","0" +"15708","617","7","530","3234","2432","187","0","0" +"15707","617","8","530","3200","2200","192","0","0" +"15706","617","9","530","3195","1920","192","0","0" +"15705","617","10","530","3099","1832","179","0","0" +"15704","617","11","530","3008","1829","157","0","0" +"15703","617","12","530","2976","1848","143","0","0" +"15731","618","0","530","92","5214","23","0","0" +"15732","618","1","530","87","5225","26","0","0" +"15733","618","2","530","78","5245","30","0","0" +"15734","618","3","530","48","5299","40","0","0" +"15735","618","4","530","-33","5378","58","0","0" +"15736","618","5","530","-134","5404","61","0","0" +"15737","618","6","530","-257","5300","80","0","0" +"15738","618","7","530","-244","5166","94","0","0" +"15739","618","8","530","-240","4866","80","0","0" +"15740","618","9","530","-299","4532","80","0","0" +"15741","618","10","530","-299","4302","139","0","0" +"15742","618","11","530","-406","4155","153","0","0" +"15743","618","12","530","-500","4106","118","0","0" +"15744","618","13","530","-556","4102","98","0","0" +"15745","618","14","530","-586","4101","93","0","0" +"15760","619","0","530","-586","4101","92","0","0" +"15759","619","1","530","-605","4100","96","0","0" +"15758","619","2","530","-657","4112","104","0","0" +"15757","619","3","530","-719","4166","104","0","0" +"15756","619","4","530","-699","4300","103","0","0" +"15755","619","5","530","-522","4451","122","0","0" +"15754","619","6","530","-292","4966","95","0","0" +"15753","619","7","530","-243","5166","98","0","0" +"15752","619","8","530","-211","5333","94","0","0" +"15751","619","9","530","-133","5366","72","0","0" +"15750","619","10","530","-56","5334","72","0","0" +"15749","619","11","530","-13","5233","71","0","0" +"15748","619","12","530","37","5116","75","0","0" +"15747","619","13","530","93","5098","60","0","0" +"15746","619","14","530","108","5153","40","0","0" +"15761","619","15","530","92","5214","25","0","0" +"15762","620","0","530","92","5214","23","0","0" +"15763","620","1","530","84","5232","31","0","0" +"15764","620","2","530","66","5267","38","0","0" +"15765","620","3","530","24","5323","41","0","0" +"15766","620","4","530","-14","5471","38","0","0" +"15767","620","5","530","-33","5631","64","0","0" +"15768","620","6","530","-98","5740","69","0","0" +"15769","620","7","530","-239","5957","42","0","0" +"15770","620","8","530","-300","6199","42","0","0" +"15771","620","9","530","-267","6398","62","0","0" +"15772","620","10","530","-143","6809","41","0","0" +"15773","620","11","530","-92","6900","56","0","0" +"15774","620","12","530","-141","7166","67","0","0" +"15775","620","13","530","-256","7381","73","0","0" +"15776","620","14","530","-232","7615","80","0","0" +"15777","620","15","530","-185","7810","80","0","0" +"15778","620","16","530","-46","7893","74","0","0" +"15779","620","17","530","133","7943","63","0","0" +"15780","620","18","530","197","7918","50","0","0" +"15781","620","19","530","233","7867","34","0","0" +"15782","620","20","530","220","7815","25","0","0" +"15803","621","0","530","220","7815","23","0","0" +"15802","621","1","530","230","7829","28","0","0" +"15801","621","2","530","254","7852","35","0","0" +"15800","621","3","530","284","7884","43","0","0" +"15799","621","4","530","333","7899","43","0","0" +"15798","621","5","530","400","7866","43","0","0" +"15797","621","6","530","460","7733","39","0","0" +"15796","621","7","530","491","7599","39","0","0" +"15795","621","8","530","454","7433","54","0","0" +"15794","621","9","530","332","7000","54","0","0" +"15793","621","10","530","148","6701","66","0","0" +"15792","621","11","530","53","6529","51","0","0" +"15791","621","12","530","-88","6296","51","0","0" +"15790","621","13","530","-104","6032","66","0","0" +"15789","621","14","530","-72","5666","73","0","0" +"15788","621","15","530","-76","5365","75","0","0" +"15787","621","16","530","0","5199","72","0","0" +"15786","621","17","530","50","5098","79","0","0" +"15785","621","18","530","100","5106","54","0","0" +"15784","621","19","530","108","5160","39","0","0" +"15783","621","20","530","92","5214","25","0","0" +"15804","622","0","530","91","5214","24","0","0" +"15805","622","1","530","84","5232","28","0","0" +"15806","622","2","530","74","5258","32","0","0" +"15807","622","3","530","44","5309","38","0","0" +"15808","622","4","530","-32","5367","51","0","0" +"15809","622","5","530","-164","5400","78","0","0" +"15810","622","6","530","-259","5425","75","0","0" +"15811","622","7","530","-499","5526","75","0","0" +"15812","622","8","530","-733","5466","75","0","0" +"15813","622","9","530","-876","5266","75","0","0" +"15814","622","10","530","-1067","5166","75","0","0" +"15815","622","11","530","-1321","4967","51","0","0" +"15816","622","12","530","-1499","5014","23","0","0" +"15817","622","13","530","-1634","5076","26","0","0" +"15818","622","14","530","-1799","5070","36","0","0" +"15819","622","15","530","-1919","5142","35","0","0" +"15820","622","16","530","-1936","5229","31","0","0" +"15821","622","17","530","-1891","5283","9","0","0" +"15822","622","18","530","-1837","5302","-9","0","0" +"15841","623","0","530","-1833","5304","-11","0","0" +"15840","623","1","530","-1818","5308","-8","0","0" +"15839","623","2","530","-1787","5314","-2","0","0" +"15838","623","3","530","-1714","5307","9","0","0" +"15837","623","4","530","-1543","5256","38","0","0" +"15836","623","5","530","-1438","5177","69","0","0" +"15835","623","6","530","-1233","5124","73","0","0" +"15834","623","7","530","-1033","5176","72","0","0" +"15833","623","8","530","-838","5298","72","0","0" +"15832","623","9","530","-533","5358","72","0","0" +"15831","623","10","530","-415","5416","72","0","0" +"15830","623","11","530","-266","5433","79","0","0" +"15829","623","12","530","-100","5399","73","0","0" +"15828","623","13","530","-49","5287","77","0","0" +"15827","623","14","530","1","5170","81","0","0" +"15826","623","15","530","51","5093","79","0","0" +"15825","623","16","530","102","5099","52","0","0" +"15824","623","17","530","103","5166","36","0","0" +"15823","623","18","530","91","5214","24","0","0" +"15842","624","0","530","2447","6021","155","0","0" +"15843","624","1","530","2445","6007","157","0","0" +"15844","624","2","530","2443","5988","158","0","0" +"15845","624","3","530","2452","5956","162","0","0" +"15846","624","4","530","2503","5933","170","0","0" +"15847","624","5","530","2609","5899","198","0","0" +"15848","624","6","530","2674","5733","248","0","0" +"15849","624","7","530","2542","5390","298","0","0" +"15850","624","8","530","2370","5237","321","0","0" +"15851","624","9","530","2026","5154","340","0","0" +"15852","624","10","530","1585","5119","340","0","0" +"15853","624","11","530","1045","5024","127","0","0" +"15854","624","12","530","733","5033","65","0","0" +"15855","624","13","530","551","5064","50","0","0" +"15856","624","14","530","400","5159","49","0","0" +"15857","624","15","530","283","5147","49","0","0" +"15858","624","16","530","182","5117","60","0","0" +"15859","624","17","530","129","5127","45","0","0" +"15860","624","18","530","101","5178","32","0","0" +"15861","624","19","530","91","5214","25","0","0" +"15881","625","0","530","91","5214","24","0","0" +"15880","625","1","530","82","5236","30","0","0" +"15879","625","2","530","66","5275","38","0","0" +"15878","625","3","530","69","5335","47","0","0" +"15877","625","4","530","166","5421","54","0","0" +"15876","625","5","530","267","5407","55","0","0" +"15875","625","6","530","466","5321","46","0","0" +"15874","625","7","530","832","5366","92","0","0" +"15873","625","8","530","1093","5432","186","0","0" +"15872","625","9","530","1515","5504","313","0","0" +"15871","625","10","530","1700","5600","313","0","0" +"15870","625","11","530","1838","5688","344","0","0" +"15869","625","12","530","1898","5917","329","0","0" +"15868","625","13","530","1924","6135","304","0","0" +"15867","625","14","530","2066","6250","245","0","0" +"15866","625","15","530","2266","6199","209","0","0" +"15865","625","16","530","2399","6064","171","0","0" +"15864","625","17","530","2445","6019","156","0","0" +"15898","627","0","530","4232","2132","166","0","0" +"15899","627","1","530","3886","2117","394","0","0" +"15900","627","2","530","3905","1917","349","0","0" +"15901","627","3","530","4007","1930","358","0","0" +"15902","627","4","530","4019","1966","375","0","0" +"15903","627","5","530","4009","2021","400","0","0" +"15904","627","6","530","3965","2023","400","0","0" +"15905","627","7","530","3931","1998","388","0","0" +"15906","627","8","530","3883","1947","368","0","0" +"15907","627","9","530","3844","1968","368","0","0" +"15908","627","10","530","3875","2049","368","0","0" +"15909","627","11","530","3925","2072","368","0","0" +"15910","627","12","530","3945","2054","368","0","0" +"15911","627","13","530","3949","2006","408","0","0" +"15912","627","14","530","3979","1946","418","0","0" +"15913","627","15","530","4000","1921","416","0","0" +"15914","627","16","530","4050","1915","398","0","0" +"15915","627","17","530","4099","1940","360","0","0" +"15916","627","18","530","4195","2026","271","0","0" +"15917","627","19","530","4268","2132","138","0","0" +"15920","628","0","530","4231","2125","165","0","0" +"15921","628","1","530","4122","2096","252","0","0" +"15922","628","2","530","4020","2102","290","0","0" +"15923","628","3","530","3895","2162","250","0","0" +"15924","628","4","530","3862","2137","257","0","0" +"15925","628","5","530","3851","2087","303","0","0" +"15926","628","6","530","3859","1988","368","0","0" +"15927","628","7","530","3906","1947","368","0","0" +"15928","628","8","530","3949","1952","368","0","0" +"15929","628","9","530","3982","1982","373","0","0" +"15930","628","10","530","3990","2016","373","0","0" +"15931","628","11","530","3976","2052","368","0","0" +"15932","628","12","530","3939","2069","391","0","0" +"15933","628","13","530","3907","2045","419","0","0" +"15934","628","14","530","3901","2003","437","0","0" +"15935","628","15","530","3947","1974","427","0","0" +"15936","628","16","530","4074","2066","335","0","0" +"15937","628","17","530","4268","2131","140","0","0" +"15939","629","0","530","-242","921","111","0","0" +"15940","629","1","530","-243","965","107","0","0" +"15941","629","2","530","-245","1016","93","0","0" +"15942","629","3","530","-244","1088","70","0","0" +"15943","629","4","530","-233","1175","58","0","0" +"15944","629","5","530","-232","1237","46","0","0" +"15945","629","6","530","-245","1339","29","0","0" +"15946","629","7","530","-238","1448","27","0","0" +"15947","629","8","530","-211","1532","34","0","0" +"15948","629","9","530","-193","1634","47","0","0" +"15949","629","10","530","-194","1733","67","0","0" +"15950","630","0","530","1857","5531","279","0","0" +"15951","630","1","530","1873","5513","302","0","0" +"15952","630","2","530","1894","5490","326","0","0" +"15953","630","3","530","1925","5467","352","0","0" +"15954","630","4","530","1988","5460","374","0","0" +"15955","630","5","530","2092","5498","355","0","0" +"15956","630","6","530","2166","5600","339","0","0" +"15957","630","7","530","2185","5834","340","0","0" +"15958","630","8","530","2232","6200","298","0","0" +"15959","630","9","530","2282","6434","202","0","0" +"15960","630","10","530","2323","6599","202","0","0" +"15961","630","11","530","2339","6727","202","0","0" +"15962","630","12","530","2298","6795","202","0","0" +"15963","630","13","530","2184","6793","185","0","0" +"15966","631","0","530","2182","6793","184","0","0" +"15967","631","1","530","2244","6792","188","0","0" +"15968","631","2","530","2294","6748","155","0","0" +"15969","631","3","530","2423","6635","93","0","0" +"15970","631","4","530","2491","6498","107","0","0" +"15971","631","5","530","2453","6301","186","0","0" +"15972","631","6","530","2379","6162","193","0","0" +"15973","631","7","530","2309","6045","208","0","0" +"15974","631","8","530","2250","5948","279","0","0" +"15975","631","9","530","2179","5822","324","0","0" +"15976","631","10","530","2098","5732","305","0","0" +"15977","631","11","530","2014","5641","289","0","0" +"15978","631","12","530","1933","5583","287","0","0" +"15979","631","13","530","1894","5561","277","0","0" +"15980","631","14","530","1872","5548","279","0","0" +"15981","631","15","530","1857","5531","278","0","0" +"15982","632","0","530","2278","5984","144","0","0" +"15983","632","1","530","2279","5986","144","0","0" +"15984","632","2","530","2282","5998","146","0","0" +"15985","632","3","530","2301","6040","146","0","0" +"15986","632","4","530","2376","6047","143","0","0" +"15987","632","5","530","2385","6144","136","0","0" +"15988","632","6","530","2486","6129","118","0","0" +"15989","632","7","530","2498","6043","96","0","0" +"15990","632","8","530","2554","6046","74","0","0" +"15991","632","9","530","2585","6199","17","0","0" +"15992","632","10","530","2539","6281","17","0","0" +"15993","632","11","530","2502","6419","-4","0","0" +"15994","632","12","530","2208","6383","-4","0","0" +"15995","632","13","530","1874","6404","-3","0","0" +"15996","632","14","530","1643","6412","-1","0","0" +"15997","632","15","530","1472","6529","9","0","0" +"15998","632","16","530","1386","6540","15","0","0" +"15999","632","17","530","1353","6544","9","0","0" +"16000","632","18","530","1337","6590","-3","0","0" +"16001","632","19","530","1308","6602","-3","0","0" +"16002","632","20","530","1316","6622","-5","0","0" +"16003","632","21","530","1349","6618","-8","0","0" +"16004","632","22","530","1379","6642","-10","0","0" +"16005","632","23","530","1373","6676","-15","0","0" +"16006","632","24","530","1351","6689","-16","0","0" +"16007","632","25","530","1321","6690","-16","0","0" +"16027","633","0","530","3081","3591","145","0","0" +"16028","633","1","530","3091","3587","148","0","0" +"16029","633","2","530","3104","3580","151","0","0" +"16030","633","3","530","3131","3570","158","0","0" +"16031","633","4","530","3233","3539","170","0","0" +"16032","633","5","530","3434","3499","214","0","0" +"16033","633","6","530","3767","3336","227","0","0" +"16034","633","7","530","3966","3066","322","0","0" +"16035","633","8","530","4045","2903","362","0","0" +"16036","633","9","530","4129","2904","362","0","0" +"16037","633","10","530","4157","2936","362","0","0" +"16038","633","11","530","4154","2961","354","0","0" +"16061","634","0","530","4154","2961","353","0","0" +"16060","634","1","530","4145","2972","358","0","0" +"16059","634","2","530","4133","2984","363","0","0" +"16058","634","3","530","4097","3023","373","0","0" +"16057","634","4","530","4014","3059","364","0","0" +"16056","634","5","530","3666","3167","290","0","0" +"16055","634","6","530","3233","3268","204","0","0" +"16054","634","7","530","3067","3298","205","0","0" +"16053","634","8","530","2964","3398","178","0","0" +"16052","634","9","530","2951","3519","176","0","0" +"16051","634","10","530","3000","3579","171","0","0" +"17768","634","11","530","3081","3591","146","0","0" +"16062","635","0","530","-4069","1126","43","0","0" +"16063","635","1","530","-4065","1134","47","0","0" +"16064","635","2","530","-4054","1149","53","0","0" +"16065","635","3","530","-4040","1176","70","0","0" +"16066","635","4","530","-4033","1250","115","0","0" +"16067","635","5","530","-4058","1390","145","0","0" +"16068","635","6","530","-4053","1550","149","0","0" +"16069","635","7","530","-4038","1744","134","0","0" +"16070","635","8","530","-4067","1842","134","0","0" +"16071","635","9","530","-4150","1996","147","0","0" +"16072","635","10","530","-4133","2100","169","0","0" +"16073","635","11","530","-4103","2141","172","0","0" +"16074","635","12","530","-4046","2181","155","0","0" +"16075","635","13","530","-4012","2171","121","0","0" +"16076","635","14","530","-3995","2160","110","0","0" +"16077","635","15","530","-3983","2155","106","0","0" +"16078","636","0","530","-4069","1126","43","0","0" +"16079","636","1","530","-4065","1131","47","0","0" +"16080","636","2","530","-4050","1143","55","0","0" +"16081","636","3","530","-4018","1170","77","0","0" +"16082","636","4","530","-3950","1240","92","0","0" +"16083","636","5","530","-3858","1400","78","0","0" +"16084","636","6","530","-3784","1509","72","0","0" +"16085","636","7","530","-3655","1701","72","0","0" +"16086","636","8","530","-3597","1848","69","0","0" +"16087","636","9","530","-3558","1949","95","0","0" +"16088","636","10","530","-3444","2080","120","0","0" +"16089","636","11","530","-3264","2257","120","0","0" +"16090","636","12","530","-3102","2389","98","0","0" +"16091","636","13","530","-3038","2488","90","0","0" +"16092","636","14","530","-3016","2548","84","0","0" +"16093","636","15","530","-3014","2557","81","0","0" +"16094","637","0","530","2973","1849","141","0","0" +"16095","637","1","530","2963","1869","149","0","0" +"16096","637","2","530","2946","1900","153","0","0" +"16097","637","3","530","2928","1966","164","0","0" +"16098","637","4","530","2998","2039","178","0","0" +"16099","637","5","530","3112","2066","198","0","0" +"16100","637","6","530","3299","2167","198","0","0" +"16101","637","7","530","3598","2333","198","0","0" +"16102","637","8","530","3768","2656","229","0","0" +"16103","637","9","530","3999","2750","297","0","0" +"16104","637","10","530","4139","2868","363","0","0" +"16105","637","11","530","4154","2932","363","0","0" +"16106","637","12","530","4157","2959","354","0","0" +"16119","638","0","530","4157","2959","353","0","0" +"16118","638","1","530","4149","2969","355","0","0" +"16117","638","2","530","4137","2988","360","0","0" +"16116","638","3","530","4113","3023","363","0","0" +"16115","638","4","530","4012","3103","360","0","0" +"16114","638","5","530","3733","2967","278","0","0" +"16113","638","6","530","3536","2232","198","0","0" +"16112","638","7","530","3264","1896","200","0","0" +"16111","638","8","530","3069","1796","172","0","0" +"16110","638","9","530","2973","1849","143","0","0" +"16135","639","0","530","-3014","2557","81","0","0" +"16134","639","1","530","-3002","2540","86","0","0" +"16133","639","2","530","-2990","2501","100","0","0" +"16132","639","3","530","-2968","2379","82","0","0" +"16131","639","4","530","-3133","2200","104","0","0" +"16130","639","5","530","-3309","1917","128","0","0" +"16129","639","6","530","-3381","1805","137","0","0" +"16128","639","7","530","-3441","1700","129","0","0" +"16127","639","8","530","-3557","1548","118","0","0" +"16126","639","9","530","-3716","1462","136","0","0" +"16125","639","10","530","-3862","1233","98","0","0" +"16124","639","11","530","-3941","1132","66","0","0" +"16123","639","12","530","-3992","1111","58","0","0" +"16122","639","13","530","-4045","1117","53","0","0" +"16121","639","14","530","-4069","1126","44","0","0" +"16151","640","0","530","-3983","2155","106","0","0" +"16150","640","1","530","-3962","2148","115","0","0" +"16149","640","2","530","-3907","2118","135","0","0" +"16148","640","3","530","-3817","2033","141","0","0" +"16147","640","4","530","-3766","1901","141","0","0" +"16146","640","5","530","-3810","1782","117","0","0" +"16145","640","6","530","-3864","1613","111","0","0" +"16144","640","7","530","-3956","1442","97","0","0" +"16143","640","8","530","-3993","1363","69","0","0" +"16142","640","9","530","-4058","1329","68","0","0" +"16141","640","10","530","-4095","1277","96","0","0" +"16140","640","11","530","-4091","1233","93","0","0" +"16139","640","12","530","-4070","1181","74","0","0" +"16138","640","13","530","-4060","1149","56","0","0" +"16137","640","14","530","-4065","1134","47","0","0" +"16136","640","15","530","-4069","1126","43","0","0" +"16152","641","0","530","1857","5531","278","0","0" +"16153","641","1","530","1852","5521","289","0","0" +"16154","641","2","530","1836","5493","309","0","0" +"16155","641","3","530","1805","5418","307","0","0" +"16156","641","4","530","1794","5292","306","0","0" +"16157","641","5","530","1794","5171","309","0","0" +"16158","641","6","530","1957","5045","321","0","0" +"16159","641","7","530","2233","4766","264","0","0" +"16160","641","8","530","2565","4333","229","0","0" +"16161","641","9","530","2765","3899","207","0","0" +"16162","641","10","530","2929","3602","173","0","0" +"16163","641","11","530","3079","3594","148","0","0" +"16175","642","0","530","3079","3594","144","0","0" +"16174","642","1","530","3104","3594","149","0","0" +"16173","642","2","530","3149","3607","159","0","0" +"16172","642","3","530","3176","3669","167","0","0" +"16171","642","4","530","3100","3833","174","0","0" +"16170","642","5","530","2803","4123","219","0","0" +"16169","642","6","530","2570","4435","222","0","0" +"16168","642","7","530","2523","5166","330","0","0" +"16167","642","8","530","2350","5507","329","0","0" +"16166","642","9","530","2082","5605","312","0","0" +"16165","642","10","530","1898","5560","291","0","0" +"16164","642","11","530","1857","5531","279","0","0" +"16176","643","0","530","2974","5506","144","0","0" +"16177","643","1","530","2955","5502","150","0","0" +"16178","643","2","530","2916","5494","155","0","0" +"16179","643","3","530","2866","5483","161","0","0" +"16180","643","4","530","2799","5500","164","0","0" +"16181","643","5","530","2734","5633","170","0","0" +"16182","643","6","530","2605","5999","186","0","0" +"16183","643","7","530","2483","6133","177","0","0" +"16184","643","8","530","2415","6099","178","0","0" +"16185","643","9","530","2412","6044","166","0","0" +"16186","643","10","530","2445","6016","156","0","0" +"16187","644","0","530","2971","5506","144","0","0" +"16188","644","1","530","2943","5501","148","0","0" +"16189","644","2","530","2915","5510","156","0","0" +"16190","644","3","530","2888","5532","167","0","0" +"16191","644","4","530","2849","5588","167","0","0" +"16192","644","5","530","2800","5699","153","0","0" +"16193","644","6","530","2733","5933","131","0","0" +"16194","644","7","530","2666","6232","117","0","0" +"16195","644","8","530","2548","6435","131","0","0" +"16196","644","9","530","2468","6564","131","0","0" +"16197","644","10","530","2366","6733","175","0","0" +"16198","644","11","530","2288","6783","193","0","0" +"16199","644","12","530","2199","6813","191","0","0" +"17219","644","13","530","2180","6793","184","0","0" +"16212","645","0","530","2180","6793","184","0","0" +"16211","645","1","530","2190","6772","188","0","0" +"16210","645","2","530","2202","6745","191","0","0" +"16209","645","3","530","2217","6714","191","0","0" +"16208","645","4","530","2275","6599","188","0","0" +"16207","645","5","530","2347","6466","183","0","0" +"16206","645","6","530","2466","6300","179","0","0" +"16205","645","7","530","2633","6100","179","0","0" +"16204","645","8","530","2746","5992","188","0","0" +"16203","645","9","530","2850","5793","194","0","0" +"16202","645","10","530","2892","5693","168","0","0" +"16201","645","11","530","2942","5592","154","0","0" +"16200","645","12","530","2964","5554","153","0","0" +"16546","645","13","530","2974","5505","145","0","0" +"16223","646","0","530","2445","6016","158","0","0" +"16222","646","1","530","2442","6000","163","0","0" +"16221","646","2","530","2454","5973","168","0","0" +"16220","646","3","530","2499","5940","170","0","0" +"16219","646","4","530","2689","5831","180","0","0" +"16218","646","5","530","2857","5690","172","0","0" +"16217","646","6","530","2936","5600","163","0","0" +"16216","646","7","530","2964","5559","154","0","0" +"16215","646","8","530","2974","5504","146","0","0" +"16224","647","0","530","2972","5507","144","0","0" +"16225","647","1","530","2947","5501","149","0","0" +"16226","647","2","530","2914","5487","156","0","0" +"16227","647","3","530","2873","5443","167","0","0" +"16228","647","4","530","2869","5373","177","0","0" +"16229","647","5","530","2960","5310","209","0","0" +"16230","647","6","530","3022","5266","250","0","0" +"16231","647","7","530","3023","5166","290","0","0" +"16232","647","8","530","3001","5050","298","0","0" +"16233","647","9","530","2887","4815","296","0","0" +"16234","647","10","530","2867","4718","305","0","0" +"16235","647","11","530","2847","4464","244","0","0" +"16236","647","12","530","2786","4343","226","0","0" +"16237","647","13","530","2750","4233","220","0","0" +"16238","647","14","530","2797","4117","218","0","0" +"16239","647","15","530","2863","3911","204","0","0" +"16240","647","16","530","2880","3812","195","0","0" +"16241","647","17","530","2927","3684","174","0","0" +"16242","647","18","530","2969","3581","159","0","0" +"16243","647","19","530","3016","3566","154","0","0" +"16244","647","20","530","3048","3577","151","0","0" +"16245","647","21","530","3079","3598","145","0","0" +"16269","648","0","530","3079","3598","145","0","0" +"16268","648","1","530","3092","3593","150","0","0" +"16267","648","2","530","3106","3588","156","0","0" +"16266","648","3","530","3143","3595","165","0","0" +"16265","648","4","530","3177","3636","166","0","0" +"16264","648","5","530","3262","3740","171","0","0" +"16263","648","6","530","3365","3899","212","0","0" +"16262","648","7","530","3399","4199","212","0","0" +"16261","648","8","530","3533","4598","243","0","0" +"16260","648","9","530","3531","4834","273","0","0" +"16259","648","10","530","3166","5033","284","0","0" +"16258","648","11","530","3049","5125","282","0","0" +"16257","648","12","530","3018","5220","288","0","0" +"16256","648","13","530","3009","5317","222","0","0" +"16255","648","14","530","2994","5380","167","0","0" +"16254","648","15","530","2988","5450","156","0","0" +"16253","648","16","530","2978","5484","152","0","0" +"16252","648","17","530","2973","5504","146","0","0" +"16270","649","0","530","-4202","417","148","0","0" +"16271","649","1","530","-4199","509","139","0","0" +"16272","649","2","530","-4188","582","119","0","0" +"16273","649","3","530","-4156","685","105","0","0" +"16274","649","4","530","-4108","834","78","0","0" +"16275","649","5","530","-4100","949","25","0","0" +"16276","650","0","530","2025","4703","151","0","0" +"16277","650","1","530","2048","4700","164","0","0" +"16278","650","2","530","2077","4691","167","0","0" +"16279","650","3","530","2097","4666","167","0","0" +"16280","650","4","530","2156","4604","160","0","0" +"16281","650","5","530","2200","4577","161","0","0" +"16282","650","6","530","2435","4449","144","0","0" +"16283","650","7","530","2511","4408","134","0","0" +"16284","650","8","530","2564","4362","147","0","0" +"16285","650","9","530","2622","4310","168","0","0" +"16286","650","10","530","2683","4257","197","0","0" +"16287","650","11","530","2741","4206","210","0","0" +"16288","650","12","530","2800","4132","215","0","0" +"16289","650","13","530","2854","4026","203","0","0" +"16290","650","14","530","2905","3766","178","0","0" +"16291","650","15","530","2933","3623","161","0","0" +"16292","650","16","530","3015","3582","153","0","0" +"16293","650","17","530","3080","3597","145","0","0" +"16357","652","0","530","2449","6021","155","0","0" +"16358","652","1","530","2445","6003","164","0","0" +"16359","652","2","530","2454","5967","165","0","0" +"16360","652","3","530","2481","5941","166","0","0" +"16361","652","4","530","2558","5902","175","0","0" +"16362","652","5","530","2633","5801","198","0","0" +"16363","652","6","530","2616","5616","244","0","0" +"16364","652","7","530","2567","5433","297","0","0" +"16365","652","8","530","2400","5266","297","0","0" +"16366","652","9","530","2233","5066","297","0","0" +"16367","652","10","530","2178","4916","208","0","0" +"16368","652","11","530","2107","4753","171","0","0" +"16369","652","12","530","2026","4703","153","0","0" +"16435","653","0","530","3080","3597","145","0","0" +"16434","653","1","530","3097","3587","152","0","0" +"16433","653","2","530","3111","3579","157","0","0" +"16432","653","3","530","3143","3574","162","0","0" +"16431","653","4","530","3183","3591","166","0","0" +"16430","653","5","530","3210","3635","161","0","0" +"16429","653","6","530","3194","3697","153","0","0" +"16428","653","7","530","3162","3717","155","0","0" +"16427","653","8","530","3122","3768","164","0","0" +"16426","653","9","530","3092","3804","164","0","0" +"16425","653","10","530","3056","3834","166","0","0" +"16424","653","11","530","3012","3875","165","0","0" +"16423","653","12","530","2980","3896","167","0","0" +"16422","653","13","530","2929","3929","162","0","0" +"16421","653","14","530","2895","3949","156","0","0" +"16420","653","15","530","2832","3966","162","0","0" +"16419","653","16","530","2781","4014","173","0","0" +"16418","653","17","530","2758","4124","213","0","0" +"16417","653","18","530","2741","4206","206","0","0" +"16416","653","19","530","2683","4257","192","0","0" +"16415","653","20","530","2622","4310","169","0","0" +"16414","653","21","530","2564","4362","149","0","0" +"16413","653","22","530","2514","4399","140","0","0" +"16412","653","23","530","2435","4449","139","0","0" +"16411","653","24","530","2227","4601","159","0","0" +"16410","653","25","530","2189","4688","181","0","0" +"16409","653","26","530","2163","4746","181","0","0" +"16408","653","27","530","2100","4730","170","0","0" +"16407","653","28","530","2066","4718","167","0","0" +"16406","653","29","530","2046","4710","161","0","0" +"16405","653","30","530","2025","4703","151","0","0" +"16477","654","0","530","2026","4703","151","0","0" +"16476","654","1","530","2033","4725","158","0","0" +"16475","654","2","530","2051","4767","161","0","0" +"16474","654","3","530","2087","4825","163","0","0" +"16473","654","4","530","2165","4899","193","0","0" +"16472","654","5","530","2199","4994","248","0","0" +"16471","654","6","530","2222","5061","292","0","0" +"16470","654","7","530","2242","5143","319","0","0" +"16469","654","8","530","2215","5248","335","0","0" +"16468","654","9","530","2162","5600","340","0","0" +"16467","654","10","530","2116","5787","333","0","0" +"16466","654","11","530","2117","5946","311","0","0" +"16465","654","12","530","2179","6075","263","0","0" +"16464","654","13","530","2299","6154","191","0","0" +"16463","654","14","530","2366","6131","171","0","0" +"16462","654","15","530","2408","6048","167","0","0" +"16461","654","16","530","2449","6021","157","0","0" +"16478","655","0","530","966","7393","32","0","0" +"16479","655","1","530","966","7383","37","0","0" +"16480","655","2","530","964","7366","46","0","0" +"16481","655","3","530","957","7333","62","0","0" +"16482","655","4","530","930","7284","93","0","0" +"16483","655","5","530","884","7186","115","0","0" +"16484","655","6","530","862","7105","127","0","0" +"16485","655","7","530","766","6966","127","0","0" +"16486","655","8","530","665","6767","126","0","0" +"16487","655","9","530","566","6600","126","0","0" +"16488","655","10","530","466","6400","121","0","0" +"16489","655","11","530","373","6232","132","0","0" +"16490","655","12","530","333","6186","136","0","0" +"16491","655","13","530","264","6136","150","0","0" +"16492","655","14","530","243","6115","154","0","0" +"16493","655","15","530","223","6088","154","0","0" +"16494","655","16","530","216","6072","152","0","0" +"16495","655","17","530","216","6063","150","0","0" +"16515","656","0","530","216","6063","150","0","0" +"16514","656","1","530","212","6050","152","0","0" +"16513","656","2","530","204","6024","154","0","0" +"16512","656","3","530","195","5965","157","0","0" +"16511","656","4","530","234","5921","162","0","0" +"16510","656","5","530","333","5933","150","0","0" +"16509","656","6","530","399","6066","130","0","0" +"16508","656","7","530","500","6365","99","0","0" +"16507","656","8","530","599","6600","99","0","0" +"16506","656","9","530","732","6899","78","0","0" +"16505","656","10","530","865","7164","80","0","0" +"16504","656","11","530","940","7299","76","0","0" +"16503","656","12","530","957","7342","63","0","0" +"16502","656","13","530","967","7380","42","0","0" +"16501","656","14","530","968","7397","31","0","0" +"16516","657","0","530","966","7393","35","0","0" +"16517","657","1","530","980","7373","48","0","0" +"16518","657","2","530","990","7328","61","0","0" +"16519","657","3","530","998","7252","91","0","0" +"16520","657","4","530","1009","7164","126","0","0" +"16521","657","5","530","1066","7095","192","0","0" +"16522","657","6","530","1118","7002","443","0","0" +"16523","657","7","530","1281","6934","580","0","0" +"16524","657","8","530","1403","6887","609","0","0" +"16525","657","9","530","1545","6832","571","0","0" +"16526","657","10","530","1820","6772","438","0","0" +"16527","657","11","530","1994","6771","324","0","0" +"16528","657","12","530","2111","6828","232","0","0" +"16529","657","13","530","2152","6822","202","0","0" +"16545","657","14","530","2179","6794","186","0","0" +"16543","658","0","530","2181","6794","184","0","0" +"16542","658","1","530","2185","6766","189","0","0" +"16541","658","2","530","2176","6694","196","0","0" +"16540","658","3","530","2128","6589","215","0","0" +"16539","658","4","530","1966","6563","249","0","0" +"16538","658","5","530","1633","6600","370","0","0" +"16537","658","6","530","1300","6734","555","0","0" +"16536","658","7","530","1033","6800","571","0","0" +"16535","658","8","530","933","6933","487","0","0" +"16534","658","9","530","899","7051","382","0","0" +"16533","658","10","530","933","7167","265","0","0" +"16532","658","11","530","966","7264","141","0","0" +"16531","658","12","530","986","7333","80","0","0" +"16530","658","13","530","980","7373","51","0","0" +"16544","658","14","530","966","7393","38","0","0" +"16566","660","0","1","2828","-290","107","0","0" +"16567","660","1","1","2841","-295","113","0","0" +"16568","660","2","1","2864","-307","117","0","0" +"16569","660","3","1","2879","-334","120","0","0" +"16570","660","4","1","2868","-375","124","0","0" +"16571","660","5","1","2834","-463","125","0","0" +"16572","660","6","1","2769","-528","125","0","0" +"16573","660","7","1","2675","-550","125","0","0" +"16574","660","8","1","2629","-475","125","0","0" +"16575","660","9","1","2557","-469","125","0","0" +"16576","660","10","1","2463","-498","125","0","0" +"16577","660","11","1","2448","-613","130","0","0" +"16578","660","12","1","2476","-769","147","0","0" +"16579","660","13","1","2494","-868","146","0","0" +"16580","660","14","1","2516","-948","149","0","0" +"16581","660","15","1","2506","-1035","146","0","0" +"16582","660","16","1","2485","-1181","145","0","0" +"16583","660","17","1","2457","-1276","145","0","0" +"16584","660","18","1","2419","-1380","141","0","0" +"16585","660","19","1","2387","-1454","133","0","0" +"16586","660","20","1","2362","-1554","139","0","0" +"16587","660","21","1","2335","-1643","133","0","0" +"16588","660","22","1","2319","-1674","133","0","0" +"16589","660","23","1","2266","-1728","133","0","0" +"16590","660","24","1","2190","-1772","133","0","0" +"16591","660","25","1","2123","-1833","133","0","0" +"16592","660","26","1","2083","-1878","133","0","0" +"16593","660","27","1","2007","-1926","121","0","0" +"16594","660","28","1","1966","-2001","121","0","0" +"16595","660","29","1","1945","-2080","121","0","0" +"16596","660","30","1","1938","-2147","121","0","0" +"16597","660","31","1","1878","-2172","121","0","0" +"16598","660","32","1","1764","-2180","115","0","0" +"16599","660","33","1","1641","-2200","102","0","0" +"16600","660","34","1","1577","-2206","102","0","0" +"16601","660","35","1","1520","-2176","102","0","0" +"16602","660","36","1","1442","-2151","106","0","0" +"16603","660","37","1","1392","-2134","106","0","0" +"16604","660","38","1","1314","-2078","116","0","0" +"16605","660","39","1","1233","-2068","154","0","0" +"16606","660","40","1","1192","-2081","184","0","0" +"16607","660","41","1","1140","-2106","178","0","0" +"16608","660","42","1","1105","-2127","178","0","0" +"16609","660","43","1","1036","-2161","165","0","0" +"16610","660","44","1","999","-2187","147","0","0" +"16611","660","45","1","955","-2186","149","0","0" +"16612","660","46","1","882","-2180","149","0","0" +"16613","660","47","1","746","-2185","149","0","0" +"16614","660","48","1","612","-2180","149","0","0" +"16615","660","49","1","484","-1986","144","0","0" +"16616","660","50","1","384","-1950","144","0","0" +"16617","660","51","1","183","-1960","144","0","0" +"16618","660","52","1","8","-2044","144","0","0" +"16619","660","53","1","-208","-2164","144","0","0" +"16620","660","54","1","-329","-2101","144","0","0" +"16621","660","55","1","-474","-2037","144","0","0" +"16622","660","56","1","-606","-1973","144","0","0" +"16623","660","57","1","-726","-2001","144","0","0" +"16624","660","58","1","-874","-2100","144","0","0" +"16625","660","59","1","-951","-2318","144","0","0" +"16626","660","60","1","-1092","-2417","144","0","0" +"16627","660","61","1","-1246","-2507","144","0","0" +"16628","660","62","1","-1491","-2561","144","0","0" +"16629","660","63","1","-1778","-2552","144","0","0" +"16630","660","64","1","-1980","-2337","144","0","0" +"16631","660","65","1","-2091","-2284","144","0","0" +"16632","660","66","1","-2358","-2313","159","0","0" +"16633","660","67","1","-2712","-2261","159","0","0" +"16634","660","68","1","-2849","-2244","159","0","0" +"16635","660","69","1","-3011","-2246","163","0","0" +"16636","660","70","1","-3304","-2273","163","0","0" +"16637","660","71","1","-3449","-2371","163","0","0" +"16638","660","72","1","-3558","-2492","148","0","0" +"16639","660","73","1","-3556","-2702","113","0","0" +"16640","660","74","1","-3486","-2870","97","0","0" +"16641","660","75","1","-3362","-3028","97","0","0" +"16642","660","76","1","-3157","-3178","97","0","0" +"16643","660","77","1","-2929","-3268","97","0","0" +"16644","660","78","1","-2794","-3364","91","0","0" +"16645","660","79","1","-2884","-3524","91","0","0" +"16646","660","80","1","-3017","-3710","99","0","0" +"16647","660","81","1","-3137","-3844","92","0","0" +"16648","660","82","1","-3324","-4086","88","0","0" +"16649","660","83","1","-3431","-4165","66","0","0" +"16650","660","84","1","-3542","-4241","55","0","0" +"16651","660","85","1","-3637","-4328","46","0","0" +"16652","660","86","1","-3673","-4434","50","0","0" +"16653","660","87","1","-3702","-4490","43","0","0" +"16654","660","88","1","-3776","-4513","32","0","0" +"16655","660","89","1","-3801","-4515","24","0","0" +"16656","660","90","1","-3816","-4515","18","0","0" +"16657","660","91","1","-3828","-4513","10","0","0" +"16750","661","0","1","-3827","-4515","10","0","0" +"16749","661","1","1","-3829","-4526","17","0","0" +"16748","661","2","1","-3836","-4544","24","0","0" +"16747","661","3","1","-3868","-4575","24","0","0" +"16746","661","4","1","-3931","-4562","25","0","0" +"16745","661","5","1","-3957","-4490","35","0","0" +"16744","661","6","1","-3913","-4370","49","0","0" +"16743","661","7","1","-3682","-4216","49","0","0" +"16742","661","8","1","-3529","-4070","49","0","0" +"16741","661","9","1","-3399","-3958","61","0","0" +"16740","661","10","1","-3256","-3812","86","0","0" +"16739","661","11","1","-3111","-3626","108","0","0" +"16738","661","12","1","-3069","-3406","97","0","0" +"16737","661","13","1","-3107","-3323","97","0","0" +"16736","661","14","1","-3183","-3218","97","0","0" +"16735","661","15","1","-3324","-3015","92","0","0" +"16734","661","16","1","-3418","-2875","92","0","0" +"16733","661","17","1","-3513","-2705","98","0","0" +"16732","661","18","1","-3516","-2491","127","0","0" +"16731","661","19","1","-3484","-2309","148","0","0" +"16730","661","20","1","-3278","-2220","148","0","0" +"16729","661","21","1","-3022","-2215","148","0","0" +"16728","661","22","1","-2815","-2213","148","0","0" +"16727","661","23","1","-2358","-2313","152","0","0" +"16726","661","24","1","-2043","-2442","144","0","0" +"16725","661","25","1","-1728","-2498","144","0","0" +"16724","661","26","1","-1501","-2487","144","0","0" +"16723","661","27","1","-1317","-2428","144","0","0" +"16722","661","28","1","-1167","-2352","144","0","0" +"16721","661","29","1","-1039","-2243","144","0","0" +"16720","661","30","1","-869","-2085","144","0","0" +"16719","661","31","1","-684","-2028","158","0","0" +"16718","661","32","1","-474","-2037","144","0","0" +"16717","661","33","1","-312","-2035","144","0","0" +"16716","661","34","1","12","-2034","144","0","0" +"16715","661","35","1","348","-1956","144","0","0" +"16714","661","36","1","639","-2142","144","0","0" +"16713","661","37","1","845","-2330","144","0","0" +"16712","661","38","1","965","-2394","175","0","0" +"16711","661","39","1","1181","-2346","175","0","0" +"16710","661","40","1","1347","-2309","179","0","0" +"16709","661","41","1","1517","-2252","170","0","0" +"16708","661","42","1","1577","-2206","102","0","0" +"16707","661","43","1","1641","-2200","102","0","0" +"16706","661","44","1","1764","-2180","115","0","0" +"16705","661","45","1","1878","-2172","121","0","0" +"16704","661","46","1","1938","-2147","121","0","0" +"16703","661","47","1","1966","-2001","121","0","0" +"16702","661","48","1","1993","-1931","115","0","0" +"16701","661","49","1","2067","-1859","109","0","0" +"16700","661","50","1","2167","-1783","136","0","0" +"16699","661","51","1","2257","-1732","139","0","0" +"16698","661","52","1","2340","-1659","139","0","0" +"16697","661","53","1","2362","-1554","139","0","0" +"16696","661","54","1","2387","-1454","133","0","0" +"16695","661","55","1","2457","-1276","145","0","0" +"16694","661","56","1","2485","-1181","146","0","0" +"16693","661","57","1","2516","-948","150","0","0" +"16692","661","58","1","2476","-769","150","0","0" +"16691","661","59","1","2463","-655","141","0","0" +"16690","661","60","1","2513","-534","127","0","0" +"16689","661","61","1","2588","-397","127","0","0" +"16688","661","62","1","2651","-292","123","0","0" +"16687","661","63","1","2735","-253","124","0","0" +"16686","661","64","1","2802","-278","117","0","0" +"16685","661","65","1","2827","-293","109","0","0" +"16752","662","0","1","3978","-1316","250","0","0" +"16753","662","1","1","3952","-1300","250","0","0" +"16754","662","2","1","3915","-1266","243","0","0" +"16755","662","3","1","3896","-1218","246","0","0" +"16756","662","4","1","3906","-1115","257","0","0" +"16757","662","5","1","3947","-1084","268","0","0" +"16758","662","6","1","4033","-1073","292","0","0" +"16773","662","7","1","4166","-1031","318","0","0" +"16774","662","8","1","4299","-975","329","0","0" +"16775","662","9","1","4393","-945","317","0","0" +"16776","662","10","1","4482","-925","321","0","0" +"16777","662","11","1","4566","-861","312","0","0" +"16778","662","12","1","4700","-779","311","0","0" +"16779","662","13","1","4800","-746","306","0","0" +"16780","662","14","1","4899","-736","311","0","0" +"16781","662","15","1","5000","-740","319","0","0" +"16782","662","16","1","5099","-747","336","0","0" +"16783","662","17","1","5199","-764","352","0","0" +"16784","662","18","1","5261","-752","352","0","0" +"16785","662","19","1","5285","-700","352","0","0" +"16786","662","20","1","5272","-633","333","0","0" +"16787","662","21","1","5266","-532","328","0","0" +"16788","662","22","1","5261","-466","328","0","0" +"16789","662","23","1","5250","-332","323","0","0" +"16790","662","24","1","5200","-267","338","0","0" +"16791","662","25","1","5131","-264","361","0","0" +"16792","662","26","1","5069","-337","370","0","0" +"16759","663","0","1","3976","-1316","249","0","0" +"16760","663","1","1","3956","-1304","250","0","0" +"16761","663","2","1","3923","-1294","250","0","0" +"16762","663","3","1","3866","-1300","250","0","0" +"16763","663","4","1","3799","-1333","250","0","0" +"16764","663","5","1","3745","-1388","249","0","0" +"16765","663","6","1","3633","-1459","250","0","0" +"16831","663","7","1","3533","-1515","250","0","0" +"16832","663","8","1","3399","-1525","230","0","0" +"16833","663","9","1","3274","-1556","191","0","0" +"16939","663","10","1","3120","-1622","191","0","0" +"16940","663","11","1","3045","-1733","187","0","0" +"16941","663","12","1","2932","-1865","184","0","0" +"16942","663","13","1","2800","-1950","179","0","0" +"16943","663","14","1","2699","-1978","171","0","0" +"16944","663","15","1","2555","-1993","159","0","0" +"16945","663","16","1","2445","-2008","149","0","0" +"16946","663","17","1","2366","-2064","142","0","0" +"16947","663","18","1","2312","-2131","129","0","0" +"16948","663","19","1","2266","-2208","124","0","0" +"16949","663","20","1","2247","-2333","118","0","0" +"16950","663","21","1","2201","-2486","109","0","0" +"16951","663","22","1","2234","-2543","104","0","0" +"16952","663","23","1","2287","-2538","107","0","0" +"16953","663","24","1","2310","-2521","105","0","0" +"16766","664","0","1","3977","-1316","250","0","0" +"16767","664","1","1","3963","-1307","250","0","0" +"16768","664","2","1","3933","-1288","250","0","0" +"16769","664","3","1","3899","-1239","250","0","0" +"16770","664","4","1","3899","-1165","250","0","0" +"16771","664","5","1","3925","-1100","262","0","0" +"16772","664","6","1","4015","-1072","289","0","0" +"16820","664","7","1","4133","-1040","311","0","0" +"16821","664","8","1","4297","-981","326","0","0" +"16822","664","9","1","4368","-892","341","0","0" +"16823","664","10","1","4466","-839","349","0","0" +"16824","664","11","1","4600","-807","350","0","0" +"16825","664","12","1","4679","-799","346","0","0" +"16826","664","13","1","4733","-756","346","0","0" +"16827","664","14","1","4785","-741","346","0","0" +"16828","664","15","1","4899","-722","346","0","0" +"16829","664","16","1","5066","-755","381","0","0" +"16830","664","17","1","5299","-766","379","0","0" +"16834","664","18","1","5414","-782","403","0","0" +"16835","664","19","1","5498","-899","420","0","0" +"16836","664","20","1","5588","-1033","432","0","0" +"16837","664","21","1","5674","-1160","443","0","0" +"16838","664","22","1","5766","-1206","426","0","0" +"16839","664","23","1","5833","-1219","416","0","0" +"16840","664","24","1","5899","-1257","416","0","0" +"16841","664","25","1","5998","-1318","416","0","0" +"16842","664","26","1","6135","-1452","438","0","0" +"16843","664","27","1","6265","-1573","467","0","0" +"16844","664","28","1","6400","-1625","495","0","0" +"16845","664","29","1","6512","-1733","525","0","0" +"16846","664","30","1","6526","-1843","548","0","0" +"16847","664","31","1","6455","-1914","561","0","0" +"16848","664","32","1","6382","-1929","566","0","0" +"16849","664","33","1","6263","-1935","566","0","0" +"16850","664","34","1","6208","-1947","573","0","0" +"16819","665","0","1","5069","-337","368","0","0" +"16818","665","1","1","5085","-330","370","0","0" +"16817","665","2","1","5123","-325","370","0","0" +"16816","665","3","1","5166","-349","355","0","0" +"16815","665","4","1","5258","-458","328","0","0" +"16814","665","5","1","5266","-532","328","0","0" +"16813","665","6","1","5272","-633","333","0","0" +"16812","665","7","1","5273","-696","350","0","0" +"16811","665","8","1","5260","-740","353","0","0" +"16810","665","9","1","5218","-764","352","0","0" +"16809","665","10","1","5099","-747","336","0","0" +"16808","665","11","1","5000","-740","321","0","0" +"16807","665","12","1","4899","-736","314","0","0" +"16806","665","13","1","4800","-746","306","0","0" +"16805","665","14","1","4667","-789","311","0","0" +"16804","665","15","1","4566","-861","318","0","0" +"16803","665","16","1","4504","-915","318","0","0" +"16802","665","17","1","4393","-945","315","0","0" +"16801","665","18","1","4299","-982","311","0","0" +"16800","665","19","1","4200","-1050","305","0","0" +"16799","665","20","1","4151","-1123","306","0","0" +"16798","665","21","1","4118","-1166","310","0","0" +"16797","665","22","1","4067","-1233","314","0","0" +"16796","665","23","1","4027","-1288","286","0","0" +"16795","665","24","1","3978","-1316","251","0","0" +"16885","666","0","1","6208","-1947","572","0","0" +"16884","666","1","1","6232","-1962","575","0","0" +"16883","666","2","1","6266","-1986","579","0","0" +"16882","666","3","1","6341","-2019","588","0","0" +"16881","666","4","1","6421","-1964","601","0","0" +"16880","666","5","1","6525","-1846","578","0","0" +"16879","666","6","1","6533","-1700","555","0","0" +"16878","666","7","1","6466","-1550","487","0","0" +"16877","666","8","1","6352","-1487","455","0","0" +"16876","666","9","1","6101","-1400","434","0","0" +"16875","666","10","1","5998","-1318","423","0","0" +"16874","666","11","1","5899","-1257","416","0","0" +"16873","666","12","1","5833","-1219","416","0","0" +"16872","666","13","1","5766","-1206","428","0","0" +"16871","666","14","1","5683","-1173","447","0","0" +"16870","666","15","1","5612","-1077","432","0","0" +"16869","666","16","1","5552","-800","432","0","0" +"16868","666","17","1","5454","-760","416","0","0" +"16867","666","18","1","5299","-766","404","0","0" +"16866","666","19","1","5066","-755","381","0","0" +"16865","666","20","1","4899","-722","346","0","0" +"16864","666","21","1","4785","-741","346","0","0" +"16863","666","22","1","4733","-756","346","0","0" +"16862","666","23","1","4679","-799","346","0","0" +"16861","666","24","1","4600","-807","349","0","0" +"16860","666","25","1","4466","-839","350","0","0" +"16859","666","26","1","4368","-892","341","0","0" +"16858","666","27","1","4297","-981","326","0","0" +"16857","666","28","1","4193","-1068","312","0","0" +"16856","666","29","1","4148","-1125","306","0","0" +"16855","666","30","1","4062","-1209","290","0","0" +"16854","666","31","1","4042","-1274","285","0","0" +"16853","666","32","1","4013","-1299","273","0","0" +"16852","666","33","1","3977","-1316","252","0","0" +"16887","668","0","1","2826","-288","108","0","0" +"16888","668","1","1","2847","-297","109","0","0" +"16889","668","2","1","2876","-310","112","0","0" +"16890","668","3","1","2922","-350","115","0","0" +"16891","668","4","1","2915","-400","115","0","0" +"16892","668","5","1","2881","-433","139","0","0" +"16893","668","6","1","2821","-500","173","0","0" +"16894","668","7","1","2771","-599","202","0","0" +"16895","668","8","1","2733","-700","228","0","0" +"16896","668","9","1","2711","-766","255","0","0" +"16897","668","10","1","2700","-857","290","0","0" +"16898","668","11","1","2798","-913","332","0","0" +"16899","668","12","1","2944","-940","348","0","0" +"16900","668","13","1","3108","-1014","350","0","0" +"16901","668","14","1","3199","-1067","325","0","0" +"16902","668","15","1","3295","-1176","327","0","0" +"16903","668","16","1","3366","-1240","307","0","0" +"16904","668","17","1","3414","-1268","299","0","0" +"16905","668","18","1","3508","-1333","284","0","0" +"16906","668","19","1","3546","-1399","254","0","0" +"16907","668","20","1","3600","-1485","245","0","0" +"16908","668","21","1","3733","-1499","262","0","0" +"16909","668","22","1","3828","-1480","283","0","0" +"16910","668","23","1","3933","-1433","262","0","0" +"16911","668","24","1","3971","-1366","262","0","0" +"16912","668","25","1","3979","-1315","253","0","0" +"16938","669","0","1","3979","-1315","251","0","0" +"16937","669","1","1","3955","-1304","252","0","0" +"16936","669","2","1","3920","-1293","254","0","0" +"16935","669","3","1","3867","-1299","254","0","0" +"16934","669","4","1","3766","-1372","254","0","0" +"16933","669","5","1","3646","-1466","245","0","0" +"16932","669","6","1","3557","-1426","254","0","0" +"16931","669","7","1","3508","-1333","284","0","0" +"16930","669","8","1","3414","-1268","299","0","0" +"16929","669","9","1","3366","-1240","307","0","0" +"16928","669","10","1","3295","-1176","327","0","0" +"16927","669","11","1","3199","-1067","325","0","0" +"16926","669","12","1","3108","-1014","350","0","0" +"16925","669","13","1","2944","-940","348","0","0" +"16924","669","14","1","2798","-913","332","0","0" +"16923","669","15","1","2700","-857","290","0","0" +"16922","669","16","1","2711","-766","255","0","0" +"16921","669","17","1","2733","-700","228","0","0" +"16920","669","18","1","2771","-599","202","0","0" +"16919","669","19","1","2740","-473","173","0","0" +"16918","669","20","1","2693","-339","150","0","0" +"16917","669","21","1","2669","-265","150","0","0" +"16916","669","22","1","2706","-233","140","0","0" +"16915","669","23","1","2759","-249","129","0","0" +"16914","669","24","1","2805","-279","115","0","0" +"16913","669","25","1","2826","-288","109","0","0" +"16978","670","0","1","2310","-2521","103","0","0" +"16977","670","1","1","2299","-2531","107","0","0" +"16976","670","2","1","2274","-2542","109","0","0" +"16975","670","3","1","2233","-2547","109","0","0" +"16974","670","4","1","2206","-2520","102","0","0" +"16973","670","5","1","2212","-2452","104","0","0" +"16972","670","6","1","2247","-2333","118","0","0" +"16971","670","7","1","2266","-2208","124","0","0" +"16970","670","8","1","2312","-2131","129","0","0" +"16969","670","9","1","2366","-2064","142","0","0" +"16968","670","10","1","2445","-2008","149","0","0" +"16967","670","11","1","2555","-1993","159","0","0" +"16966","670","12","1","2699","-1978","171","0","0" +"16965","670","13","1","2800","-1950","179","0","0" +"16964","670","14","1","2932","-1865","184","0","0" +"16963","670","15","1","3133","-1746","188","0","0" +"16962","670","16","1","3266","-1685","191","0","0" +"16961","670","17","1","3462","-1607","187","0","0" +"16960","670","18","1","3541","-1519","187","0","0" +"16959","670","19","1","3632","-1484","190","0","0" +"16958","670","20","1","3700","-1491","201","0","0" +"16957","670","21","1","3805","-1553","229","0","0" +"16956","670","22","1","3872","-1484","238","0","0" +"16955","670","23","1","3966","-1366","255","0","0" +"16954","670","24","1","3976","-1316","251","0","0" +"16981","671","0","1","3000","-3204","190","0","0" +"16982","671","1","1","2992","-3208","194","0","0" +"16983","671","2","1","2974","-3219","199","0","0" +"16984","671","3","1","2933","-3244","199","0","0" +"16985","671","4","1","2851","-3296","161","0","0" +"16986","671","5","1","2773","-3310","157","0","0" +"16987","671","6","1","2719","-3263","157","0","0" +"16988","671","7","1","2711","-3167","174","0","0" +"16989","671","8","1","2629","-3033","173","0","0" +"16990","671","9","1","2570","-2963","173","0","0" +"16991","671","10","1","2540","-2841","173","0","0" +"16992","671","11","1","2447","-2721","162","0","0" +"16993","671","12","1","2252","-2678","135","0","0" +"16994","671","13","1","2170","-2632","127","0","0" +"16995","671","14","1","2061","-2511","109","0","0" +"17030","671","15","1","1955","-2289","109","0","0" +"17031","671","16","1","1932","-2176","109","0","0" +"17032","671","17","1","1971","-1988","109","0","0" +"17033","671","18","1","2043","-1874","110","0","0" +"17034","671","19","1","2194","-1769","117","0","0" +"17035","671","20","1","2306","-1692","132","0","0" +"17036","671","21","1","2354","-1609","134","0","0" +"17037","671","22","1","2391","-1443","132","0","0" +"17038","671","23","1","2438","-1325","143","0","0" +"17039","671","24","1","2474","-1192","140","0","0" +"17040","671","25","1","2514","-1024","149","0","0" +"17041","671","26","1","2489","-852","149","0","0" +"17042","671","27","1","2455","-683","140","0","0" +"17043","671","28","1","2447","-501","140","0","0" +"17044","671","29","1","2487","-376","133","0","0" +"17045","671","30","1","2552","-327","127","0","0" +"17046","671","31","1","2668","-248","129","0","0" +"17047","671","32","1","2762","-211","126","0","0" +"17048","671","33","1","2808","-219","121","0","0" +"17049","671","34","1","2825","-267","117","0","0" +"17050","671","35","1","2827","-282","112","0","0" +"17051","671","36","1","2828","-290","107","0","0" +"16996","672","0","1","3979","-1314","251","0","0" +"16997","672","1","1","3963","-1307","252","0","0" +"16998","672","2","1","3927","-1296","254","0","0" +"16999","672","3","1","3883","-1295","254","0","0" +"17000","672","4","1","3812","-1333","256","0","0" +"17001","672","5","1","3726","-1399","259","0","0" +"17002","672","6","1","3635","-1397","259","0","0" +"17003","672","7","1","3522","-1358","270","0","0" +"17004","672","8","1","3421","-1268","302","0","0" +"17005","672","9","1","3333","-1200","331","0","0" +"17006","672","10","1","3200","-1058","323","0","0" +"17007","672","11","1","3185","-950","323","0","0" +"17008","672","12","1","3187","-885","310","0","0" +"17009","672","13","1","3235","-787","285","0","0" +"17010","672","14","1","3238","-704","276","0","0" +"17011","672","15","1","3192","-602","276","0","0" +"17012","672","16","1","3159","-524","199","0","0" +"17013","672","17","1","3153","-425","143","0","0" +"17014","672","18","1","3141","-307","129","0","0" +"17015","672","19","1","3145","-175","115","0","0" +"17016","672","20","1","3095","-76","115","0","0" +"17017","672","21","1","3002","51","125","0","0" +"17018","672","22","1","3045","187","64","0","0" +"17019","672","23","1","3134","229","37","0","0" +"17020","672","24","1","3193","274","20","0","0" +"17021","672","25","1","3196","432","20","0","0" +"17022","672","26","1","3276","533","20","0","0" +"17023","672","27","1","3403","617","20","0","0" +"17024","672","28","1","3500","703","20","0","0" +"17025","672","29","1","3513","766","20","0","0" +"17026","672","30","1","3496","833","18","0","0" +"17027","672","31","1","3456","900","17","0","0" +"17028","672","32","1","3389","966","15","0","0" +"17029","672","33","1","3373","999","7","0","0" +"17086","673","0","1","3373","999","5","0","0" +"17085","673","1","1","3390","1041","11","0","0" +"17084","673","2","1","3422","1072","13","0","0" +"17083","673","3","1","3500","1074","18","0","0" +"17082","673","4","1","3569","996","18","0","0" +"17081","673","5","1","3567","866","20","0","0" +"17080","673","6","1","3500","703","20","0","0" +"17079","673","7","1","3326","544","18","0","0" +"17078","673","8","1","3206","433","18","0","0" +"17077","673","9","1","3199","284","24","0","0" +"17076","673","10","1","3134","229","37","0","0" +"17075","673","11","1","3045","187","64","0","0" +"17074","673","12","1","3005","45","125","0","0" +"17073","673","13","1","3095","-76","122","0","0" +"17072","673","14","1","3145","-175","128","0","0" +"17071","673","15","1","3141","-307","139","0","0" +"17070","673","16","1","3153","-425","160","0","0" +"17069","673","17","1","3159","-524","212","0","0" +"17068","673","18","1","3192","-602","272","0","0" +"17067","673","19","1","3238","-704","285","0","0" +"17066","673","20","1","3235","-787","285","0","0" +"17065","673","21","1","3187","-885","310","0","0" +"17064","673","22","1","3185","-950","323","0","0" +"17063","673","23","1","3200","-1058","316","0","0" +"17062","673","24","1","3333","-1200","331","0","0" +"17061","673","25","1","3421","-1268","302","0","0" +"17060","673","26","1","3522","-1358","270","0","0" +"17059","673","27","1","3635","-1391","259","0","0" +"17058","673","28","1","3726","-1399","261","0","0" +"17057","673","29","1","3845","-1418","258","0","0" +"17056","673","30","1","3932","-1411","257","0","0" +"17055","673","31","1","3967","-1365","257","0","0" +"17054","673","32","1","3979","-1314","252","0","0" +"17194","674","0","1","3000","-3202","190","0","0" +"17195","674","1","1","2990","-3207","193","0","0" +"17196","674","2","1","2965","-3219","196","0","0" +"17197","674","3","1","2928","-3238","189","0","0" +"17198","674","4","1","2866","-3286","166","0","0" +"17199","674","5","1","2799","-3312","152","0","0" +"17200","674","6","1","2733","-3399","146","0","0" +"17201","674","7","1","2730","-3564","124","0","0" +"17202","674","8","1","2703","-3696","124","0","0" +"17203","674","9","1","2696","-3837","117","0","0" +"17204","674","10","1","2722","-3881","103","0","0" +"17087","675","0","1","3000","-3202","190","0","0" +"17088","675","1","1","2991","-3209","193","0","0" +"17089","675","2","1","2978","-3218","193","0","0" +"17090","675","3","1","2933","-3255","186","0","0" +"17091","675","4","1","2866","-3291","167","0","0" +"17092","675","5","1","2788","-3317","145","0","0" +"17093","675","6","1","2730","-3281","145","0","0" +"17094","675","7","1","2719","-3192","160","0","0" +"17095","675","8","1","2674","-3100","167","0","0" +"17096","675","9","1","2601","-3006","167","0","0" +"17097","675","10","1","2558","-2933","167","0","0" +"17098","675","11","1","2545","-2881","167","0","0" +"17099","675","12","1","2544","-2801","173","0","0" +"17100","675","13","1","2556","-2733","171","0","0" +"17101","675","14","1","2614","-2633","166","0","0" +"17102","675","15","1","2641","-2577","188","0","0" +"17103","675","16","1","2733","-2492","193","0","0" +"17104","675","17","1","2775","-2433","207","0","0" +"17105","675","18","1","2727","-2331","211","0","0" +"17106","675","19","1","2732","-2232","208","0","0" +"17107","675","20","1","2792","-2167","208","0","0" +"17108","675","21","1","2901","-2125","208","0","0" +"17109","675","22","1","2980","-2067","209","0","0" +"17110","675","23","1","2970","-1933","189","0","0" +"17111","675","24","1","2982","-1841","184","0","0" +"17112","675","25","1","3140","-1733","184","0","0" +"17113","675","26","1","3313","-1663","184","0","0" +"17114","675","27","1","3465","-1608","183","0","0" +"17115","675","28","1","3526","-1521","183","0","0" +"17116","675","29","1","3633","-1489","195","0","0" +"17117","675","30","1","3715","-1505","209","0","0" +"17118","675","31","1","3799","-1559","227","0","0" +"17119","675","32","1","3933","-1431","251","0","0" +"17120","675","33","1","3973","-1355","259","0","0" +"17121","675","34","1","3979","-1315","252","0","0" +"17156","676","0","1","3979","-1315","251","0","0" +"17155","676","1","1","3966","-1310","251","0","0" +"17154","676","2","1","3936","-1300","251","0","0" +"17153","676","3","1","3894","-1298","251","0","0" +"17152","676","4","1","3800","-1348","241","0","0" +"17151","676","5","1","3640","-1466","208","0","0" +"17150","676","6","1","3517","-1513","183","0","0" +"17149","676","7","1","3366","-1525","183","0","0" +"17148","676","8","1","3248","-1604","183","0","0" +"17147","676","9","1","3166","-1732","183","0","0" +"17146","676","10","1","2990","-1819","184","0","0" +"17145","676","11","1","2970","-1933","189","0","0" +"17144","676","12","1","2992","-2044","210","0","0" +"17143","676","13","1","2904","-2128","213","0","0" +"17142","676","14","1","2790","-2153","213","0","0" +"17141","676","15","1","2717","-2248","213","0","0" +"17140","676","16","1","2726","-2343","213","0","0" +"17139","676","17","1","2773","-2430","213","0","0" +"17138","676","18","1","2734","-2498","198","0","0" +"17137","676","19","1","2641","-2577","188","0","0" +"17136","676","20","1","2599","-2666","173","0","0" +"17135","676","21","1","2548","-2747","171","0","0" +"17134","676","22","1","2537","-2842","171","0","0" +"17133","676","23","1","2558","-2933","167","0","0" +"17132","676","24","1","2606","-3004","170","0","0" +"17131","676","25","1","2677","-3093","170","0","0" +"17130","676","26","1","2785","-3123","180","0","0" +"17129","676","27","1","2891","-3145","198","0","0" +"17128","676","28","1","2966","-3166","199","0","0" +"17127","676","29","1","3000","-3202","191","0","0" +"17193","677","0","1","2828","-290","108","0","0" +"17192","677","1","1","2836","-290","111","0","0" +"17191","677","2","1","2862","-293","115","0","0" +"17190","677","3","1","2899","-306","121","0","0" +"17189","677","4","1","2928","-363","123","0","0" +"17188","677","5","1","2886","-451","121","0","0" +"17187","677","6","1","2709","-541","118","0","0" +"17186","677","7","1","2623","-592","121","0","0" +"17185","677","8","1","2487","-676","140","0","0" +"17184","677","9","1","2489","-852","149","0","0" +"17183","677","10","1","2514","-1024","149","0","0" +"17182","677","11","1","2461","-1198","134","0","0" +"17181","677","12","1","2425","-1348","134","0","0" +"17180","677","13","1","2391","-1443","133","0","0" +"17179","677","14","1","2354","-1609","133","0","0" +"17178","677","15","1","2306","-1692","132","0","0" +"17177","677","16","1","2194","-1769","113","0","0" +"17176","677","17","1","2043","-1874","110","0","0" +"17175","677","18","1","1971","-1988","109","0","0" +"17174","677","19","1","1934","-2157","102","0","0" +"17173","677","20","1","1955","-2289","103","0","0" +"17172","677","21","1","2061","-2511","109","0","0" +"17171","677","22","1","2170","-2632","127","0","0" +"17170","677","23","1","2252","-2678","135","0","0" +"17169","677","24","1","2447","-2721","162","0","0" +"17168","677","25","1","2540","-2841","173","0","0" +"17167","677","26","1","2570","-2963","173","0","0" +"17166","677","27","1","2673","-3091","178","0","0" +"17165","677","28","1","2718","-3114","181","0","0" +"17164","677","29","1","2819","-3125","200","0","0" +"17163","677","30","1","2925","-3157","200","0","0" +"17162","677","31","1","2968","-3170","197","0","0" +"17161","677","32","1","2985","-3184","195","0","0" +"17160","677","33","1","3000","-3204","190","0","0" +"17215","678","0","1","2722","-3881","101","0","0" +"17214","678","1","1","2734","-3880","104","0","0" +"17213","678","2","1","2754","-3872","106","0","0" +"17212","678","3","1","2777","-3836","105","0","0" +"17211","678","4","1","2852","-3731","103","0","0" +"17210","678","5","1","2886","-3633","103","0","0" +"17209","678","6","1","2948","-3499","129","0","0" +"17208","678","7","1","2988","-3387","161","0","0" +"17207","678","8","1","3000","-3299","186","0","0" +"17206","678","9","1","3000","-3233","195","0","0" +"17205","678","10","1","3000","-3202","192","0","0" +"17220","679","0","530","2972","5506","144","0","0" +"17221","679","1","530","2954","5504","149","0","0" +"17222","679","2","530","2933","5501","154","0","0" +"17223","679","3","530","2883","5489","165","0","0" +"17224","679","4","530","2834","5499","173","0","0" +"17225","679","5","530","2733","5533","195","0","0" +"17226","679","6","530","2566","5697","268","0","0" +"17227","679","7","530","2466","5751","318","0","0" +"17228","679","8","530","2302","5749","323","0","0" +"17229","679","9","530","2098","5700","316","0","0" +"17230","679","10","530","2000","5680","309","0","0" +"17231","679","11","530","1919","5625","293","0","0" +"17232","679","12","530","1855","5535","278","0","0" +"17234","680","0","0","-6553","-1169","310","0","0" +"17235","680","1","0","-6562","-1166","313","0","0" +"17236","680","2","0","-6583","-1158","319","0","0" +"17237","680","3","0","-6632","-1134","318","0","0" +"17238","680","4","0","-6767","-1033","319","0","0" +"17239","680","5","0","-6933","-999","319","0","0" +"17240","680","6","0","-7100","-933","319","0","0" +"17241","680","7","0","-7200","-832","334","0","0" +"17242","680","8","0","-7380","-747","341","0","0" +"17243","680","9","0","-7566","-700","244","0","0" +"17244","680","10","0","-7804","-733","231","0","0" +"17245","680","11","0","-8033","-733","215","0","0" +"17246","680","12","0","-8151","-632","212","0","0" +"17247","680","13","0","-8233","-466","213","0","0" +"17248","680","14","0","-8300","-383","170","0","0" +"17249","680","15","0","-8416","-399","153","0","0" +"17250","680","16","0","-8521","-466","153","0","0" +"17251","680","17","0","-8611","-496","157","0","0" +"17252","680","18","0","-8699","-455","156","0","0" +"17253","680","19","0","-8766","-383","155","0","0" +"17254","680","20","0","-8923","-192","156","0","0" +"17255","680","21","0","-8998","-65","153","0","0" +"17256","680","22","0","-9093","63","158","0","0" +"17257","680","23","0","-9136","233","177","0","0" +"17258","680","24","0","-9039","381","152","0","0" +"17259","680","25","0","-8933","411","138","0","0" +"17260","680","26","0","-8833","479","112","0","0" +"17287","681","0","0","-8850","498","110","0","0" +"17286","681","1","0","-8866","487","113","0","0" +"17285","681","2","0","-8900","466","119","0","0" +"17284","681","3","0","-8983","466","128","0","0" +"17283","681","4","0","-9110","472","147","0","0" +"17282","681","5","0","-9198","360","158","0","0" +"17281","681","6","0","-9132","1","164","0","0" +"17280","681","7","0","-8923","-192","160","0","0" +"17279","681","8","0","-8766","-383","159","0","0" +"17278","681","9","0","-8699","-455","159","0","0" +"17277","681","10","0","-8611","-496","157","0","0" +"17276","681","11","0","-8521","-466","160","0","0" +"17275","681","12","0","-8416","-399","166","0","0" +"17274","681","13","0","-8300","-383","194","0","0" +"17273","681","14","0","-8233","-466","216","0","0" +"17272","681","15","0","-8133","-666","215","0","0" +"17271","681","16","0","-7966","-766","218","0","0" +"17270","681","17","0","-7804","-733","232","0","0" +"17269","681","18","0","-7566","-700","279","0","0" +"17268","681","19","0","-7380","-747","342","0","0" +"17267","681","20","0","-7199","-866","344","0","0" +"17266","681","21","0","-6999","-966","320","0","0" +"17265","681","22","0","-6799","-966","320","0","0" +"17264","681","23","0","-6632","-1032","320","0","0" +"17263","681","24","0","-6572","-1140","320","0","0" +"17262","681","25","0","-6553","-1169","311","0","0" +"17289","682","0","0","-12417","145","4","0","0" +"17290","682","1","0","-12404","152","10","0","0" +"17291","682","2","0","-12387","168","14","0","0" +"17292","682","3","0","-12374","210","18","0","0" +"17293","682","4","0","-12315","298","26","0","0" +"17294","682","5","0","-12167","359","72","0","0" +"17295","682","6","0","-11862","316","81","0","0" +"17296","682","7","0","-11552","276","111","0","0" +"17297","682","8","0","-11233","295","111","0","0" +"17298","682","9","0","-10952","234","111","0","0" +"17299","682","10","0","-10615","83","121","0","0" +"17300","682","11","0","-10257","-100","134","0","0" +"17301","682","12","0","-9529","-699","155","0","0" +"17302","682","13","0","-9100","-1032","155","0","0" +"17303","682","14","0","-8708","-1163","237","0","0" +"17304","682","15","0","-8500","-1199","264","0","0" +"17305","682","16","0","-8233","-1299","211","0","0" +"17306","682","17","0","-7943","-1680","188","0","0" +"17307","682","18","0","-7774","-1936","179","0","0" +"17308","682","19","0","-7688","-2051","177","0","0" +"17309","682","20","0","-7502","-2189","167","0","0" +"17330","683","0","0","-7502","-2189","166","0","0" +"17329","683","1","0","-7543","-2179","169","0","0" +"17328","683","2","0","-7600","-2136","172","0","0" +"17327","683","3","0","-7712","-2018","176","0","0" +"17326","683","4","0","-7884","-1805","177","0","0" +"17325","683","5","0","-7966","-1566","178","0","0" +"17324","683","6","0","-8233","-1292","178","0","0" +"17323","683","7","0","-8500","-1199","264","0","0" +"17322","683","8","0","-8741","-1181","210","0","0" +"17321","683","9","0","-9199","-1066","140","0","0" +"17320","683","10","0","-9709","-951","126","0","0" +"17319","683","11","0","-10515","-838","133","0","0" +"17318","683","12","0","-10854","-670","147","0","0" +"17317","683","13","0","-11247","-371","132","0","0" +"17316","683","14","0","-11473","-294","136","0","0" +"17315","683","15","0","-12000","-365","54","0","0" +"17314","683","16","0","-12399","-286","29","0","0" +"17313","683","17","0","-12560","-123","29","0","0" +"17312","683","18","0","-12581","9","29","0","0" +"17311","683","19","0","-12460","120","30","0","0" +"18325","683","20","0","-12413","146","7","0","0" +"17362","685","0","530","1855","5535","277","0","0" +"17361","685","1","530","1850","5522","289","0","0" +"17360","685","2","530","1839","5489","297","0","0" +"17359","685","3","530","1833","5400","312","0","0" +"17358","685","4","530","1968","5270","335","0","0" +"17357","685","5","530","2283","5192","320","0","0" +"17356","685","6","530","2599","5279","329","0","0" +"17355","685","7","530","2861","5289","309","0","0" +"17354","685","8","530","2970","5348","226","0","0" +"17353","685","9","530","2993","5414","166","0","0" +"17352","685","10","530","2972","5506","146","0","0" +"17363","686","0","530","-672","2718","95","0","0" +"17364","686","1","530","-672","2703","97","0","0" +"17365","686","2","530","-671","2666","101","0","0" +"17366","686","3","530","-683","2617","108","0","0" +"17367","686","4","530","-712","2533","108","0","0" +"17368","686","5","530","-800","2467","108","0","0" +"17369","686","6","530","-932","2499","108","0","0" +"17370","686","7","530","-1066","2698","108","0","0" +"17371","686","8","530","-1232","2966","108","0","0" +"17372","686","9","530","-1432","3365","108","0","0" +"17373","686","10","530","-1600","3633","133","0","0" +"17374","686","11","530","-1700","3966","133","0","0" +"17375","686","12","530","-1821","4145","133","0","0" +"17376","686","13","530","-1899","4366","21","0","0" +"17377","686","14","530","-1919","4519","27","0","0" +"17378","686","15","530","-1954","4642","27","0","0" +"17379","686","16","530","-1959","4833","27","0","0" +"17380","686","17","530","-1966","5000","45","0","0" +"17381","686","18","530","-1943","5187","45","0","0" +"17382","686","19","530","-1881","5283","8","0","0" +"17383","686","20","530","-1833","5303","-9","0","0" +"17404","687","0","530","-1833","5303","-11","0","0" +"17403","687","1","530","-1821","5307","-8","0","0" +"17402","687","2","530","-1796","5314","-2","0","0" +"17401","687","3","530","-1743","5321","9","0","0" +"17400","687","4","530","-1635","5289","44","0","0" +"17399","687","5","530","-1574","5154","88","0","0" +"17398","687","6","530","-1499","4867","136","0","0" +"17397","687","7","530","-1544","4412","159","0","0" +"17396","687","8","530","-1633","4088","175","0","0" +"17395","687","9","530","-1631","3700","154","0","0" +"17394","687","10","530","-1333","3233","120","0","0" +"17393","687","11","530","-1129","2936","105","0","0" +"17392","687","12","530","-881","2719","120","0","0" +"17391","687","13","530","-738","2689","115","0","0" +"17390","687","14","530","-690","2700","103","0","0" +"17389","687","15","530","-672","2718","96","0","0" +"17405","688","0","1","-7219","-3733","9","0","0" +"17406","688","1","1","-7227","-3753","14","0","0" +"17407","688","2","1","-7236","-3780","18","0","0" +"17408","688","3","1","-7251","-3841","26","0","0" +"17409","688","4","1","-7265","-3966","31","0","0" +"17410","688","5","1","-7168","-4300","33","0","0" +"17411","688","6","1","-7003","-4607","33","0","0" +"17412","688","7","1","-6769","-4853","33","0","0" +"17413","688","8","1","-6466","-4965","33","0","0" +"17414","688","9","1","-5898","-4998","33","0","0" +"17415","688","10","1","-5266","-5067","33","0","0" +"17416","688","11","1","-4833","-5033","33","0","0" +"17430","688","12","1","-3933","-4799","33","0","0" +"17431","688","13","1","-3534","-4634","33","0","0" +"17432","688","14","1","-2899","-4433","33","0","0" +"17433","688","15","1","-2401","-4235","33","0","0" +"17434","688","16","1","-1701","-4032","33","0","0" +"17435","688","17","1","-1247","-3952","37","0","0" +"17440","688","18","1","-1000","-3866","33","0","0" +"17441","688","19","1","-913","-3817","21","0","0" +"17442","688","20","1","-895","-3772","13","0","0" +"17417","689","0","1","-7049","-3780","10","0","0" +"17418","689","1","1","-7062","-3783","14","0","0" +"17419","689","2","1","-7079","-3795","21","0","0" +"17420","689","3","1","-7099","-3834","24","0","0" +"17421","689","4","1","-7105","-3911","25","0","0" +"17422","689","5","1","-7067","-4098","25","0","0" +"17423","689","6","1","-7034","-4266","25","0","0" +"17424","689","7","1","-7001","-4465","25","0","0" +"17425","689","8","1","-6868","-4696","44","0","0" +"17426","689","9","1","-6566","-4899","44","0","0" +"17427","689","10","1","-6067","-4932","44","0","0" +"17428","689","11","1","-5432","-4933","44","0","0" +"17429","689","12","1","-4867","-4934","44","0","0" +"17436","689","13","1","-3833","-4900","44","0","0" +"17437","689","14","1","-3001","-4565","44","0","0" +"17438","689","15","1","-2268","-4362","44","0","0" +"17439","689","16","1","-1335","-4100","44","0","0" +"17443","689","17","1","-1000","-3866","37","0","0" +"17444","689","18","1","-907","-3811","22","0","0" +"17445","689","19","1","-894","-3773","13","0","0" +"17466","690","0","1","-895","-3772","12","0","0" +"17465","690","1","1","-890","-3789","18","0","0" +"17464","690","2","1","-897","-3842","28","0","0" +"17463","690","3","1","-1001","-3932","32","0","0" +"17462","690","4","1","-1330","-4021","40","0","0" +"17461","690","5","1","-2258","-4266","42","0","0" +"17460","690","6","1","-2930","-4465","33","0","0" +"17459","690","7","1","-3567","-4667","33","0","0" +"17458","690","8","1","-4666","-4866","33","0","0" +"17457","690","9","1","-5366","-4900","33","0","0" +"17456","690","10","1","-6426","-4933","33","0","0" +"17455","690","11","1","-6910","-4708","33","0","0" +"17454","690","12","1","-7133","-4334","33","0","0" +"17453","690","13","1","-7234","-3933","36","0","0" +"17452","690","14","1","-7221","-3733","10","0","0" +"17486","691","0","1","-894","-3773","12","0","0" +"17485","691","1","1","-887","-3792","17","0","0" +"17484","691","2","1","-894","-3832","24","0","0" +"17483","691","3","1","-999","-3932","35","0","0" +"17482","691","4","1","-1333","-4066","45","0","0" +"17481","691","5","1","-2199","-4299","45","0","0" +"17480","691","6","1","-3231","-4600","45","0","0" +"17479","691","7","1","-3667","-4732","45","0","0" +"17478","691","8","1","-4631","-4932","44","0","0" +"17477","691","9","1","-5332","-4933","44","0","0" +"17476","691","10","1","-6436","-4902","44","0","0" +"17475","691","11","1","-6891","-4707","44","0","0" +"17474","691","12","1","-7033","-4166","44","0","0" +"17473","691","13","1","-7032","-3900","30","0","0" +"17472","691","14","1","-7037","-3815","25","0","0" +"17471","691","15","1","-7049","-3780","12","0","0" +"17487","692","0","1","-3144","-2842","35","0","0" +"17488","692","1","1","-3133","-2843","39","0","0" +"17489","692","2","1","-3120","-2844","44","0","0" +"17490","692","3","1","-3102","-2842","52","0","0" +"17491","692","4","1","-3044","-2831","79","0","0" +"17492","692","5","1","-2902","-2773","135","0","0" +"17493","692","6","1","-2766","-2633","192","0","0" +"17494","692","7","1","-2652","-2563","235","0","0" +"17495","692","8","1","-2433","-2400","162","0","0" +"17496","692","9","1","-2352","-2264","131","0","0" +"17497","692","10","1","-2316","-2067","123","0","0" +"17498","692","11","1","-2322","-1980","116","0","0" +"17499","692","12","1","-2366","-1923","106","0","0" +"17500","692","13","1","-2380","-1879","98","0","0" +"17514","693","0","1","-2380","-1879","96","0","0" +"17513","693","1","1","-2367","-1876","98","0","0" +"17512","693","2","1","-2333","-1872","105","0","0" +"17511","693","3","1","-2265","-1899","109","0","0" +"17510","693","4","1","-2233","-2000","113","0","0" +"17509","693","5","1","-2266","-2164","121","0","0" +"17508","693","6","1","-2433","-2300","140","0","0" +"17507","693","7","1","-2750","-2520","217","0","0" +"17506","693","8","1","-2965","-2565","227","0","0" +"17505","693","9","1","-3160","-2613","153","0","0" +"17504","693","10","1","-3247","-2750","121","0","0" +"17503","693","11","1","-3222","-2829","96","0","0" +"17502","693","12","1","-3144","-2842","37","0","0" +"17515","694","0","1","-3150","-2843","34","0","0" +"17516","694","1","1","-3140","-2843","39","0","0" +"17517","694","2","1","-3125","-2844","47","0","0" +"17518","694","3","1","-3103","-2835","55","0","0" +"17519","694","4","1","-3031","-2795","74","0","0" +"17520","694","5","1","-3063","-2728","93","0","0" +"17521","694","6","1","-3177","-2742","93","0","0" +"17522","694","7","1","-3296","-2730","93","0","0" +"17523","694","8","1","-3458","-2678","93","0","0" +"17524","694","9","1","-3603","-2583","121","0","0" +"17525","694","10","1","-3868","-2365","157","0","0" +"17526","694","11","1","-4040","-2217","157","0","0" +"17527","694","12","1","-4187","-1942","128","0","0" +"17528","694","13","1","-4485","-1855","128","0","0" +"17529","694","14","1","-4772","-1865","127","0","0" +"17530","694","15","1","-5010","-2010","128","0","0" +"17531","694","16","1","-5162","-2136","128","0","0" +"17532","694","17","1","-5320","-2307","122","0","0" +"17533","694","18","1","-5372","-2381","113","0","0" +"17534","694","19","1","-5395","-2404","100","0","0" +"17535","694","20","1","-5408","-2416","92","0","0" +"17556","695","0","1","-5408","-2416","92","0","0" +"17555","695","1","1","-5421","-2416","98","0","0" +"17554","695","2","1","-5449","-2404","108","0","0" +"17553","695","3","1","-5487","-2366","114","0","0" +"17552","695","4","1","-5466","-2266","113","0","0" +"17551","695","5","1","-5166","-2266","135","0","0" +"17550","695","6","1","-4898","-2266","166","0","0" +"17549","695","7","1","-4334","-2266","193","0","0" +"17548","695","8","1","-3826","-2368","149","0","0" +"17547","695","9","1","-3630","-2605","122","0","0" +"17546","695","10","1","-3470","-2805","93","0","0" +"17545","695","11","1","-3360","-2897","93","0","0" +"17544","695","12","1","-3201","-2913","86","0","0" +"17543","695","13","1","-3136","-2894","55","0","0" +"17542","695","14","1","-3130","-2859","46","0","0" +"17541","695","15","1","-3140","-2843","39","0","0" +"17540","695","16","1","-3150","-2843","34","0","0" +"17557","696","0","1","-895","-3773","12","0","0" +"17558","696","1","1","-890","-3789","19","0","0" +"17559","696","2","1","-883","-3828","33","0","0" +"17560","696","3","1","-895","-3884","44","0","0" +"17561","696","4","1","-966","-3967","44","0","0" +"17562","696","5","1","-1066","-4000","46","0","0" +"17563","696","6","1","-1267","-3966","46","0","0" +"17564","696","7","1","-1499","-3901","74","0","0" +"17565","696","8","1","-1833","-3866","74","0","0" +"17566","696","9","1","-2168","-3867","74","0","0" +"17567","696","10","1","-2467","-3800","74","0","0" +"17568","696","11","1","-2733","-3632","74","0","0" +"17569","696","12","1","-2888","-3517","92","0","0" +"17570","696","13","1","-2999","-3299","86","0","0" +"17571","696","14","1","-3133","-3100","86","0","0" +"17572","696","15","1","-3138","-2933","66","0","0" +"17573","696","16","1","-3123","-2864","47","0","0" +"17574","696","17","1","-3148","-2842","37","0","0" +"17592","697","0","1","-3148","-2842","35","0","0" +"17591","697","1","1","-3132","-2840","42","0","0" +"17590","697","2","1","-3092","-2835","62","0","0" +"17589","697","3","1","-3010","-2834","85","0","0" +"17588","697","4","1","-2711","-2999","85","0","0" +"17587","697","5","1","-2229","-3234","221","0","0" +"17586","697","6","1","-1712","-3550","162","0","0" +"17585","697","7","1","-1253","-3820","102","0","0" +"17584","697","8","1","-1029","-3924","68","0","0" +"17583","697","9","1","-895","-3850","32","0","0" +"17582","697","10","1","-895","-3773","13","0","0" +"17593","698","0","1","-895","-3773","12","0","0" +"17594","698","1","1","-889","-3782","17","0","0" +"17595","698","2","1","-863","-3818","30","0","0" +"17596","698","3","1","-786","-3920","53","0","0" +"17597","698","4","1","-732","-3947","53","0","0" +"17598","698","5","1","-633","-3934","68","0","0" +"17599","698","6","1","-500","-3833","83","0","0" +"17600","698","7","1","-166","-3467","119","0","0" +"17601","698","8","1","68","-3164","134","0","0" +"17602","698","9","1","300","-2866","153","0","0" +"17603","698","10","1","699","-2565","143","0","0" +"17604","698","11","1","900","-2466","207","0","0" +"17605","698","12","1","1033","-2442","192","0","0" +"17606","698","13","1","1267","-2291","174","0","0" +"17607","698","14","1","1401","-2258","107","0","0" +"17608","698","15","1","1577","-2224","105","0","0" +"17609","698","16","1","1799","-2174","106","0","0" +"17610","698","17","1","1931","-2152","106","0","0" +"17611","698","18","1","2009","-1906","107","0","0" +"17612","698","19","1","2307","-1687","134","0","0" +"17613","698","20","1","2372","-1500","133","0","0" +"17614","698","21","1","2445","-1302","141","0","0" +"17615","698","22","1","2514","-1001","139","0","0" +"17616","698","23","1","2488","-832","144","0","0" +"17668","698","24","1","2488","-733","139","0","0" +"17669","698","25","1","2528","-566","129","0","0" +"17670","698","26","1","2561","-443","128","0","0" +"17671","698","27","1","2665","-284","128","0","0" +"17672","698","28","1","2732","-247","128","0","0" +"17673","698","29","1","2802","-278","118","0","0" +"17674","698","30","1","2826","-289","109","0","0" +"17658","699","0","1","2826","-289","107","0","0" +"17657","699","1","1","2837","-295","111","0","0" +"17656","699","2","1","2866","-317","118","0","0" +"17655","699","3","1","2887","-367","130","0","0" +"17654","699","4","1","2865","-469","136","0","0" +"17653","699","5","1","2763","-516","136","0","0" +"17652","699","6","1","2504","-651","136","0","0" +"17651","699","7","1","2476","-766","142","0","0" +"17650","699","8","1","2518","-1000","145","0","0" +"17649","699","9","1","2445","-1301","141","0","0" +"17648","699","10","1","2378","-1500","131","0","0" +"17647","699","11","1","2337","-1652","132","0","0" +"17646","699","12","1","2253","-1734","125","0","0" +"17645","699","13","1","2021","-1902","114","0","0" +"17644","699","14","1","1965","-2013","110","0","0" +"17643","699","15","1","1917","-2166","110","0","0" +"17642","699","16","1","1703","-2193","106","0","0" +"17641","699","17","1","1430","-2253","106","0","0" +"17640","699","18","1","1270","-2285","154","0","0" +"17639","699","19","1","1100","-2399","185","0","0" +"17638","699","20","1","869","-2433","177","0","0" +"17661","699","21","1","566","-2633","141","0","0" +"17662","699","22","1","71","-3066","141","0","0" +"17663","699","23","1","-199","-3432","135","0","0" +"17664","699","24","1","-566","-3700","118","0","0" +"17665","699","25","1","-733","-3822","98","0","0" +"17666","699","26","1","-834","-3834","52","0","0" +"17667","699","27","1","-894","-3772","14","0","0" +"17699","702","0","1","-1196","29","177","0","0" +"17700","702","1","1","-1202","31","179","0","0" +"17701","702","2","1","-1214","34","183","0","0" +"17702","702","3","1","-1269","41","190","0","0" +"17703","702","4","1","-1366","0","188","0","0" +"17704","702","5","1","-1399","-132","188","0","0" +"17705","702","6","1","-1299","-299","175","0","0" +"17706","702","7","1","-1052","-400","154","0","0" +"17707","702","8","1","-632","-467","142","0","0" +"17708","702","9","1","-380","-438","162","0","0" +"17709","702","10","1","-166","-298","122","0","0" +"17710","702","11","1","66","-33","122","0","0" +"17711","702","12","1","233","266","122","0","0" +"17712","702","13","1","466","366","122","0","0" +"17713","702","14","1","698","457","147","0","0" +"17714","702","15","1","1022","647","220","0","0" +"17715","702","16","1","1385","756","247","0","0" +"17716","702","17","1","1630","861","247","0","0" +"17717","702","18","1","2066","987","269","0","0" +"17718","702","19","1","2395","1183","379","0","0" +"17719","702","20","1","2534","1466","379","0","0" +"17720","702","21","1","2629","1603","384","0","0" +"17721","702","22","1","2712","1799","384","0","0" +"17722","702","23","1","2705","1927","355","0","0" +"17723","702","24","1","2834","2266","265","0","0" +"17724","702","25","1","3000","2482","204","0","0" +"17725","702","26","1","3201","2330","122","0","0" +"17726","702","27","1","3339","1933","49","0","0" +"17727","702","28","1","3334","1533","24","0","0" +"17728","702","29","1","3333","1166","14","0","0" +"17729","702","30","1","3333","1044","14","0","0" +"17730","702","31","1","3373","995","7","0","0" +"17764","703","0","1","3373","995","6","0","0" +"17763","703","1","1","3374","1011","7","0","0" +"17762","703","2","1","3380","1057","14","0","0" +"17761","703","3","1","3366","1266","20","0","0" +"17760","703","4","1","3335","1923","72","0","0" +"17759","703","5","1","3119","2406","152","0","0" +"17758","703","6","1","2933","2467","204","0","0" +"17757","703","7","1","2765","2100","317","0","0" +"17756","703","8","1","2744","1924","377","0","0" +"17755","703","9","1","2676","1678","385","0","0" +"17754","703","10","1","2565","1466","385","0","0" +"17753","703","11","1","2425","1200","378","0","0" +"17752","703","12","1","2199","1033","328","0","0" +"17751","703","13","1","1778","943","251","0","0" +"17750","703","14","1","1468","834","229","0","0" +"17749","703","15","1","1227","717","252","0","0" +"17748","703","16","1","882","567","202","0","0" +"17747","703","17","1","299","247","137","0","0" +"17746","703","18","1","-55","-156","102","0","0" +"17745","703","19","1","-241","-351","122","0","0" +"17744","703","20","1","-380","-438","162","0","0" +"17743","703","21","1","-633","-399","142","0","0" +"17742","703","22","1","-833","-268","142","0","0" +"17741","703","23","1","-934","-133","142","0","0" +"17740","703","24","1","-1066","-19","185","0","0" +"17739","703","25","1","-1160","19","180","0","0" +"17738","703","26","1","-1197","29","179","0","0" +"17769","704","0","530","-5223","631","48","0","0" +"17770","704","1","530","-5203","628","45","0","0" +"17771","704","2","530","-5198","630","45","0","0" +"17772","704","3","530","-5189","629","43","0","0" +"17773","704","4","530","-5185","626","42","0","0" +"17774","704","5","530","-5170","631","38","0","0" +"17775","704","6","530","-5158","637","37","0","0" +"17776","704","7","530","-5151","645","37","0","0" +"17777","704","8","530","-5149","652","38","0","0" +"17778","704","9","530","-5148","657","39","0","0" +"17779","704","10","530","-5145","662","39","0","0" +"17780","704","11","530","-5139","666","39","0","0" +"17781","704","12","530","-5132","670","39","0","0" +"17782","704","13","530","-5122","670","37","0","0" +"17783","704","14","530","-5109","665","34","0","0" +"17784","704","15","530","-5092","660","32","0","0" +"17785","704","16","530","-5083","658","33","0","0" +"17786","704","17","530","-5075","653","33","0","0" +"17787","704","18","530","-5065","644","30","0","0" +"17788","704","19","530","-5059","642","28","0","0" +"17789","704","20","530","-5053","634","24","0","0" +"17790","704","21","530","-5042","622","19","0","0" +"17791","704","22","530","-5037","615","18","0","0" +"17792","704","23","530","-5031","604","18","0","0" +"17793","704","24","530","-5026","594","20","0","0" +"17794","704","25","530","-5021","584","22","0","0" +"17795","704","26","530","-5016","580","22","0","0" +"17796","704","27","530","-5012","570","22","0","0" +"17797","704","28","530","-5012","561","21","0","0" +"17798","704","29","530","-5008","552","21","0","0" +"17799","704","30","530","-5003","540","20","0","0" +"17800","704","31","530","-5000","527","19","0","0" +"17801","704","32","530","-5007","511","19","0","0" +"17802","704","33","530","-5006","499","19","0","0" +"17803","704","34","530","-5006","486","19","0","0" +"17804","704","35","530","-5007","466","18","0","0" +"17805","704","36","530","-5010","454","18","0","0" +"17806","704","37","530","-5008","450","17","0","0" +"17807","704","38","530","-5010","439","17","0","0" +"17808","704","39","530","-5015","427","14","0","0" +"17809","704","40","530","-5020","407","8","0","0" +"17810","704","41","530","-5020","397","4","0","0" +"17811","704","42","530","-5023","383","1","0","0" +"17812","704","43","530","-5024","371","1","0","0" +"17813","704","44","530","-5028","364","1","0","0" +"17814","704","45","530","-5029","355","2","0","0" +"17815","704","46","530","-5033","347","2","0","0" +"17816","704","47","530","-5034","338","1","0","0" +"17817","704","48","530","-5042","324","-2","0","0" +"17818","704","49","530","-5051","309","-6","0","0" +"17819","704","50","530","-5057","300","-7","0","0" +"17820","704","51","530","-5066","288","-8","0","0" +"17821","704","52","530","-5074","280","-9","0","0" +"17822","704","53","530","-5082","275","-9","0","0" +"17823","704","54","530","-5093","267","-12","0","0" +"17824","704","55","530","-5112","255","-21","0","0" +"17825","704","56","530","-5124","247","-16","0","0" +"17826","704","57","530","-5128","246","-13","0","0" +"17827","704","58","530","-5139","233","-5","0","0" +"17828","704","59","530","-5148","230","-17","0","0" +"17829","704","60","530","-5155","223","-20","0","0" +"17830","704","61","530","-5168","213","-19","0","0" +"17831","704","62","530","-5176","209","-15","0","0" +"17832","704","63","530","-5183","201","-13","0","0" +"17833","704","64","530","-5187","189","-12","0","0" +"17834","704","65","530","-5186","175","-11","0","0" +"17835","705","0","530","-3364","3649","285","0","0" +"17836","705","1","530","-3334","3660","290","0","0" +"17837","705","2","530","-3300","3684","294","0","0" +"17838","705","3","530","-3251","3724","290","0","0" +"17839","705","4","530","-3032","3932","240","0","0" +"17840","705","5","530","-2700","4233","240","0","0" +"17841","705","6","530","-2165","4766","192","0","0" +"17842","705","7","530","-1464","5032","192","0","0" +"17843","705","8","530","-1100","5299","192","0","0" +"17844","705","9","530","-566","5833","200","0","0" +"17845","705","10","530","-32","6365","250","0","0" +"17846","705","11","530","500","6900","328","0","0" +"17847","705","12","530","765","7100","460","0","0" +"17848","705","13","530","1232","7233","498","0","0" +"17849","705","14","530","1666","7266","485","0","0" +"17850","705","15","530","2100","7267","456","0","0" +"17851","705","16","530","2466","7267","409","0","0" +"17852","705","17","530","2531","7322","378","0","0" +"17878","706","0","530","2531","7322","374","0","0" +"17877","706","1","530","2513","7321","384","0","0" +"17876","706","2","530","2483","7320","397","0","0" +"17875","706","3","530","2433","7320","412","0","0" +"17874","706","4","530","2233","7312","434","0","0" +"17873","706","5","530","1632","7300","434","0","0" +"17872","706","6","530","1211","7221","434","0","0" +"17871","706","7","530","816","7089","383","0","0" +"17870","706","8","530","500","6901","324","0","0" +"17869","706","9","530","-33","6366","227","0","0" +"17868","706","10","530","-566","5833","190","0","0" +"17867","706","11","530","-1100","5299","183","0","0" +"17866","706","12","530","-1633","4933","213","0","0" +"17865","706","13","530","-2387","4435","202","0","0" +"17864","706","14","530","-2867","3899","242","0","0" +"17863","706","15","530","-3166","3666","327","0","0" +"17862","706","16","530","-3365","3650","287","0","0" +"17880","707","0","530","-5140","620","92","0","0" +"17881","707","1","530","-5163","666","85","0","0" +"17882","707","2","530","-5112","789","135","0","0" +"17883","707","3","530","-5005","815","145","0","0" +"17885","707","4","530","-4700","1036","45","0","0" +"17886","707","5","530","-4475","1216","97","0","0" +"17887","707","6","530","-4316","1360","204","0","0" +"17888","707","7","530","-4029","1738","204","0","0" +"17889","707","8","530","-3791","1986","204","0","0" +"17890","707","9","530","-3130","2769","154","0","0" +"17891","707","10","530","-2985","2971","132","0","0" +"17892","707","11","530","-2849","3029","132","0","0" +"17893","707","12","530","-2749","3343","214","0","0" +"17894","707","13","530","-2129","4195","253","0","0" +"17895","707","14","530","-1821","5019","151","0","0" +"17896","707","15","530","-1987","5344","67","0","0" +"17897","707","16","530","-1920","5542","67","0","0" +"17898","707","17","530","-1765","5505","67","0","0" +"17899","707","18","530","-1698","5353","34","0","0" +"17900","707","19","530","-1636","5275","-38","0","0" +"17903","708","0","530","214","6063","149","0","0" +"17904","708","1","530","211","6053","153","0","0" +"17905","708","2","530","200","6018","157","0","0" +"17906","708","3","530","199","5952","157","0","0" +"17907","708","4","530","265","5899","157","0","0" +"17908","708","5","530","399","5732","157","0","0" +"17909","708","6","530","700","5633","175","0","0" +"17910","708","7","530","1392","5498","302","0","0" +"17911","708","8","530","1600","5551","327","0","0" +"17912","708","9","530","1699","5633","305","0","0" +"17913","708","10","530","1766","5646","297","0","0" +"17914","708","11","530","1862","5617","291","0","0" +"17915","708","12","530","1873","5567","281","0","0" +"17916","708","13","530","1857","5532","279","0","0" +"17930","709","0","530","1857","5532","277","0","0" +"17929","709","1","530","1849","5519","291","0","0" +"17928","709","2","530","1829","5468","312","0","0" +"17927","709","3","530","1781","5385","338","0","0" +"17926","709","4","530","1566","5300","306","0","0" +"17925","709","5","530","1367","5329","261","0","0" +"17924","709","6","530","993","5591","157","0","0" +"17923","709","7","530","733","5969","157","0","0" +"17922","709","8","530","499","6133","157","0","0" +"17921","709","9","530","318","6148","157","0","0" +"17920","709","10","530","233","6114","153","0","0" +"17919","709","11","530","214","6063","150","0","0" +"18004","714","0","1","-4567","-3224","35","0","0" +"18005","714","1","1","-4571","-3233","40","0","0" +"18006","714","2","1","-4578","-3249","48","0","0" +"18007","714","3","1","-4586","-3275","63","0","0" +"18008","714","4","1","-4588","-3322","80","0","0" +"18009","714","5","1","-4533","-3399","85","0","0" +"18010","714","6","1","-4438","-3441","83","0","0" +"18011","714","7","1","-4284","-3446","83","0","0" +"18012","714","8","1","-4018","-3373","83","0","0" +"18013","714","9","1","-3800","-3309","85","0","0" +"18014","714","10","1","-3545","-3228","84","0","0" +"18015","714","11","1","-3266","-3133","87","0","0" +"18016","714","12","1","-3153","-3033","82","0","0" +"18017","714","13","1","-3133","-2901","64","0","0" +"18018","714","14","1","-3132","-2857","49","0","0" +"18019","714","15","1","-3148","-2842","38","0","0" +"18020","715","0","1","-4566","-3225","35","0","0" +"18021","715","1","1","-4570","-3236","44","0","0" +"18022","715","2","1","-4576","-3255","57","0","0" +"18023","715","3","1","-4582","-3279","70","0","0" +"18024","715","4","1","-4582","-3333","74","0","0" +"18025","715","5","1","-4553","-3432","75","0","0" +"18026","715","6","1","-4499","-3599","75","0","0" +"18027","715","7","1","-4399","-3732","93","0","0" +"18028","715","8","1","-4271","-3879","75","0","0" +"18029","715","9","1","-4133","-4033","53","0","0" +"18030","715","10","1","-3967","-4233","43","0","0" +"18031","715","11","1","-3865","-4374","34","0","0" +"18032","715","12","1","-3824","-4446","29","0","0" +"18033","715","13","1","-3821","-4493","21","0","0" +"18034","715","14","1","-3827","-4517","13","0","0" +"18050","716","0","1","-3148","-2842","35","0","0" +"18049","716","1","1","-3132","-2841","44","0","0" +"18048","716","2","1","-3097","-2836","65","0","0" +"18047","716","3","1","-3047","-2800","91","0","0" +"18046","716","4","1","-3066","-2733","101","0","0" +"18045","716","5","1","-3167","-2720","101","0","0" +"18044","716","6","1","-3510","-2766","101","0","0" +"18043","716","7","1","-3866","-2799","90","0","0" +"18042","716","8","1","-4066","-2866","94","0","0" +"18041","716","9","1","-4299","-2966","90","0","0" +"18040","716","10","1","-4464","-3045","86","0","0" +"18039","716","11","1","-4543","-3133","70","0","0" +"18038","716","12","1","-4559","-3200","47","0","0" +"18037","716","13","1","-4562","-3224","37","0","0" +"18065","717","0","1","-3827","-4517","11","0","0" +"18064","717","1","1","-3859","-4553","20","0","0" +"18063","717","2","1","-3903","-4555","28","0","0" +"18062","717","3","1","-3967","-4500","31","0","0" +"18061","717","4","1","-4033","-4367","40","0","0" +"18060","717","5","1","-4100","-4101","74","0","0" +"18059","717","6","1","-4166","-3766","102","0","0" +"18058","717","7","1","-4234","-3451","102","0","0" +"18057","717","8","1","-4366","-3166","102","0","0" +"18056","717","9","1","-4466","-3099","90","0","0" +"18055","717","10","1","-4540","-3115","74","0","0" +"18054","717","11","1","-4554","-3166","55","0","0" +"18053","717","12","1","-4557","-3200","43","0","0" +"18052","717","13","1","-4563","-3225","37","0","0" +"18068","718","0","1","-4564","-3225","35","0","0" +"18069","718","1","1","-4568","-3235","40","0","0" +"18070","718","2","1","-4576","-3259","54","0","0" +"18071","718","3","1","-4582","-3299","72","0","0" +"18072","718","4","1","-4554","-3355","81","0","0" +"18073","718","5","1","-4466","-3354","70","0","0" +"18074","718","6","1","-4431","-3273","75","0","0" +"18075","718","7","1","-4455","-3101","80","0","0" +"18076","718","8","1","-4488","-2985","95","0","0" +"18077","718","9","1","-4567","-2806","121","0","0" +"18078","718","10","1","-4566","-2649","162","0","0" +"18079","718","11","1","-4563","-2448","184","0","0" +"18080","718","12","1","-4592","-2353","197","0","0" +"18081","718","13","1","-4749","-2330","185","0","0" +"18082","718","14","1","-5066","-2332","148","0","0" +"18083","718","15","1","-5266","-2333","122","0","0" +"18084","718","16","1","-5387","-2397","95","0","0" +"18085","718","17","1","-5407","-2413","92","0","0" +"18103","719","0","1","-5407","-2413","91","0","0" +"18102","719","1","1","-5420","-2411","96","0","0" +"18101","719","2","1","-5449","-2404","104","0","0" +"18100","719","3","1","-5492","-2368","108","0","0" +"18099","719","4","1","-5533","-2319","117","0","0" +"18098","719","5","1","-5499","-2267","118","0","0" +"18097","719","6","1","-5400","-2234","115","0","0" +"18096","719","7","1","-5231","-2266","127","0","0" +"18095","719","8","1","-5033","-2266","132","0","0" +"18094","719","9","1","-4776","-2306","187","0","0" +"18093","719","10","1","-4566","-2367","197","0","0" +"18092","719","11","1","-4566","-2633","170","0","0" +"18091","719","12","1","-4566","-2834","125","0","0" +"18090","719","13","1","-4566","-3033","99","0","0" +"18089","719","14","1","-4557","-3134","66","0","0" +"18088","719","15","1","-4557","-3200","46","0","0" +"18087","719","16","1","-4564","-3225","36","0","0" +"18104","720","0","1","-4565","-3226","35","0","0" +"18105","720","1","1","-4570","-3237","41","0","0" +"18106","720","2","1","-4579","-3263","57","0","0" +"18107","720","3","1","-4583","-3299","77","0","0" +"18108","720","4","1","-4575","-3341","90","0","0" +"18109","720","5","1","-4531","-3384","95","0","0" +"18110","720","6","1","-4466","-3363","102","0","0" +"18111","720","7","1","-4438","-3267","94","0","0" +"18112","720","8","1","-4440","-3167","96","0","0" +"18113","720","9","1","-4464","-3040","99","0","0" +"18114","720","10","1","-4513","-2862","126","0","0" +"18115","720","11","1","-4566","-2651","161","0","0" +"18116","720","12","1","-4599","-2434","193","0","0" +"18117","720","13","1","-4703","-2194","178","0","0" +"18118","720","14","1","-4783","-1869","106","0","0" +"18119","720","15","1","-4734","-1542","106","0","0" +"18120","720","16","1","-4680","-1334","106","0","0" +"18121","720","17","1","-4584","-1148","97","0","0" +"18122","720","18","1","-4466","-966","49","0","0" +"18123","720","19","1","-4366","-857","0","0","0" +"18124","720","20","1","-4366","-800","-13","0","0" +"18125","720","21","1","-4428","-766","-16","0","0" +"18126","720","22","1","-4466","-766","-25","0","0" +"18127","720","23","1","-4490","-775","-35","0","0" +"18151","721","0","1","-4490","-775","-38","0","0" +"18150","721","1","1","-4496","-791","-34","0","0" +"18149","721","2","1","-4499","-816","-31","0","0" +"18148","721","3","1","-4493","-867","-19","0","0" +"18147","721","4","1","-4483","-943","10","0","0" +"18146","721","5","1","-4517","-1015","41","0","0" +"18145","721","6","1","-4604","-1120","87","0","0" +"18144","721","7","1","-4699","-1333","106","0","0" +"18143","721","8","1","-4701","-1542","107","0","0" +"18142","721","9","1","-4666","-1836","126","0","0" +"18141","721","10","1","-4637","-2120","181","0","0" +"18140","721","11","1","-4599","-2434","192","0","0" +"18139","721","12","1","-4566","-2651","168","0","0" +"18138","721","13","1","-4564","-2997","106","0","0" +"18137","721","14","1","-4556","-3149","64","0","0" +"18136","721","15","1","-4558","-3199","47","0","0" +"18135","721","16","1","-4565","-3226","37","0","0" +"18153","722","0","530","2029","4704","151","0","0" +"18154","722","1","530","2022","4690","161","0","0" +"18155","722","2","530","2012","4674","170","0","0" +"18156","722","3","530","1993","4646","179","0","0" +"18157","722","4","530","1959","4611","185","0","0" +"18158","722","5","530","1866","4585","185","0","0" +"18159","722","6","530","1699","4555","185","0","0" +"18160","722","7","530","1533","4582","172","0","0" +"18161","722","8","530","1203","4766","109","0","0" +"18162","722","9","530","800","4966","76","0","0" +"18163","722","10","530","633","5033","92","0","0" +"18164","722","11","530","356","5088","95","0","0" +"18165","722","12","530","247","5094","85","0","0" +"18166","722","13","530","138","5121","48","0","0" +"18167","722","14","530","103","5171","36","0","0" +"18185","722","15","530","90","5213","25","0","0" +"18182","723","0","530","90","5213","23","0","0" +"18181","723","1","530","92","5222","28","0","0" +"18180","723","2","530","94","5239","33","0","0" +"18179","723","3","530","109","5266","37","0","0" +"18178","723","4","530","166","5276","39","0","0" +"18177","723","5","530","265","5281","43","0","0" +"18176","723","6","530","365","5285","57","0","0" +"18175","723","7","530","632","5200","77","0","0" +"18174","723","8","530","1001","5033","101","0","0" +"18173","723","9","530","1398","4833","152","0","0" +"18172","723","10","530","1566","4750","182","0","0" +"18171","723","11","530","1732","4744","172","0","0" +"18170","723","12","530","1866","4745","168","0","0" +"18169","723","13","530","1966","4717","166","0","0" +"18168","723","14","530","2013","4709","161","0","0" +"18183","723","15","530","2030","4704","153","0","0" +"18186","724","0","1","-3818","-4511","12","0","0" +"18187","724","1","1","-3815","-4511","13","0","0" +"18188","724","2","1","-3804","-4511","17","0","0" +"18189","724","3","1","-3792","-4510","23","0","0" +"18190","724","4","1","-3754","-4505","33","0","0" +"18191","724","5","1","-3700","-4487","36","0","0" +"18192","724","6","1","-3602","-4415","42","0","0" +"18193","724","7","1","-3457","-4372","42","0","0" +"18194","724","8","1","-3288","-4447","42","0","0" +"18195","724","9","1","-3136","-4536","42","0","0" +"18196","724","10","1","-2979","-4596","42","0","0" +"18197","724","11","1","-2776","-4665","36","0","0" +"18198","724","12","1","-2713","-4704","32","0","0" +"18199","724","13","1","-2693","-4772","31","0","0" +"18200","724","14","1","-2687","-4835","31","0","0" +"18201","724","15","1","-2664","-4912","33","0","0" +"18202","724","16","1","-2703","-4979","39","0","0" +"18203","724","17","1","-2769","-5001","47","0","0" +"18204","724","18","1","-2836","-4973","85","0","0" +"18205","724","19","1","-2859","-4940","102","0","0" +"18206","724","20","1","-2849","-4882","103","0","0" +"18207","724","21","1","-2800","-4847","106","0","0" +"18208","724","22","1","-2757","-4863","111","0","0" +"18209","724","23","1","-2725","-4924","98","0","0" +"18210","724","24","1","-2682","-5001","92","0","0" +"18211","724","25","1","-2585","-5045","102","0","0" +"18212","724","26","1","-2496","-4991","104","0","0" +"18213","724","27","1","-2468","-4909","118","0","0" +"18214","724","28","1","-2534","-4812","111","0","0" +"18215","724","29","1","-2673","-4671","70","0","0" +"18216","724","30","1","-2890","-4584","50","0","0" +"18217","724","31","1","-3081","-4536","42","0","0" +"18218","724","32","1","-3269","-4446","42","0","0" +"18219","724","33","1","-3417","-4384","42","0","0" +"18220","724","34","1","-3540","-4356","42","0","0" +"18221","724","35","1","-3709","-4369","37","0","0" +"18222","724","36","1","-3793","-4390","37","0","0" +"18223","724","37","1","-3823","-4454","30","0","0" +"18224","724","38","1","-3815","-4512","13","0","0" +"18854","746","0","0","-11343","-216","75","0","0" +"18855","746","1","0","-11352","-220","78","0","0" +"18856","746","2","0","-11375","-232","86","0","0" +"18857","746","3","0","-11399","-243","94","0","0" +"18858","746","4","0","-11446","-259","106","0","0" +"18859","746","5","0","-11539","-270","105","0","0" +"18860","746","6","0","-11749","-278","90","0","0" +"18861","746","7","0","-11999","-200","90","0","0" +"18862","746","8","0","-12233","-137","90","0","0" +"18863","746","9","0","-12506","-27","90","0","0" +"18864","746","10","0","-12660","154","98","0","0" +"18865","746","11","0","-12816","380","106","0","0" +"18866","746","12","0","-13175","499","113","0","0" +"18867","746","13","0","-13432","531","159","0","0" +"18868","746","14","0","-13816","598","131","0","0" +"18869","746","15","0","-14200","551","53","0","0" +"18870","746","16","0","-14365","457","44","0","0" +"18871","746","17","0","-14437","439","44","0","0" +"18872","746","18","0","-14473","463","38","0","0" +"18891","747","0","0","-14473","463","37","0","0" +"18890","747","1","0","-14466","457","40","0","0" +"18889","747","2","0","-14448","444","44","0","0" +"18888","747","3","0","-14416","435","44","0","0" +"18887","747","4","0","-14345","454","45","0","0" +"18886","747","5","0","-14194","554","54","0","0" +"18885","747","6","0","-13854","612","131","0","0" +"18884","747","7","0","-13517","370","137","0","0" +"18883","747","8","0","-13250","-5","136","0","0" +"18882","747","9","0","-12917","-93","99","0","0" +"18881","747","10","0","-12500","-66","90","0","0" +"18880","747","11","0","-12196","-167","90","0","0" +"18879","747","12","0","-11996","-163","90","0","0" +"18878","747","13","0","-11746","-194","90","0","0" +"18877","747","14","0","-11553","-209","105","0","0" +"18876","747","15","0","-11431","-270","106","0","0" +"18875","747","16","0","-11343","-216","78","0","0" +"18894","748","0","0","-11345","-216","76","0","0" +"18895","748","1","0","-11351","-227","80","0","0" +"18896","748","2","0","-11356","-243","86","0","0" +"18897","748","3","0","-11361","-273","97","0","0" +"18898","748","4","0","-11357","-325","114","0","0" +"18899","748","5","0","-11310","-398","142","0","0" +"18900","748","6","0","-11199","-432","142","0","0" +"18901","748","7","0","-11099","-324","123","0","0" +"18902","748","8","0","-10995","-135","105","0","0" +"18903","748","9","0","-10936","294","110","0","0" +"18904","748","10","0","-10866","733","93","0","0" +"18905","748","11","0","-10783","932","73","0","0" +"18906","748","12","0","-10700","1017","56","0","0" +"18907","748","13","0","-10631","1039","35","0","0" +"18921","749","0","0","-10631","1039","34","0","0" +"18920","749","1","0","-10644","1033","38","0","0" +"18919","749","2","0","-10677","1013","46","0","0" +"18918","749","3","0","-10731","966","60","0","0" +"18917","749","4","0","-10799","866","67","0","0" +"18916","749","5","0","-10916","704","59","0","0" +"18915","749","6","0","-11033","513","43","0","0" +"18914","749","7","0","-11166","333","34","0","0" +"18913","749","8","0","-11366","291","37","0","0" +"18912","749","9","0","-11494","162","42","0","0" +"18911","749","10","0","-11533","-66","66","0","0" +"18910","749","11","0","-11499","-201","96","0","0" +"18984","749","12","0","-11445","-261","104","0","0" +"18985","749","13","0","-11383","-249","93","0","0" +"18986","749","14","0","-11345","-216","78","0","0" +"18922","750","0","0","-11344","-215","76","0","0" +"18923","750","1","0","-11352","-225","79","0","0" +"18924","750","2","0","-11360","-235","82","0","0" +"18925","750","3","0","-11369","-257","89","0","0" +"18926","750","4","0","-11361","-299","98","0","0" +"18927","750","5","0","-11337","-377","118","0","0" +"18928","750","6","0","-11229","-487","128","0","0" +"18929","750","7","0","-11099","-580","128","0","0" +"18930","750","8","0","-10827","-775","141","0","0" +"18931","750","9","0","-10635","-926","140","0","0" +"18932","750","10","0","-10563","-1136","94","0","0" +"18933","750","11","0","-10533","-1232","56","0","0" +"18934","750","12","0","-10512","-1256","44","0","0" +"18947","751","0","0","-10512","-1256","42","0","0" +"18946","751","1","0","-10513","-1250","45","0","0" +"18945","751","2","0","-10514","-1234","52","0","0" +"18944","751","3","0","-10516","-1207","65","0","0" +"18943","751","4","0","-10522","-1148","94","0","0" +"18942","751","5","0","-10562","-1010","130","0","0" +"18941","751","6","0","-10772","-758","126","0","0" +"18940","751","7","0","-11066","-500","116","0","0" +"18939","751","8","0","-11314","-300","113","0","0" +"18938","751","9","0","-11358","-253","98","0","0" +"18937","751","10","0","-11344","-215","78","0","0" +"18948","752","0","0","-11344","-214","75","0","0" +"18949","752","1","0","-11351","-223","80","0","0" +"18950","752","2","0","-11359","-232","85","0","0" +"18951","752","3","0","-11374","-248","95","0","0" +"18952","752","4","0","-11383","-286","109","0","0" +"18953","752","5","0","-11356","-334","124","0","0" +"18954","752","6","0","-11308","-393","124","0","0" +"18955","752","7","0","-11197","-400","124","0","0" +"18956","752","8","0","-10971","-279","124","0","0" +"18957","752","9","0","-10633","-67","124","0","0" +"18958","752","10","0","-10200","32","124","0","0" +"18959","752","11","0","-9856","74","124","0","0" +"18960","752","12","0","-9564","101","143","0","0" +"18961","752","13","0","-9266","166","143","0","0" +"18962","752","14","0","-9133","266","161","0","0" +"18963","752","15","0","-9035","377","153","0","0" +"18964","752","16","0","-8915","422","134","0","0" +"18965","752","17","0","-8837","475","112","0","0" +"18983","753","0","0","-8851","497","110","0","0" +"18982","753","1","0","-8877","483","117","0","0" +"18981","753","2","0","-8927","479","125","0","0" +"18980","753","3","0","-9031","499","136","0","0" +"18979","753","4","0","-9111","471","147","0","0" +"18978","753","5","0","-9230","424","148","0","0" +"18977","753","6","0","-9559","341","145","0","0" +"18976","753","7","0","-10000","266","123","0","0" +"18975","753","8","0","-10466","66","123","0","0" +"18974","753","9","0","-10884","-153","123","0","0" +"18973","753","10","0","-11171","-313","128","0","0" +"18972","753","11","0","-11326","-299","112","0","0" +"18971","753","12","0","-11356","-252","90","0","0" +"18970","753","13","0","-11344","-214","77","0","0" +"19018","757","0","0","-7900","-3399","171","0","0" +"19019","757","1","0","-7866","-3399","179","0","0" +"19020","757","2","0","-7833","-3400","187","0","0" +"19021","757","3","0","-7799","-3399","194","0","0" +"19022","757","4","0","-7765","-3394","199","0","0" +"19023","757","5","0","-7733","-3367","198","0","0" +"19024","757","6","0","-7733","-3333","198","0","0" +"19025","757","7","1","2066","-5165","264","0","0" +"19026","757","8","1","2067","-5133","264","0","0" +"19027","757","9","1","2066","-5100","264","0","0" +"19028","757","10","1","2067","-5067","264","0","0" +"19029","757","11","1","2066","-5033","264","0","0" +"19030","757","12","1","2066","-5000","256","0","0" +"19035","758","0","1","1677","-4314","61","0","0" +"19036","758","1","1","1605","-4343","63","0","0" +"19037","758","2","1","1494","-4417","42","0","0" +"19038","758","3","1","1452","-4419","32","0","0" +"19039","758","4","1","1437","-4413","32","0","0" +"19040","758","5","1","1430","-4372","32","0","0" +"19041","758","6","1","1391","-4367","32","0","0" +"19042","758","7","1","1357","-4375","43","0","0" +"19043","758","8","1","1339","-4416","43","0","0" +"19044","758","9","1","1316","-4438","43","0","0" +"19045","758","10","1","1279","-4484","43","0","0" +"19046","758","11","1","1308","-4546","43","0","0" +"19047","758","12","1","1326","-4602","59","0","0" +"19048","758","13","1","1339","-4634","59","0","0" +"19062","759","0","1","1339","-4634","59","0","0" +"19061","759","1","1","1326","-4602","59","0","0" +"19060","759","2","1","1308","-4546","43","0","0" +"19059","759","3","1","1279","-4484","43","0","0" +"19058","759","4","1","1316","-4438","43","0","0" +"19057","759","5","1","1339","-4416","43","0","0" +"19056","759","6","1","1357","-4375","43","0","0" +"19055","759","7","1","1391","-4367","32","0","0" +"19054","759","8","1","1430","-4372","32","0","0" +"19053","759","9","1","1437","-4413","32","0","0" +"19052","759","10","1","1452","-4419","32","0","0" +"19051","759","11","1","1494","-4417","42","0","0" +"19050","759","12","1","1605","-4343","63","0","0" +"19049","759","13","1","1677","-4314","61","0","0" +"19123","766","0","0","2314","-5285","81","0","0" +"19124","766","1","0","2299","-5273","92","0","0" +"19125","766","2","0","2297","-5230","97","0","0" +"19126","766","3","0","2332","-5202","101","0","0" +"19127","766","4","0","2391","-5180","101","0","0" +"19128","766","5","0","2467","-5117","104","0","0" +"19129","766","6","0","2493","-5020","104","0","0" +"19130","766","7","0","2523","-4978","112","0","0" +"19131","766","8","0","2623","-4891","112","0","0" +"19132","766","9","0","2767","-4803","112","0","0" +"19133","766","10","0","2819","-4781","112","0","0" +"19134","766","11","0","2899","-4665","112","0","0" +"19135","766","12","0","2973","-4540","112","0","0" +"19136","766","13","0","3015","-4524","131","0","0" +"19137","766","14","0","3070","-4513","131","0","0" +"19138","766","15","0","3113","-4463","131","0","0" +"19139","766","16","0","3245","-4479","131","0","0" +"19140","766","17","0","3326","-4467","139","0","0" +"19141","766","18","0","3401","-4447","157","0","0" +"19142","766","19","0","3436","-4453","157","0","0" +"19143","766","20","0","3471","-4489","152","0","0" +"19144","766","21","0","3511","-4513","152","0","0" +"19145","766","22","0","3538","-4506","152","0","0" +"19146","766","23","530","6210","-6922","144","0","0" +"19147","766","24","530","6271","-6879","173","0","0" +"19148","766","25","530","6339","-6870","196","0","0" +"19149","766","26","530","6386","-6872","196","0","0" +"19150","766","27","530","6465","-6852","196","0","0" +"19151","766","28","530","6512","-6840","196","0","0" +"19152","766","29","530","6563","-6775","181","0","0" +"19153","766","30","530","6623","-6700","168","0","0" +"19154","766","31","530","6693","-6653","154","0","0" +"19155","766","32","530","6726","-6705","137","0","0" +"19156","766","33","530","6724","-6778","110","0","0" +"19157","766","34","530","6759","-6830","110","0","0" +"19158","766","35","530","6802","-6854","110","0","0" +"19159","766","36","530","6848","-6793","70","0","0" +"19160","766","37","530","6902","-6782","61","0","0" +"19161","766","38","530","6973","-6784","52","0","0" +"19162","766","39","530","7008","-6774","47","0","0" +"19163","766","40","530","7046","-6752","47","0","0" +"19164","766","41","530","7100","-6745","47","0","0" +"19165","766","42","530","7156","-6702","47","0","0" +"19166","766","43","530","7208","-6712","47","0","0" +"19167","766","44","530","7291","-6744","47","0","0" +"19168","766","45","530","7382","-6792","57","0","0" +"19169","766","46","530","7531","-6689","89","0","0" +"19170","766","47","530","7576","-6724","92","0","0" +"19171","766","48","530","7583","-6766","91","0","0" +"19172","766","49","530","7589","-6785","88","0","0" +"19222","767","0","530","7589","-6785","88","0","0" +"19221","767","1","530","7587","-6797","91","0","0" +"19220","767","2","530","7572","-6829","96","0","0" +"19219","767","3","530","7541","-6825","96","0","0" +"19218","767","4","530","7419","-6803","67","0","0" +"19217","767","5","530","7291","-6744","47","0","0" +"19216","767","6","530","7208","-6712","47","0","0" +"19215","767","7","530","7156","-6702","47","0","0" +"19214","767","8","530","7100","-6745","47","0","0" +"19213","767","9","530","7046","-6752","47","0","0" +"19212","767","10","530","7008","-6774","47","0","0" +"19211","767","11","530","6973","-6784","52","0","0" +"19210","767","12","530","6902","-6782","61","0","0" +"19209","767","13","530","6848","-6793","70","0","0" +"19208","767","14","530","6802","-6854","110","0","0" +"19207","767","15","530","6759","-6830","110","0","0" +"19206","767","16","530","6724","-6778","110","0","0" +"19205","767","17","530","6726","-6705","137","0","0" +"19204","767","18","530","6693","-6653","154","0","0" +"19203","767","19","530","6623","-6700","168","0","0" +"19202","767","20","530","6563","-6775","181","0","0" +"19201","767","21","530","6512","-6840","196","0","0" +"19200","767","22","530","6465","-6852","196","0","0" +"19199","767","23","530","6386","-6872","196","0","0" +"19198","767","24","530","6339","-6870","196","0","0" +"19197","767","25","530","6271","-6879","173","0","0" +"19196","767","26","530","6210","-6922","144","0","0" +"19195","767","27","0","3538","-4506","152","0","0" +"19194","767","28","0","3511","-4513","152","0","0" +"19193","767","29","0","3471","-4489","152","0","0" +"19192","767","30","0","3436","-4453","157","0","0" +"19191","767","31","0","3401","-4447","157","0","0" +"19190","767","32","0","3326","-4467","139","0","0" +"19189","767","33","0","3245","-4479","131","0","0" +"19188","767","34","0","3113","-4463","131","0","0" +"19187","767","35","0","3070","-4513","131","0","0" +"19186","767","36","0","3015","-4524","131","0","0" +"19185","767","37","0","2973","-4540","112","0","0" +"19184","767","38","0","2899","-4665","112","0","0" +"19183","767","39","0","2819","-4781","112","0","0" +"19182","767","40","0","2767","-4803","112","0","0" +"19181","767","41","0","2623","-4891","112","0","0" +"19180","767","42","0","2523","-4978","112","0","0" +"19179","767","43","0","2493","-5020","104","0","0" +"19178","767","44","0","2467","-5117","104","0","0" +"19177","767","45","0","2391","-5180","101","0","0" +"19176","767","46","0","2332","-5202","101","0","0" +"19175","767","47","0","2299","-5233","102","0","0" +"19174","767","48","0","2299","-5273","92","0","0" +"19173","767","49","0","2314","-5285","81","0","0" +"19223","768","0","451","16046","-16359","84","0","0" +"19224","768","1","451","16146","-16305","84","0","0" +"19225","768","2","451","16229","-16349","84","0","0" +"19226","768","3","451","16266","-16455","84","0","0" +"19227","768","4","451","16190","-16547","84","0","0" +"19228","768","5","451","16066","-16545","84","0","0" +"19229","768","6","451","16003","-16475","84","0","0" +"19230","768","7","451","15993","-16370","76","0","0" +"19245","771","0","0","2314","-5286","82","0","0" +"19246","771","1","0","2306","-5274","88","0","0" +"19247","771","2","0","2299","-5259","95","0","0" +"19248","771","3","0","2294","-5235","100","0","0" +"19249","771","4","0","2324","-5207","97","0","0" +"19250","771","5","0","2434","-5160","95","0","0" +"19251","771","6","0","2526","-5145","126","0","0" +"19252","771","7","0","2660","-5117","198","0","0" +"19253","771","8","0","2773","-4985","179","0","0" +"19254","771","9","0","2890","-4880","150","0","0" +"19255","771","10","0","2993","-4815","150","0","0" +"19256","771","11","0","3076","-4736","128","0","0" +"19257","771","12","0","3158","-4622","134","0","0" +"19258","771","13","0","3248","-4529","137","0","0" +"19259","771","14","0","3334","-4463","149","0","0" +"19260","771","15","0","3405","-4444","148","0","0" +"19261","771","16","0","3448","-4463","149","0","0" +"19262","771","17","0","3490","-4509","149","0","0" +"19263","771","18","530","6197","-6930","146","0","0" +"19264","771","19","530","6227","-6896","168","0","0" +"19265","771","20","530","6275","-6875","171","0","0" +"19266","771","21","530","6347","-6912","174","0","0" +"19267","771","22","530","6400","-6948","194","0","0" +"19268","771","23","530","6509","-7096","189","0","0" +"19269","771","24","530","6639","-7260","129","0","0" +"19270","771","25","530","6794","-7388","120","0","0" +"19271","771","26","530","6845","-7461","129","0","0" +"19272","771","27","530","6795","-7595","147","0","0" +"19273","771","28","530","6793","-7687","140","0","0" +"19274","771","29","530","6792","-7747","126","0","0" +"19306","772","0","530","6791","-7747","126","0","0" +"19305","772","1","530","6812","-7706","138","0","0" +"19304","772","2","530","6835","-7583","145","0","0" +"19303","772","3","530","6840","-7465","136","0","0" +"19302","772","4","530","6762","-7352","122","0","0" +"19301","772","5","530","6663","-7242","123","0","0" +"19300","772","6","530","6531","-7074","190","0","0" +"19299","772","7","530","6427","-6942","203","0","0" +"19298","772","8","530","6355","-6858","193","0","0" +"19297","772","9","530","6253","-6887","151","0","0" +"19296","772","10","530","6193","-6931","144","0","0" +"19295","772","11","530","6187","-6976","145","0","0" +"19294","772","12","530","6173","-7005","157","0","0" +"19293","772","13","530","6150","-7018","157","0","0" +"19292","772","14","530","6115","-7001","150","0","0" +"19291","772","15","530","6103","-6987","149","0","0" +"19290","772","16","0","3447","-4456","147","0","0" +"19289","772","17","0","3375","-4445","152","0","0" +"19288","772","18","0","3247","-4478","136","0","0" +"19287","772","19","0","3074","-4470","124","0","0" +"19286","772","20","0","2927","-4631","117","0","0" +"19285","772","21","0","2786","-4795","120","0","0" +"19284","772","22","0","2628","-4905","125","0","0" +"19283","772","23","0","2535","-4976","120","0","0" +"19282","772","24","0","2389","-5090","95","0","0" +"19281","772","25","0","2382","-5177","110","0","0" +"19280","772","26","0","2403","-5235","119","0","0" +"19279","772","27","0","2386","-5279","110","0","0" +"19278","772","28","0","2344","-5288","91","0","0" +"19277","772","29","0","2327","-5287","82","0","0" +"19307","773","0","530","7595","-6784","86","0","0" +"19308","773","1","530","7632","-6783","99","0","0" +"19309","773","2","530","7645","-6811","105","0","0" +"19310","773","3","530","7602","-6837","113","0","0" +"19311","773","4","530","7511","-6841","119","0","0" +"19312","773","5","530","7450","-6861","113","0","0" +"19313","773","6","530","7397","-6883","95","0","0" +"19314","773","7","530","7327","-6918","71","0","0" +"19315","773","8","530","7232","-6995","60","0","0" +"19316","773","9","530","7071","-7008","64","0","0" +"19317","773","10","530","6990","-7082","59","0","0" +"19318","773","11","530","6969","-7192","57","0","0" +"19319","773","12","530","6930","-7333","75","0","0" +"19320","773","13","530","6891","-7470","119","0","0" +"19321","773","14","530","6818","-7539","151","0","0" +"19322","773","15","530","6799","-7602","148","0","0" +"19323","773","16","530","6793","-7696","136","0","0" +"19324","773","17","530","6792","-7747","126","0","0" +"19342","774","0","530","6790","-7746","126","0","0" +"19341","774","1","530","6801","-7727","132","0","0" +"19340","774","2","530","6826","-7680","139","0","0" +"19339","774","3","530","6870","-7573","134","0","0" +"19338","774","4","530","6894","-7456","98","0","0" +"19337","774","5","530","6931","-7319","63","0","0" +"19336","774","6","530","6980","-7165","60","0","0" +"19335","774","7","530","7017","-7063","60","0","0" +"19334","774","8","530","7071","-7008","59","0","0" +"19333","774","9","530","7202","-6931","59","0","0" +"19332","774","10","530","7327","-6918","59","0","0" +"19331","774","11","530","7412","-6834","65","0","0" +"19330","774","12","530","7449","-6736","92","0","0" +"19329","774","13","530","7519","-6688","96","0","0" +"19328","774","14","530","7560","-6713","95","0","0" +"19327","774","15","530","7573","-6754","99","0","0" +"19326","774","16","530","7570","-6784","96","0","0" +"19325","774","17","530","7583","-6795","94","0","0" +"19343","774","18","530","7597","-6784","86","0","0" +"19344","775","0","0","2269","-5344","86","0","0" +"19345","775","1","0","2260","-5326","96","0","0" +"19346","775","2","0","2239","-5290","109","0","0" +"19347","775","3","0","2285","-5250","122","0","0" +"19348","775","4","0","2348","-5194","141","0","0" +"19349","775","5","0","2517","-5070","169","0","0" +"19350","775","6","0","2697","-4960","169","0","0" +"19351","775","7","0","2936","-4830","169","0","0" +"19352","775","8","0","3138","-4660","169","0","0" +"19353","775","9","0","3313","-4475","169","0","0" +"19354","775","10","0","3407","-4443","159","0","0" +"19355","775","11","0","3458","-4473","154","0","0" +"19356","775","12","0","3491","-4514","152","0","0" +"19357","775","13","530","6155","-7014","158","0","0" +"19358","775","14","530","6174","-7003","158","0","0" +"19359","775","15","530","6189","-6961","171","0","0" +"19360","775","16","530","6205","-6917","178","0","0" +"19361","775","17","530","6287","-6879","197","0","0" +"19362","775","18","530","6387","-6854","220","0","0" +"19363","775","19","530","6452","-6904","218","0","0" +"19364","775","20","530","6480","-7070","201","0","0" +"19365","775","21","530","6635","-7273","176","0","0" +"19366","775","22","530","6842","-7463","170","0","0" +"19367","775","23","530","6794","-7597","153","0","0" +"19368","775","24","530","6792","-7705","136","0","0" +"19369","775","25","530","6792","-7747","126","0","0" +"19397","776","0","530","6790","-7747","126","0","0" +"19396","776","1","530","6803","-7732","131","0","0" +"19395","776","2","530","6853","-7635","136","0","0" +"19394","776","3","530","6839","-7467","141","0","0" +"19393","776","4","530","6775","-7370","142","0","0" +"19392","776","5","530","6673","-7240","166","0","0" +"19391","776","6","530","6544","-7079","201","0","0" +"19390","776","7","530","6465","-6900","218","0","0" +"19389","776","8","530","6399","-6823","220","0","0" +"19388","776","9","530","6269","-6876","173","0","0" +"19387","776","10","530","6205","-6917","166","0","0" +"19386","776","11","530","6189","-6961","158","0","0" +"19385","776","12","530","6174","-7003","153","0","0" +"19384","776","13","530","6155","-7014","155","0","0" +"19383","776","14","530","6123","-7009","153","0","0" +"19382","776","15","530","6099","-6977","150","0","0" +"19381","776","16","0","3454","-4463","153","0","0" +"19380","776","17","0","3329","-4445","153","0","0" +"19379","776","18","0","3082","-4494","168","0","0" +"19378","776","19","0","2819","-4766","152","0","0" +"19377","776","20","0","2617","-4921","155","0","0" +"19376","776","21","0","2451","-5045","152","0","0" +"19375","776","22","0","2281","-5140","137","0","0" +"19374","776","23","0","2216","-5218","120","0","0" +"19373","776","24","0","2216","-5294","104","0","0" +"19372","776","25","0","2254","-5333","93","0","0" +"19371","776","26","0","2269","-5344","88","0","0" +"19413","777","0","1","-4198","2783","0","0","0" +"19414","777","1","1","-4235","2589","0","0","0" +"19415","777","2","1","-4257","2479","0","0","0" +"19416","777","3","1","-4352","2441","0","2","30" +"19417","777","4","1","-4617","2461","0","0","0" +"19418","777","5","1","-4776","2630","0","0","0" +"19419","777","6","1","-5070","3060","0","0","0" +"19420","777","7","1","-5125","3334","0","0","0" +"19421","777","8","1","-5125","3813","0","0","0" +"19422","777","9","1","-4838","3964","0","0","0" +"19423","777","10","1","-4384","3932","0","0","0" +"19424","777","11","1","-4220","3763","0","0","0" +"19425","777","12","1","-4201","3475","0","0","0" +"19426","777","13","1","-4200","3281","0","2","30" +"19427","777","14","1","-4206","3030","0","0","0" +"19428","777","15","1","-4201","2907","0","0","0" +"19429","777","16","1","-4198","2783","0","0","0" +"19430","777","17","1","-4234","2589","0","0","0" +"19451","777","18","1","-4257","2479","0","0","0" +"19456","779","0","530","13006","-6910","9","0","0" +"19457","779","1","530","12961","-6885","16","0","0" +"19458","779","2","530","12898","-6922","17","0","0" +"19459","779","3","530","12759","-6999","31","0","0" +"19460","779","4","530","12740","-7104","26","0","0" +"19461","779","5","530","12728","-7155","38","0","0" +"19462","779","6","530","12716","-7192","47","0","0" +"19463","779","7","530","12694","-7232","47","0","0" +"19464","779","8","530","12638","-7285","17","0","0" +"19465","779","9","530","12566","-7337","27","0","0" +"19466","779","10","530","12391","-7348","30","0","0" +"19467","779","11","530","12156","-7320","16","0","0" +"19468","779","12","530","11957","-7316","27","0","0" +"19469","779","13","530","11784","-7243","18","0","0" +"19470","779","14","530","11713","-7237","17","0","0" +"19471","779","15","530","11636","-7216","16","0","0" +"19472","779","16","530","11644","-7121","26","0","0" +"19473","779","17","530","11679","-7084","88","0","0" +"19474","779","18","530","11720","-7086","103","0","0" +"19475","779","19","530","11768","-7090","95","0","0" +"19476","779","20","530","11802","-7083","83","0","0" +"19477","779","21","530","11851","-7067","51","0","0" +"19478","779","22","530","11934","-7071","59","0","0" +"19479","779","23","530","12031","-7073","85","0","0" +"19480","779","24","530","12087","-7088","76","0","0" +"19481","779","25","530","12179","-7110","55","0","0" +"19482","779","26","530","12218","-7089","55","0","0" +"19483","779","27","530","12205","-7036","55","0","0" +"19484","779","28","530","12167","-7006","55","0","0" +"19485","779","29","530","12125","-7046","55","0","0" +"19486","779","30","530","12077","-7069","58","0","0" +"19487","779","31","530","11999","-7069","55","0","0" +"19488","779","32","530","11808","-7063","51","0","0" +"19489","779","33","530","11747","-7055","43","0","0" +"19490","779","34","530","11690","-7029","43","0","0" +"19491","779","35","530","11648","-7027","43","0","0" +"19492","779","36","530","11615","-7079","43","0","0" +"19493","779","37","530","11640","-7102","54","0","0" +"19494","779","38","530","11674","-7091","80","0","0" +"19495","779","39","530","11738","-7079","90","0","0" +"19496","779","40","530","11802","-7063","87","0","0" +"19497","779","41","530","11834","-7000","99","0","0" +"19498","779","42","530","11852","-6954","82","0","0" +"19499","779","43","530","11894","-6870","14","0","0" +"19500","779","44","530","12020","-6758","13","0","0" +"19501","779","45","530","12214","-6654","7","0","0" +"19502","779","46","530","12438","-6524","11","0","0" +"19503","779","47","530","12617","-6464","24","0","0" +"19504","779","48","530","12753","-6460","20","0","0" +"19505","779","49","530","12827","-6524","20","0","0" +"19506","779","50","530","12926","-6653","18","0","0" +"19507","779","51","530","12919","-6717","21","0","0" +"19508","779","52","530","12917","-6791","19","0","0" +"19509","779","53","530","12931","-6851","13","0","0" +"20007","779","54","530","13001","-6907","12","0","0" +"19521","781","0","530","9371","-7163","9","0","0" +"19522","781","1","530","9352","-7164","22","0","0" +"19523","781","2","530","9337","-7174","23","0","0" +"19524","781","3","530","9319","-7211","24","0","0" +"19525","781","4","530","9303","-7268","24","0","0" +"19526","781","5","530","9277","-7337","26","0","0" +"19527","781","6","530","9246","-7405","40","0","0" +"19528","781","7","530","9216","-7453","54","0","0" +"19529","781","8","530","9157","-7469","72","0","0" +"19530","781","9","530","9153","-7535","89","0","0" +"19531","781","10","530","9119","-7610","115","0","0" +"19532","781","11","530","9128","-7747","142","0","0" +"19533","781","12","530","9204","-7820","132","0","0" +"19534","781","13","530","9459","-7875","96","0","0" +"19535","781","14","530","9707","-7909","75","0","0" +"19536","781","15","530","9955","-7919","38","0","0" +"19537","781","16","530","10214","-7808","34","0","0" +"19538","781","17","530","10501","-7695","22","0","0" +"19539","781","18","530","11230","-7414","12","0","0" +"19540","781","19","530","11497","-7137","12","0","0" +"19541","781","20","530","11557","-6917","33","0","0" +"19542","781","21","530","11922","-6781","63","0","0" +"19543","781","22","530","12331","-6562","21","0","0" +"19544","781","23","530","12546","-6479","21","0","0" +"19545","781","24","530","12796","-6511","22","0","0" +"19546","781","25","530","13048","-6652","16","0","0" +"19547","781","26","530","13116","-6844","19","0","0" +"19548","781","27","530","13075","-6897","17","0","0" +"19549","781","28","530","13040","-6905","15","0","0" +"19550","781","29","530","13014","-6905","10","0","0" +"19580","782","0","530","13014","-6906","9","0","0" +"19579","782","1","530","13028","-6932","22","0","0" +"19578","782","2","530","12975","-7002","36","0","0" +"19577","782","3","530","12826","-7130","59","0","0" +"19576","782","4","530","12660","-7258","85","0","0" +"19575","782","5","530","12472","-7327","69","0","0" +"19574","782","6","530","12326","-7330","26","0","0" +"19573","782","7","530","12155","-7306","26","0","0" +"19572","782","8","530","12045","-7347","26","0","0" +"19571","782","9","530","11898","-7336","26","0","0" +"19570","782","10","530","11600","-7364","10","0","0" +"19569","782","11","530","11380","-7519","10","0","0" +"19568","782","12","530","10572","-7827","19","0","0" +"19567","782","13","530","10275","-7838","31","0","0" +"19566","782","14","530","9977","-7933","36","0","0" +"19565","782","15","530","9715","-7925","81","0","0" +"19564","782","16","530","9459","-7875","104","0","0" +"19563","782","17","530","9226","-7858","133","0","0" +"19562","782","18","530","9113","-7756","143","0","0" +"19561","782","19","530","9120","-7647","123","0","0" +"19560","782","20","530","9133","-7585","107","0","0" +"19559","782","21","530","9147","-7489","79","0","0" +"19558","782","22","530","9216","-7453","54","0","0" +"19557","782","23","530","9246","-7405","42","0","0" +"19556","782","24","530","9279","-7341","30","0","0" +"19555","782","25","530","9303","-7268","23","0","0" +"19554","782","26","530","9324","-7189","23","0","0" +"19553","782","27","530","9337","-7174","23","0","0" +"19552","782","28","530","9352","-7164","22","0","0" +"19551","782","29","530","9371","-7163","9","0","0" +"19581","784","0","530","13006","-6912","9","0","0" +"19582","784","1","530","13012","-6934","21","0","0" +"19583","784","2","530","13023","-6962","22","0","0" +"19584","784","3","530","13055","-6989","18","0","0" +"19585","784","4","530","13194","-7017","15","0","0" +"19586","784","5","530","13274","-7048","15","0","0" +"19587","784","6","530","13347","-7119","15","0","0" +"19588","784","7","530","13349","-7188","15","0","0" +"19589","784","8","530","13255","-7180","15","0","0" +"19590","784","9","530","13215","-7127","7","0","0" +"19591","784","10","530","13266","-7082","15","0","0" +"19592","784","11","530","13405","-7030","7","0","0" +"19593","784","12","530","13398","-6960","7","0","0" +"19594","784","13","530","13306","-6965","7","0","0" +"19595","784","14","530","13233","-6992","7","0","0" +"19596","784","15","530","13187","-7042","7","0","0" +"19603","786","0","530","6792","-7745","126","0","0" +"19604","786","1","530","6820","-7733","138","0","0" +"19605","786","2","530","6884","-7718","146","0","0" +"19606","786","3","530","6968","-7688","146","0","0" +"19607","786","4","530","7026","-7624","160","0","0" +"19608","786","5","530","7081","-7578","182","0","0" +"19609","786","6","530","7250","-7493","213","0","0" +"19610","786","7","530","7540","-7536","168","0","0" +"19611","786","8","530","7647","-7673","155","0","0" +"19612","786","9","530","7784","-7714","158","0","0" +"19613","786","10","530","7958","-7647","166","0","0" +"19614","786","11","530","8240","-7647","168","0","0" +"19615","786","12","530","8443","-7721","172","0","0" +"19616","786","13","530","8598","-7700","164","0","0" +"19617","786","14","530","8690","-7624","145","0","0" +"19618","786","15","530","8831","-7632","164","0","0" +"19619","786","16","530","8981","-7696","228","0","0" +"19620","786","17","530","9130","-7791","220","0","0" +"19621","786","18","530","9248","-7932","168","0","0" +"19622","786","19","530","9500","-8005","124","0","0" +"19623","786","20","530","9701","-7993","56","0","0" +"19624","786","21","530","10022","-7893","56","0","0" +"19625","786","22","530","10549","-7821","53","0","0" +"19626","786","23","530","11360","-7417","51","0","0" +"19627","786","24","530","11549","-7239","24","0","0" +"19628","786","25","530","11648","-7065","25","0","0" +"19629","786","26","530","11704","-6990","30","0","0" +"19630","786","27","530","11808","-6806","25","0","0" +"19631","786","28","530","12060","-6746","28","0","0" +"19632","786","29","530","12247","-6666","20","0","0" +"19633","786","30","530","12334","-6579","17","0","0" +"19634","786","31","530","12509","-6481","17","0","0" +"19635","786","32","530","12710","-6467","17","0","0" +"19636","786","33","530","12834","-6522","18","0","0" +"19637","786","34","530","13043","-6650","17","0","0" +"19638","786","35","530","13106","-6815","17","0","0" +"19639","786","36","530","13090","-6889","17","0","0" +"19640","786","37","530","13040","-6910","17","0","0" +"19641","786","38","530","13014","-6906","10","0","0" +"19680","787","0","530","13014","-6906","10","0","0" +"19679","787","1","530","13032","-6930","17","0","0" +"19678","787","2","530","13025","-6981","24","0","0" +"19677","787","3","530","12814","-7126","20","0","0" +"19676","787","4","530","12733","-7179","16","0","0" +"19675","787","5","530","12693","-7241","23","0","0" +"19674","787","6","530","12565","-7310","20","0","0" +"19673","787","7","530","12320","-7321","33","0","0" +"19672","787","8","530","11991","-7328","33","0","0" +"19671","787","9","530","11689","-7253","33","0","0" +"19670","787","10","530","11360","-7417","45","0","0" +"19669","787","11","530","10549","-7821","46","0","0" +"19668","787","12","530","10022","-7893","47","0","0" +"19667","787","13","530","9701","-7993","56","0","0" +"19666","787","14","530","9503","-7988","109","0","0" +"19665","787","15","530","9283","-7928","147","0","0" +"19664","787","16","530","9130","-7791","215","0","0" +"19663","787","17","530","8981","-7696","225","0","0" +"19662","787","18","530","8831","-7632","161","0","0" +"19661","787","19","530","8690","-7624","142","0","0" +"19660","787","20","530","8598","-7700","166","0","0" +"19659","787","21","530","8443","-7721","171","0","0" +"19658","787","22","530","8236","-7655","166","0","0" +"19657","787","23","530","7962","-7638","164","0","0" +"19656","787","24","530","7790","-7724","157","0","0" +"19655","787","25","530","7647","-7673","155","0","0" +"19654","787","26","530","7540","-7534","167","0","0" +"19653","787","27","530","7250","-7493","212","0","0" +"19652","787","28","530","7081","-7578","176","0","0" +"19651","787","29","530","7026","-7624","159","0","0" +"19650","787","30","530","6968","-7688","146","0","0" +"19649","787","31","530","6884","-7718","144","0","0" +"19648","787","32","530","6820","-7733","134","0","0" +"19647","787","33","530","6792","-7745","126","0","0" +"19682","788","0","530","13182","-7045","11","0","0" +"19683","788","1","530","13148","-7025","20","0","0" +"19684","788","2","530","13122","-7003","20","0","0" +"19685","788","3","530","13104","-6977","20","0","0" +"19686","788","4","530","13060","-6946","20","0","0" +"19687","788","5","530","13034","-6924","20","0","0" +"19688","788","6","530","13010","-6913","13","0","0" +"19694","790","0","1","1679","-4317","61","0","0" +"19695","790","1","1","1673","-4313","66","0","0" +"19696","790","2","1","1634","-4286","66","0","0" +"19697","790","3","1","1585","-4219","66","0","0" +"19698","790","4","1","1604","-4126","66","0","0" +"19699","790","5","1","1720","-4084","69","0","0" +"19700","790","6","1","1741","-3997","88","0","0" +"19701","790","7","1","1712","-3945","96","0","0" +"19702","790","8","1","1651","-3895","104","0","0" +"19703","790","9","1","1514","-3860","81","0","0" +"19704","790","10","1","1299","-3836","50","0","0" +"19705","790","11","1","1016","-3788","50","0","0" +"19706","790","12","1","602","-3721","55","0","0" +"19707","790","13","1","284","-3710","55","0","0" +"19708","790","14","1","-86","-3707","55","0","0" +"19709","790","15","1","-384","-3811","52","0","0" +"19710","790","16","1","-613","-3862","80","0","0" +"19711","790","17","1","-731","-3875","69","0","0" +"19712","790","18","1","-828","-3830","34","0","0" +"19713","790","19","1","-887","-3781","16","0","0" +"19714","790","20","1","-892","-3776","13","0","0" +"19717","791","0","1","-892","-3776","11","0","0" +"19718","791","1","1","-886","-3783","16","0","0" +"19719","791","2","1","-876","-3799","20","0","0" +"19720","791","3","1","-820","-3899","55","0","0" +"19721","791","4","1","-701","-3943","59","0","0" +"19722","791","5","1","-373","-3888","60","0","0" +"19723","791","6","1","-56","-3836","60","0","0" +"19724","791","7","1","312","-3859","60","0","0" +"19725","791","8","1","749","-3972","51","0","0" +"19726","791","9","1","1142","-4190","52","0","0" +"19730","791","10","1","1226","-4355","52","0","0" +"19731","791","11","1","1341","-4375","39","0","0" +"19732","791","12","1","1417","-4366","31","0","0" +"19733","791","13","1","1431","-4375","31","0","0" +"19734","791","14","1","1435","-4412","33","0","0" +"19735","791","15","1","1451","-4420","33","0","0" +"19736","791","16","1","1495","-4414","33","0","0" +"19737","791","17","1","1585","-4407","40","0","0" +"19738","791","18","1","1657","-4402","53","0","0" +"19739","791","19","1","1715","-4372","62","0","0" +"19740","791","20","1","1719","-4323","64","0","0" +"19741","791","21","1","1679","-4316","62","0","0" +"19885","796","0","0","2269","-5343","86","0","0" +"19886","796","1","0","2257","-5326","94","0","0" +"19887","796","2","0","2245","-5299","95","0","0" +"19888","796","3","0","2279","-5256","101","0","0" +"19889","796","4","0","2320","-5212","103","0","0" +"19890","796","5","0","2397","-5179","106","0","0" +"19891","796","6","0","2477","-5140","106","0","0" +"19892","796","7","0","2481","-4999","116","0","0" +"19893","796","8","0","2620","-4975","135","0","0" +"19894","796","9","0","2894","-4984","143","0","0" +"19895","796","10","0","3018","-4838","153","0","0" +"19896","796","11","0","3100","-4696","143","0","0" +"19897","796","12","0","3207","-4570","143","0","0" +"19898","796","13","0","3285","-4479","143","0","0" +"19899","796","14","0","3397","-4446","143","0","0" +"19900","796","15","0","3453","-4460","147","0","0" +"19901","796","16","0","3474","-4490","147","0","0" +"19902","796","17","0","3490","-4507","147","0","0" +"19903","796","18","530","6140","-7016","152","0","0" +"19904","796","19","530","6174","-7003","166","0","0" +"19905","796","20","530","6189","-6958","184","0","0" +"19906","796","21","530","6214","-6907","182","0","0" +"19907","796","22","530","6293","-6849","201","0","0" +"19908","796","23","530","6387","-6874","201","0","0" +"19909","796","24","530","6520","-6870","201","0","0" +"19910","796","25","530","6657","-6863","201","0","0" +"19911","796","26","530","6824","-6926","191","0","0" +"19912","796","27","530","7062","-7076","186","0","0" +"19913","796","28","530","7289","-7410","105","0","0" +"19914","796","29","530","7450","-7494","123","0","0" +"19915","796","30","530","7558","-7550","151","0","0" +"19916","796","31","530","7697","-7647","156","0","0" +"19917","796","32","530","7845","-7719","158","0","0" +"19918","796","33","530","8005","-7628","158","0","0" +"19919","796","34","530","8261","-7698","158","0","0" +"19920","796","35","530","8443","-7778","158","0","0" +"19921","796","36","530","8556","-7775","191","0","0" +"19922","796","37","530","8671","-7735","233","0","0" +"19923","796","38","530","8930","-7697","232","0","0" +"19924","796","39","530","9181","-7820","203","0","0" +"19925","796","40","530","9329","-7931","120","0","0" +"19926","796","41","530","9703","-7993","90","0","0" +"19927","796","42","530","9909","-7992","38","0","0" +"19928","796","43","530","10315","-7800","26","0","0" +"19929","796","44","530","10573","-7646","26","0","0" +"19930","796","45","530","11309","-7255","26","0","0" +"19931","796","46","530","11508","-7033","26","0","0" +"19932","796","47","530","11558","-6905","26","0","0" +"19933","796","48","530","11774","-6827","26","0","0" +"19934","796","49","530","11993","-6770","26","0","0" +"19935","796","50","530","12239","-6644","26","0","0" +"19936","796","51","530","12344","-6542","21","0","0" +"19937","796","52","530","12555","-6479","21","0","0" +"19938","796","53","530","12870","-6500","20","0","0" +"19939","796","54","530","13026","-6668","17","0","0" +"19940","796","55","530","13111","-6830","21","0","0" +"19941","796","56","530","13093","-6887","21","0","0" +"19942","796","57","530","13035","-6906","19","0","0" +"19943","796","58","530","13014","-6906","10","0","0" +"20006","797","0","530","13014","-6906","10","0","0" +"20005","797","1","530","13030","-6925","19","0","0" +"20004","797","2","530","12982","-6997","22","0","0" +"20003","797","3","530","12908","-7062","26","0","0" +"20002","797","4","530","12756","-7171","105","0","0" +"20001","797","5","530","12579","-7260","78","0","0" +"20000","797","6","530","12330","-7342","51","0","0" +"19999","797","7","530","12074","-7378","47","0","0" +"19998","797","8","530","11869","-7340","48","0","0" +"19997","797","9","530","11676","-7277","43","0","0" +"19996","797","10","530","11292","-7280","26","0","0" +"19995","797","11","530","10443","-7494","34","0","0" +"19994","797","12","530","10283","-7744","36","0","0" +"19993","797","13","530","10065","-7887","28","0","0" +"19992","797","14","530","9748","-8055","39","0","0" +"19991","797","15","530","9498","-8029","91","0","0" +"19990","797","16","530","9227","-7912","120","0","0" +"19989","797","17","530","9095","-7756","203","0","0" +"19988","797","18","530","8930","-7697","237","0","0" +"19987","797","19","530","8681","-7715","234","0","0" +"19986","797","20","530","8529","-7718","191","0","0" +"19985","797","21","530","8261","-7698","158","0","0" +"19984","797","22","530","8005","-7628","158","0","0" +"19983","797","23","530","7815","-7623","158","0","0" +"19982","797","24","530","7695","-7654","156","0","0" +"19981","797","25","530","7558","-7550","151","0","0" +"19980","797","26","530","7450","-7494","123","0","0" +"19979","797","27","530","7289","-7410","108","0","0" +"19978","797","28","530","7062","-7076","192","0","0" +"19977","797","29","530","6857","-6898","191","0","0" +"19976","797","30","530","6668","-6837","201","0","0" +"19975","797","31","530","6541","-6829","201","0","0" +"19974","797","32","530","6391","-6828","211","0","0" +"19973","797","33","530","6293","-6849","202","0","0" +"19972","797","34","530","6214","-6907","179","0","0" +"19971","797","35","530","6189","-6958","171","0","0" +"19970","797","36","530","6171","-7010","166","0","0" +"19969","797","37","530","6130","-7010","153","0","0" +"19968","797","38","530","6109","-6994","152","0","0" +"19967","797","39","0","3474","-4490","147","0","0" +"19966","797","40","0","3453","-4460","147","0","0" +"19965","797","41","0","3395","-4445","144","0","0" +"19964","797","42","0","3230","-4475","143","0","0" +"19963","797","43","0","3080","-4479","144","0","0" +"19962","797","44","0","2952","-4602","143","0","0" +"19961","797","45","0","2788","-4757","153","0","0" +"19960","797","46","0","2648","-4872","143","0","0" +"19959","797","47","0","2467","-5029","116","0","0" +"19958","797","48","0","2326","-5111","106","0","0" +"19957","797","49","0","2227","-5166","106","0","0" +"19956","797","50","0","2210","-5250","104","0","0" +"19955","797","51","0","2231","-5297","101","0","0" +"19954","797","52","0","2257","-5326","94","0","0" +"20541","797","53","0","2269","-5343","86","0","0" +"20424","807","0","0","-4820","-1151","502","0","0" +"20425","807","1","0","-4829","-1145","509","0","0" +"20426","807","2","0","-4846","-1131","520","0","0" +"20427","807","3","0","-4833","-1087","542","0","0" +"20428","807","4","0","-4858","-1054","549","0","0" +"20429","807","5","0","-4934","-996","541","0","0" +"20430","807","6","0","-4931","-952","540","0","0" +"20431","807","7","0","-4966","-899","544","0","0" +"20432","807","8","0","-4998","-863","508","0","0" +"20433","807","9","0","-5034","-818","519","0","0" +"20434","807","10","530","11090","-7071","23","0","0" +"20435","807","11","530","11504","-6984","22","0","0" +"20436","807","12","530","11633","-6877","22","0","0" +"20437","807","13","530","11819","-6822","22","0","0" +"20438","807","14","530","12114","-6737","22","0","0" +"20439","807","15","530","12272","-6633","16","0","0" +"20440","807","16","530","12450","-6497","16","0","0" +"20441","807","17","530","12626","-6476","18","0","0" +"20442","807","18","530","12818","-6494","18","0","0" +"20443","807","19","530","12942","-6509","18","0","0" +"20444","807","20","530","13020","-6531","18","0","0" +"20445","807","21","530","13049","-6758","23","0","0" +"20446","807","22","530","13026","-6870","21","0","0" +"20447","807","23","530","13011","-6909","9","0","0" diff --git a/HermesProxy/CSV/TotemSpells.csv b/HermesProxy/CSV/TotemSpells.csv new file mode 100644 index 00000000..61e5669e --- /dev/null +++ b/HermesProxy/CSV/TotemSpells.csv @@ -0,0 +1,96 @@ +SpellId,TotemSlot +1535,0 +3599,0 +4971,0 +5605,0 +6274,0 +6363,0 +6364,0 +6365,0 +8181,0 +8190,0 +8227,0 +8249,0 +8264,0 +8498,0 +8499,0 +10437,0 +10438,0 +10478,0 +10479,0 +10526,0 +10585,0 +10586,0 +10587,0 +11314,0 +11315,0 +11899,0 +15038,0 +15867,0 +16387,0 +18975,0 +22047,0 +23419,0 +24309,0 +27623,0 +2484,1 +5730,1 +6390,1 +6391,1 +6392,1 +8071,1 +8075,1 +8143,1 +8154,1 +8155,1 +8160,1 +8161,1 +10406,1 +10407,1 +10408,1 +10427,1 +10428,1 +10442,1 +15786,1 +23420,1 +23789,1 +25000,1 +25361,1 +5394,2 +5675,2 +6375,2 +6377,2 +8166,2 +8170,2 +8184,2 +8262,2 +10462,2 +10463,2 +10495,2 +10496,2 +10497,2 +10537,2 +10538,2 +16190,2 +17354,2 +17359,2 +23422,2 +24854,2 +6495,3 +8177,3 +8512,3 +8835,3 +10595,3 +10600,3 +10601,3 +10613,3 +10614,3 +10627,3 +15107,3 +15111,3 +15112,3 +15787,3 +23423,3 +25359,3 +25908,3 +27621,3 \ No newline at end of file diff --git a/HermesProxy/GlobalSessionData.cs b/HermesProxy/GlobalSessionData.cs index 1cdf3d41..11ecbe14 100644 --- a/HermesProxy/GlobalSessionData.cs +++ b/HermesProxy/GlobalSessionData.cs @@ -5,6 +5,7 @@ using HermesProxy.World.Objects; using HermesProxy.World.Server; using System.Collections.Generic; +using System.Linq; using ArenaTeamInspectData = HermesProxy.World.Server.Packets.ArenaTeamInspectData; namespace HermesProxy @@ -32,6 +33,7 @@ public class GameSessionData public bool IsInWorld; public uint? CurrentMapId; public uint CurrentTaxiNode; + public List UsableTaxiNodes = new(); public uint PendingTransferMapId; public uint LastEnteredAreaTrigger; public uint LastDispellSpellId; @@ -39,6 +41,7 @@ public class GameSessionData public int GroupUpdateCounter; public uint GroupReadyCheckResponses; public World.Server.Packets.PartyUpdate[] CurrentGroups = new World.Server.Packets.PartyUpdate[2]; + public List OwnCharacters; public WowGuid128 CurrentPlayerGuid; public long CurrentPlayerCreateTime; public uint CurrentGuildCreateTime; @@ -55,6 +58,7 @@ public class GameSessionData public List PendingClientPetCasts = new List(); public WowGuid64 LastLootTargetGuid; public List ActionButtons = new(); + public Dictionary> UnitAuraDurationUpdateTime = new(); public Dictionary> UnitAuraDurationLeft = new(); public Dictionary> UnitAuraDurationFull = new(); public Dictionary> UnitAuraCaster = new(); @@ -66,7 +70,6 @@ public class GameSessionData public Dictionary OriginalObjectTypes = new(); public Dictionary ItemGems = new(); public Dictionary CreatureClasses = new(); - public List OwnCharacters = new(); public Dictionary ChannelIds = new(); public Dictionary ItemBuyCount = new(); public Dictionary RealSpellToLearnSpell = new(); @@ -79,12 +82,13 @@ public class GameSessionData public Dictionary DailyQuestsDone = new Dictionary(); public HashSet FlagCarrierGuids = new HashSet(); public Dictionary ObjectSpawnCount = new Dictionary(); + public HashSet DespawnedGameObjects = new(); public HashSet HunterPetGuids = new HashSet(); public Dictionary> PlayerArenaTeams = new Dictionary>(); public HashSet AddonPrefixes = new HashSet(); public Dictionary> FlatSpellMods = new Dictionary>(); public Dictionary> PctSpellMods = new Dictionary>(); - + public uint GetCurrentGroupSize() { var group = GetCurrentGroup(); @@ -139,6 +143,19 @@ public byte GetItemSpellSlot(WowGuid128 guid, uint spellId) uint itemId = updates[OBJECT_FIELD_ENTRY].UInt32Value; return GameData.GetItemEffectSlot(itemId, spellId); } + public uint GetItemId(WowGuid128 guid) + { + int OBJECT_FIELD_ENTRY = LegacyVersion.GetUpdateField(ObjectField.OBJECT_FIELD_ENTRY); + if (OBJECT_FIELD_ENTRY < 0) + return 0; + + var updates = GetCachedObjectFieldsLegacy(guid); + if (updates == null) + return 0; + + uint itemId = updates[OBJECT_FIELD_ENTRY].UInt32Value; + return itemId; + } public void SetFlatSpellMod(byte spellMod, byte spellMask, int amount) { if (FlatSpellMods.ContainsKey(spellMod)) @@ -289,7 +306,7 @@ public uint GetBattleFieldQueueType(uint queueSlot) return BattleFieldQueueTypes[queueSlot]; return 0; } - public void StoreAuraDurationLeft(WowGuid128 guid, byte slot, int duration) + public void StoreAuraDurationLeft(WowGuid128 guid, byte slot, int duration, int currentTime) { if (UnitAuraDurationLeft.ContainsKey(guid)) { @@ -304,6 +321,20 @@ public void StoreAuraDurationLeft(WowGuid128 guid, byte slot, int duration) dict.Add(slot, duration); UnitAuraDurationLeft.Add(guid, dict); } + + if (UnitAuraDurationUpdateTime.ContainsKey(guid)) + { + if (UnitAuraDurationUpdateTime[guid].ContainsKey(slot)) + UnitAuraDurationUpdateTime[guid][slot] = currentTime; + else + UnitAuraDurationUpdateTime[guid].Add(slot, currentTime); + } + else + { + Dictionary dict = new Dictionary(); + dict.Add(slot, currentTime); + UnitAuraDurationUpdateTime.Add(guid, dict); + } } public void StoreAuraDurationFull(WowGuid128 guid, byte slot, int duration) { @@ -323,6 +354,10 @@ public void StoreAuraDurationFull(WowGuid128 guid, byte slot, int duration) } public void ClearAuraDuration(WowGuid128 guid, byte slot) { + if (UnitAuraDurationUpdateTime.ContainsKey(guid) && + UnitAuraDurationUpdateTime[guid].ContainsKey(slot)) + UnitAuraDurationUpdateTime[guid].Remove(slot); + if (UnitAuraDurationLeft.ContainsKey(guid) && UnitAuraDurationLeft[guid].ContainsKey(slot)) UnitAuraDurationLeft[guid].Remove(slot); @@ -344,6 +379,11 @@ public void GetAuraDuration(WowGuid128 guid, byte slot, out int left, out int fu full = UnitAuraDurationFull[guid][slot]; else full = left; + + if (left > 0 && + UnitAuraDurationUpdateTime.ContainsKey(guid) && + UnitAuraDurationUpdateTime[guid].ContainsKey(slot)) + left = left - (System.Environment.TickCount - UnitAuraDurationUpdateTime[guid][slot]); } public void StoreAuraCaster(WowGuid128 target, byte slot, WowGuid128 caster) { @@ -601,6 +641,7 @@ public class GlobalSessionData { public BNetServer.Networking.AccountInfo AccountInfo; public BNetServer.Networking.GameAccountInfo GameAccountInfo; + public RealmManager RealmManager = new(); public string Username; public string Password; public string LoginTicket; @@ -664,7 +705,7 @@ public WowGuid128 GetGuildGuid(string name) public WowGuid128 GetGameAccountGuidForPlayer(WowGuid128 playerGuid) { - if (GameState.OwnCharacters.Contains(playerGuid)) + if (GameState.OwnCharacters.Any(own => own.Guid == playerGuid)) return WowGuid128.Create(HighGuidType703.WowAccount, GameAccountInfo.Id); else return WowGuid128.Create(HighGuidType703.WowAccount, playerGuid.GetCounter()); @@ -672,7 +713,7 @@ public WowGuid128 GetGameAccountGuidForPlayer(WowGuid128 playerGuid) public WowGuid128 GetBnetAccountGuidForPlayer(WowGuid128 playerGuid) { - if (GameState.OwnCharacters.Contains(playerGuid)) + if (GameState.OwnCharacters.Any(own => own.Guid == playerGuid)) return WowGuid128.Create(HighGuidType703.BNetAccount, AccountInfo.Id); else return WowGuid128.Create(HighGuidType703.BNetAccount, playerGuid.GetCounter()); diff --git a/HermesProxy/Realm/Realm.cs b/HermesProxy/Realm/Realm.cs index 6c9b865a..a00136de 100644 --- a/HermesProxy/Realm/Realm.cs +++ b/HermesProxy/Realm/Realm.cs @@ -19,7 +19,6 @@ using Framework.Realm; using System; using System.Net; -using System.Net.Sockets; public class Realm : IEquatable { @@ -67,13 +66,14 @@ public bool Equals(Realm other) && other.Name == Name && other.Type == Type && other.Flags == Flags + && other.CharacterCount == CharacterCount && other.Timezone == Timezone && other.PopulationLevel == PopulationLevel; } public override int GetHashCode() { - return new { ExternalAddress, Port, Name, Type, Flags, Timezone, PopulationLevel }.GetHashCode(); + return new { ExternalAddress, Port, Name, Type, Flags, CharacterCount, Timezone, PopulationLevel }.GetHashCode(); } public RealmId Id; @@ -84,6 +84,7 @@ public override int GetHashCode() public string NormalizedName; public byte Type; public RealmFlags Flags; + public byte CharacterCount; public byte Timezone; public float PopulationLevel; } diff --git a/HermesProxy/Realm/RealmManager.cs b/HermesProxy/Realm/RealmManager.cs index 263cabad..cd0ce08f 100644 --- a/HermesProxy/Realm/RealmManager.cs +++ b/HermesProxy/Realm/RealmManager.cs @@ -28,15 +28,14 @@ using Framework.Logging; using HermesProxy; -public class RealmManager : Singleton +public class RealmManager { - RealmManager() { } - - public void Initialize() + public RealmManager() { LoadBuildInfo(); - AddRealm(1, "Sandbox", "127.0.0.1", (ushort)Framework.Settings.RealmPort, RealmType.PVP, RealmFlags.Recommended, 1, 1); + // Placeholder required for initial GetSubRegions() + AddRealm(1, "Placeholder", "127.0.0.1", 1, RealmType.PVP, RealmFlags.Recommended, 0, 1, 1); } void LoadBuildInfo() @@ -76,7 +75,7 @@ void UpdateRealm(Realm realm) _realms[realm.Id] = realm; } - public void AddRealm(uint id, string name,string externalAddress, ushort port, RealmType type, RealmFlags flags, byte timezone, float populationLevel) + public void AddRealm(uint id, string name, string externalAddress, ushort port, RealmType type, RealmFlags flags, byte characterCount, byte timezone, float populationLevel) { Dictionary existingRealms = new Dictionary(); foreach (var p in _realms) @@ -95,6 +94,7 @@ public void AddRealm(uint id, string name,string externalAddress, ushort port, R realm.Type = (byte)realmType; realm.Flags = flags; + realm.CharacterCount = characterCount; realm.Timezone = timezone; realm.PopulationLevel = populationLevel; realm.Build = (uint)Framework.Settings.ClientBuild; @@ -110,9 +110,9 @@ public void AddRealm(uint id, string name,string externalAddress, ushort port, R _subRegions.Add(subRegion); if (!existingRealms.ContainsKey(realm.Id)) - Log.Print(LogType.Server, $"Added realm \"{realm.Name}\" at {realm.ExternalAddress.ToString()}:{realm.Port}"); + Log.Print(LogType.Server, $"Added realm \"{realm.Name}\" at {realm.ExternalAddress}:{realm.Port}"); else - Log.Print(LogType.Server, $"Updating realm \"{realm.Name}\" at { realm.ExternalAddress.ToString()}:{realm.Port}"); + Log.Print(LogType.Server, $"Updating realm \"{realm.Name}\" at { realm.ExternalAddress}:{realm.Port}"); existingRealms.Remove(realm.Id); } @@ -126,7 +126,7 @@ public void UpdateRealms(List authRealmList) { foreach (var authRealmEntry in authRealmList) { - AddRealm(authRealmEntry.ID, authRealmEntry.Name, authRealmEntry.Address, authRealmEntry.Port, authRealmEntry.Type, authRealmEntry.Flags, authRealmEntry.Timezone, authRealmEntry.Population); + AddRealm(authRealmEntry.ID, authRealmEntry.Name, authRealmEntry.Address, authRealmEntry.Port, authRealmEntry.Type, authRealmEntry.Flags, authRealmEntry.CharacterCount, authRealmEntry.Timezone, authRealmEntry.Population); } } } diff --git a/HermesProxy/Server.cs b/HermesProxy/Server.cs index cb813593..09c19bbb 100644 --- a/HermesProxy/Server.cs +++ b/HermesProxy/Server.cs @@ -56,9 +56,6 @@ static void Main() ExitNow(); } - Log.Print(LogType.Server, "Starting Realm manager..."); - Global.RealmMgr.Initialize(); - Log.Print(LogType.Server, "Starting Login service..."); Global.LoginServiceMgr.Initialize(); diff --git a/HermesProxy/VersionChecker.cs b/HermesProxy/VersionChecker.cs index 8b7751c9..9a5474b8 100644 --- a/HermesProxy/VersionChecker.cs +++ b/HermesProxy/VersionChecker.cs @@ -29,7 +29,56 @@ static LegacyVersion() UpdateFieldDictionary = new Dictionary>(); UpdateFieldNameDictionary = new Dictionary>(); if (!LoadUFDictionariesInto(UpdateFieldDictionary, UpdateFieldNameDictionary)) - Log.Print(LogType.Error, "Could not load update fields for current server version."); + Log.Print(LogType.Error, "Could not load update fields for current legacy version."); + if (!LoadOpcodeDictionaries()) + Log.Print(LogType.Error, "Could not load opcodes for current legacy version."); + } + + private static readonly Dictionary CurrentToUniversalOpcodeDictionary = new(); + private static readonly Dictionary UniversalToCurrentOpcodeDictionary = new(); + + private static bool LoadOpcodeDictionaries() + { + Type enumType = Opcodes.GetOpcodesEnumForVersion(Build); + if (enumType == null) + return false; + + foreach (var item in Enum.GetValues(enumType)) + { + string oldOpcodeName = Enum.GetName(enumType, item); + Opcode universalOpcode = Opcodes.GetUniversalOpcode(oldOpcodeName); + if (universalOpcode == Opcode.MSG_NULL_ACTION && + oldOpcodeName != "MSG_NULL_ACTION") + { + Log.Print(LogType.Error, $"Opcode {oldOpcodeName} is missing from the universal opcode enum!"); + continue; + } + + CurrentToUniversalOpcodeDictionary.Add((uint)item, universalOpcode); + UniversalToCurrentOpcodeDictionary.Add(universalOpcode, (uint)item); + } + + if (CurrentToUniversalOpcodeDictionary.Count < 1) + return false; + + Log.Print(LogType.Server, $"Loaded {CurrentToUniversalOpcodeDictionary.Count} legacy opcodes."); + return true; + } + + public static Opcode GetUniversalOpcode(uint opcode) + { + Opcode universalOpcode; + if (CurrentToUniversalOpcodeDictionary.TryGetValue(opcode, out universalOpcode)) + return universalOpcode; + return Opcode.MSG_NULL_ACTION; + } + + public static uint GetCurrentOpcode(Opcode universalOpcode) + { + uint opcode; + if (UniversalToCurrentOpcodeDictionary.TryGetValue(universalOpcode, out opcode)) + return opcode; + return 0; } private static readonly Dictionary> UpdateFieldDictionary; @@ -260,6 +309,8 @@ public static InventoryResult ConvertInventoryResult(uint result) { if (RemovedInVersion(ClientVersionBuild.V2_0_1_6180)) return (InventoryResult)Enum.Parse(typeof(InventoryResult), ((InventoryResultVanilla)result).ToString()); + else if (RemovedInVersion(ClientVersionBuild.V3_0_2_9056)) + return (InventoryResult)Enum.Parse(typeof(InventoryResult), ((InventoryResultTBC)result).ToString()); return (InventoryResult)result; } @@ -284,7 +335,56 @@ static ModernVersion() UpdateFieldDictionary = new Dictionary>(); UpdateFieldNameDictionary = new Dictionary>(); if (!LoadUFDictionariesInto(UpdateFieldDictionary, UpdateFieldNameDictionary)) - Log.Print(LogType.Error, "Could not load update fields for current server version."); + Log.Print(LogType.Error, "Could not load update fields for current modern version."); + if (!LoadOpcodeDictionaries()) + Log.Print(LogType.Error, "Could not load opcodes for current modern version."); + } + + private static readonly Dictionary CurrentToUniversalOpcodeDictionary = new(); + private static readonly Dictionary UniversalToCurrentOpcodeDictionary = new(); + + private static bool LoadOpcodeDictionaries() + { + Type enumType = Opcodes.GetOpcodesEnumForVersion(Build); + if (enumType == null) + return false; + + foreach (var item in Enum.GetValues(enumType)) + { + string oldOpcodeName = Enum.GetName(enumType, item); + Opcode universalOpcode = Opcodes.GetUniversalOpcode(oldOpcodeName); + if (universalOpcode == Opcode.MSG_NULL_ACTION && + oldOpcodeName != "MSG_NULL_ACTION") + { + Log.Print(LogType.Error, $"Opcode {oldOpcodeName} is missing from the universal opcode enum!"); + continue; + } + + CurrentToUniversalOpcodeDictionary.Add((uint)item, universalOpcode); + UniversalToCurrentOpcodeDictionary.Add(universalOpcode, (uint)item); + } + + if (CurrentToUniversalOpcodeDictionary.Count < 1) + return false; + + Log.Print(LogType.Server, $"Loaded {CurrentToUniversalOpcodeDictionary.Count} modern opcodes."); + return true; + } + + public static Opcode GetUniversalOpcode(uint opcode) + { + Opcode universalOpcode; + if (CurrentToUniversalOpcodeDictionary.TryGetValue(opcode, out universalOpcode)) + return universalOpcode; + return Opcode.MSG_NULL_ACTION; + } + + public static uint GetCurrentOpcode(Opcode universalOpcode) + { + uint opcode; + if (UniversalToCurrentOpcodeDictionary.TryGetValue(universalOpcode, out opcode)) + return opcode; + return 0; } private static readonly Dictionary> UpdateFieldDictionary; diff --git a/HermesProxy/World/Client/PacketHandlers/CharacterHandler.cs b/HermesProxy/World/Client/PacketHandlers/CharacterHandler.cs index 15138d43..e51f67d9 100644 --- a/HermesProxy/World/Client/PacketHandlers/CharacterHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/CharacterHandler.cs @@ -27,7 +27,6 @@ void HandleEnumCharactersResult(WorldPacket packet) EnumCharactersResult.CharacterInfo char1 = new EnumCharactersResult.CharacterInfo(); PlayerCache cache = new PlayerCache(); char1.Guid = packet.ReadGuid().To128(GetSession().GameState); - GetSession().GameState.OwnCharacters.Add(char1.Guid); char1.Name = cache.Name = packet.ReadCString(); char1.RaceId = cache.RaceId = (Race)packet.ReadUInt8(); char1.ClassId = cache.ClassId = (Class)packet.ReadUInt8(); @@ -97,6 +96,7 @@ void HandleEnumCharactersResult(WorldPacket packet) char1.ExpansionChosen = true; charEnum.Characters.Add(char1); } + GetSession().GameState.OwnCharacters = charEnum.Characters; charEnum.RaceUnlockData.Add(new EnumCharactersResult.RaceUnlock(1, true, false, false)); charEnum.RaceUnlockData.Add(new EnumCharactersResult.RaceUnlock(2, true, false, false)); @@ -569,5 +569,19 @@ void HandleInspectArenaTeams(WorldPacket packet) inspect.ArenaTeams.Add(GetSession().GameState.GetArenaTeamDataForPlayer(inspect.PlayerGUID, slot)); SendPacketToClient(inspect); } + + [PacketHandler(Opcode.SMSG_CHARACTER_RENAME_RESULT)] + void HandleCharacterRenameResult(WorldPacket packet) + { + CharacterRenameResult rename = new(); + Enums.Vanilla.ResponseCodes legacyCode = (Enums.Vanilla.ResponseCodes)packet.ReadUInt8(); + rename.Result = (Enums.Classic.ResponseCodes)Enum.Parse(typeof(Enums.Classic.ResponseCodes), legacyCode.ToString()); + if (rename.Result == Enums.Classic.ResponseCodes.Success) + { + rename.Guid = packet.ReadGuid().To128(GetSession().GameState); + rename.Name = packet.ReadCString(); + } + SendPacketToClient(rename); + } } } diff --git a/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs b/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs index 0af53842..76fa1fe8 100644 --- a/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs @@ -200,7 +200,8 @@ void HandleServerChatMessageVanilla(WorldPacket packet) uint textLength = packet.ReadUInt32(); string text = packet.ReadString(textLength); - ChatFlags chatFlags = (ChatFlags)packet.ReadUInt8(); + var chatTag = (ChatTag)packet.ReadUInt8(); + var chatFlags = (ChatFlags)Enum.Parse(typeof(ChatFlags), chatTag.ToString()); string addonPrefix = ""; if (!ChatPkt.CheckAddonPrefix(GetSession().GameState.AddonPrefixes, ref language, ref text, ref addonPrefix)) @@ -310,7 +311,7 @@ void HandleServerChatMessageWotLK(WorldPacket packet) uint textLength = packet.ReadUInt32(); string text = packet.ReadString(textLength); - ChatFlags chatFlags = (ChatFlags)packet.ReadUInt8(); + var chatFlags = (ChatFlags)packet.ReadUInt8(); if (LegacyVersion.InVersion(ClientVersionBuild.V2_0_1_6180, ClientVersionBuild.V3_0_2_9056) && packet.GetUniversalOpcode(false) == Opcode.SMSG_GM_MESSAGECHAT) diff --git a/HermesProxy/World/Client/PacketHandlers/GameObjectHandler.cs b/HermesProxy/World/Client/PacketHandlers/GameObjectHandler.cs index 8421b270..7bde2d76 100644 --- a/HermesProxy/World/Client/PacketHandlers/GameObjectHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/GameObjectHandler.cs @@ -13,9 +13,11 @@ public partial class WorldClient [PacketHandler(Opcode.SMSG_GAME_OBJECT_DESPAWN)] void HandleGameObjectDespawn(WorldPacket packet) { + WowGuid64 guid = packet.ReadGuid(); GameObjectDespawn despawn = new GameObjectDespawn(); - despawn.ObjectGUID = packet.ReadGuid().To128(GetSession().GameState); + despawn.ObjectGUID = guid.To128(GetSession().GameState); SendPacketToClient(despawn); + GetSession().GameState.DespawnedGameObjects.Add(guid); } [PacketHandler(Opcode.SMSG_GAME_OBJECT_RESET_STATE)] diff --git a/HermesProxy/World/Client/PacketHandlers/GroupHandler.cs b/HermesProxy/World/Client/PacketHandlers/GroupHandler.cs index 5a4e3ef5..c6ec954c 100644 --- a/HermesProxy/World/Client/PacketHandlers/GroupHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/GroupHandler.cs @@ -37,7 +37,7 @@ void HandleGroupInvite(WorldPacket packet) if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) party.CanAccept = packet.ReadBool(); - var realm = RealmManager.Instance.GetRealm(GetSession().RealmId); + var realm = GetSession().RealmManager.GetRealm(GetSession().RealmId); party.InviterRealm = new VirtualRealmInfo(realm.Id.GetAddress(), true, false, realm.Name, realm.NormalizedName); party.InviterName = packet.ReadCString(); diff --git a/HermesProxy/World/Client/PacketHandlers/GuildHandler.cs b/HermesProxy/World/Client/PacketHandlers/GuildHandler.cs index 6478087a..ae3c52ce 100644 --- a/HermesProxy/World/Client/PacketHandlers/GuildHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/GuildHandler.cs @@ -1,4 +1,5 @@ -using HermesProxy.Enums; +using Framework.Logging; +using HermesProxy.Enums; using HermesProxy.World.Enums; using HermesProxy.World.Objects; using HermesProxy.World.Server.Packets; @@ -236,8 +237,16 @@ void HandleGuildInfo(WorldPacket packet) int month = packet.ReadInt32(); int year = packet.ReadInt32(); - DateTime date = new DateTime(year, month, day); - GetSession().GameState.CurrentGuildCreateTime = (uint)Time.DateTimeToUnixTime(date); + DateTime date; + try + { + date = new DateTime(year, month, day); + GetSession().GameState.CurrentGuildCreateTime = (uint)Time.DateTimeToUnixTime(date); + } + catch + { + Log.Print(LogType.Error, $"Invalid guild create date: {day}-{month}-{year}"); + } } packet.ReadUInt32(); // Players Count diff --git a/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs b/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs index 553e399b..bec532f0 100644 --- a/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs @@ -71,6 +71,8 @@ void HandleItemPushResult(WorldPacket packet) continue; if (logEntry.QuestID != objective.QuestID) continue; + if (logEntry.ObjectiveProgress[objective.StorageIndex] == null) + continue; currentCount = (uint)logEntry.ObjectiveProgress[objective.StorageIndex]; break; @@ -214,5 +216,37 @@ void HandleItemEnchantTimeUpdate(WorldPacket packet) enchant.OwnerGuid = packet.ReadGuid().To128(GetSession().GameState); SendPacketToClient(enchant); } + + [PacketHandler(Opcode.SMSG_ENCHANTMENT_LOG)] + void HandleEnchantmentLog(WorldPacket packet) + { + EnchantmentLog enchantment = new EnchantmentLog(); + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V2_0_1_6180)) + { + enchantment.Owner = packet.ReadPackedGuid().To128(GetSession().GameState); + enchantment.Caster = packet.ReadPackedGuid().To128(GetSession().GameState); + } + else + { + enchantment.Owner = packet.ReadGuid().To128(GetSession().GameState); + enchantment.Caster = packet.ReadGuid().To128(GetSession().GameState); + } + enchantment.ItemID = packet.ReadInt32(); + var session = GetSession().GameState; + + for (int i = 0; i < 23; i++) + { + if (session.GetItemId(session.GetInventorySlotItem(i).To128(session)).Equals((uint)enchantment.ItemID)) + { + enchantment.ItemGUID = session.GetInventorySlotItem(i).To128(session); + break; + } + } + if (enchantment.ItemGUID == null) + return; + + enchantment.Enchantment = packet.ReadInt32(); + SendPacketToClient(enchantment); + } } } diff --git a/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs b/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs index bfcec93f..9dca35aa 100644 --- a/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs @@ -466,7 +466,7 @@ void HandleMonsterMove(WorldPacket packet) bool isTaxiFlight = (hasTaxiFlightFlags && (GetSession().GameState.IsWaitingForTaxiStart || - GetSession().GameState.CurrentPlayerCreateTime == packet.GetReceivedTime()) && + Math.Abs(packet.GetReceivedTime() - GetSession().GameState.CurrentPlayerCreateTime) <= 1000) && GetSession().GameState.CurrentPlayerGuid == guid); if (isTaxiFlight) diff --git a/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs b/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs index 73ba491d..135dd433 100644 --- a/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs @@ -382,12 +382,7 @@ void HandleQueryGameObjectResposne(WorldPacket packet) } for (int i = 0; i < 24; i++) - { - if (!packet.CanRead()) - break; - gameObject.Data[i] = packet.ReadInt32(); - } if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) gameObject.Size = packet.ReadFloat(); diff --git a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs index 8b491273..ec0d2c62 100644 --- a/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs @@ -126,6 +126,10 @@ void HandleUnlearnedSpells(WorldPacket packet) [PacketHandler(Opcode.SMSG_CAST_FAILED)] void HandleCastFailed(WorldPacket packet) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.ReadUInt8(); // cast count @@ -190,6 +194,10 @@ void HandleCastFailed(WorldPacket packet) [PacketHandler(Opcode.SMSG_PET_CAST_FAILED, ClientVersionBuild.Zero, ClientVersionBuild.V2_0_1_6180)] void HandlePetCastFailed(WorldPacket packet) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + uint spellId = packet.ReadUInt32(); var status = packet.ReadUInt8(); if (status != 2) @@ -222,6 +230,10 @@ void HandlePetCastFailed(WorldPacket packet) [PacketHandler(Opcode.SMSG_PET_CAST_FAILED, ClientVersionBuild.V2_0_1_6180)] void HandlePetCastFailedTBC(WorldPacket packet) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.ReadUInt8(); // cast count @@ -266,6 +278,13 @@ void HandleSpellFailedOther(WorldPacket packet) else casterUnit = packet.ReadGuid().To128(GetSession().GameState); + if (casterUnit == GetSession().GameState.CurrentPlayerGuid) + { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + } + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.ReadUInt8(); // Cast Count @@ -284,8 +303,8 @@ void HandleSpellFailedOther(WorldPacket packet) spellVisual = GetSession().GameState.CurrentClientNormalCast.SpellXSpellVisualId; } else if (GetSession().GameState.CurrentPetGuid == casterUnit && - GetSession().GameState.CurrentClientPetCast != null && - GetSession().GameState.CurrentClientPetCast.SpellId == spellId) + GetSession().GameState.CurrentClientPetCast != null && + GetSession().GameState.CurrentClientPetCast.SpellId == spellId) { castId = GetSession().GameState.CurrentClientPetCast.ServerGUID; spellVisual = GetSession().GameState.CurrentClientPetCast.SpellXSpellVisualId; @@ -419,6 +438,13 @@ SpellCastData HandleSpellStartOrGo(WorldPacket packet, bool isSpellGo) dbdata.CasterGUID = packet.ReadPackedGuid().To128(GetSession().GameState); dbdata.CasterUnit = packet.ReadPackedGuid().To128(GetSession().GameState); + if (dbdata.CasterUnit == GetSession().GameState.CurrentPlayerGuid) + { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + } + if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.ReadUInt8(); // cast count @@ -593,6 +619,10 @@ SpellCastData HandleSpellStartOrGo(WorldPacket packet, bool isSpellGo) [PacketHandler(Opcode.SMSG_CANCEL_AUTO_REPEAT)] void HandleCancelAutoRepeat(WorldPacket packet) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + if (GetSession().GameState.CurrentClientSpecialCast != null && GameData.AutoRepeatSpells.Contains(GetSession().GameState.CurrentClientSpecialCast.SpellId)) { @@ -998,7 +1028,7 @@ void HandleUpdateAuraDuration(WorldPacket packet) byte slot = packet.ReadUInt8(); int duration = packet.ReadInt32(); WowGuid128 guid = GetSession().GameState.CurrentPlayerGuid; - GetSession().GameState.StoreAuraDurationLeft(guid, slot, duration); + GetSession().GameState.StoreAuraDurationLeft(guid, slot, duration, (int)packet.GetReceivedTime()); if (duration <= 0) return; @@ -1035,7 +1065,7 @@ void HandleSetExtraAuraInfo(WorldPacket packet) int durationLeft = packet.ReadInt32(); GetSession().GameState.StoreAuraDurationFull(guid, slot, durationFull); - GetSession().GameState.StoreAuraDurationLeft(guid, slot, durationLeft); + GetSession().GameState.StoreAuraDurationLeft(guid, slot, durationLeft, (int)packet.GetReceivedTime()); if (packet.GetUniversalOpcode(false) == Opcode.SMSG_SET_EXTRA_AURA_INFO_NEED_UPDATE) GetSession().GameState.StoreAuraCaster(guid, slot, GetSession().GameState.CurrentPlayerGuid); @@ -1078,6 +1108,17 @@ void HandleResurrectRequest(WorldPacket packet) SendPacketToClient(revive); } + [PacketHandler(Opcode.SMSG_TOTEM_CREATED)] + void HandleTotemCreated(WorldPacket packet) + { + TotemCreated totem = new(); + totem.Slot = packet.ReadUInt8(); + totem.Totem = packet.ReadGuid().To128(GetSession().GameState); + totem.Duration = packet.ReadUInt32(); + totem.SpellId = packet.ReadUInt32(); + SendPacketToClient(totem); + } + [PacketHandler(Opcode.SMSG_SET_FLAT_SPELL_MODIFIER)] [PacketHandler(Opcode.SMSG_SET_PCT_SPELL_MODIFIER)] void HandleSetSpellModifier(WorldPacket packet) diff --git a/HermesProxy/World/Client/PacketHandlers/TaxiHandler.cs b/HermesProxy/World/Client/PacketHandlers/TaxiHandler.cs index 14fbd9a8..30fb8e26 100644 --- a/HermesProxy/World/Client/PacketHandlers/TaxiHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/TaxiHandler.cs @@ -36,6 +36,7 @@ void HandleShowTaxiNodes(WorldPacket packet) taxi.CanLandNodes.Add(nodesMask); taxi.CanUseNodes.Add(nodesMask); } + GetSession().GameState.UsableTaxiNodes = taxi.CanUseNodes; // save for CMSG_ACTIVATE_TAXI_EXPRESS SendPacketToClient(taxi); } [PacketHandler(Opcode.SMSG_NEW_TAXI_PATH)] diff --git a/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs b/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs index 1616e3ac..7f19b3bd 100644 --- a/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs +++ b/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs @@ -1,4 +1,6 @@ -using Framework.GameMath; +//#define DEBUG_UPDATES + +using Framework.GameMath; using Framework.Logging; using Framework.Util; using HermesProxy.Enums; @@ -91,6 +93,8 @@ void HandleUpdateObject(WorldPacket packet) { if (!GetSession().GameState.ObjectSpawnCount.ContainsKey(oldGuid)) GetSession().GameState.ObjectSpawnCount.Add(oldGuid, 0); + else if (oldGuid.GetHighType() == HighGuidType.GameObject && GetSession().GameState.DespawnedGameObjects.Contains(oldGuid)) + GetSession().GameState.IncrementObjectSpawnCounter(oldGuid); } var guid = oldGuid.To128(GetSession().GameState); @@ -344,17 +348,18 @@ private string GetIndexString(params object[] values) }); } - private const bool DebugUpdates = false; private void PrintString(string txt, params object[] indexes) { - if (DebugUpdates) - Console.WriteLine("{0}{1}", GetIndexString(indexes), txt); +#if DEBUG_UPDATES + Console.WriteLine("{0}{1}", GetIndexString(indexes), txt); +#endif } private T PrintValue(string name, T obj, params object[] indexes) { - if (DebugUpdates) - Console.WriteLine("{0}{1}: {2}", GetIndexString(indexes), name, obj); +#if DEBUG_UPDATES + Console.WriteLine("{0}{1}: {2}", GetIndexString(indexes), name, obj); +#endif return obj; } @@ -1597,6 +1602,17 @@ public void StoreObjectUpdate(WowGuid128 guid, ObjectType objectType, BitArray u if (UNIT_FIELD_MOUNTDISPLAYID >= 0 && updateMaskArray[UNIT_FIELD_MOUNTDISPLAYID]) { updateData.UnitData.MountDisplayID = updates[UNIT_FIELD_MOUNTDISPLAYID].Int32Value; + + if (!isCreate && guid == GetSession().GameState.CurrentPlayerGuid && + LegacyVersion.RemovedInVersion(ClientVersionBuild.V3_0_2_9056)) + { + MoveSetCollisionHeight height = new(); + height.MoverGUID = guid; + height.Height = updateData.UnitData.MountDisplayID != 0 ? 3.081099f : 2.438083f; + height.MountDisplayID = (uint)updateData.UnitData.MountDisplayID; + height.Reason = 1; // Mount + SendPacketToClient(height); + } } int UNIT_FIELD_MINDAMAGE = LegacyVersion.GetUpdateField(UnitField.UNIT_FIELD_MINDAMAGE); if (UNIT_FIELD_MINDAMAGE >= 0 && updateMaskArray[UNIT_FIELD_MINDAMAGE]) @@ -1691,6 +1707,22 @@ public void StoreObjectUpdate(WowGuid128 guid, ObjectType objectType, BitArray u if (UNIT_CREATED_BY_SPELL >= 0 && updateMaskArray[UNIT_CREATED_BY_SPELL]) { updateData.UnitData.CreatedBySpell = updates[UNIT_CREATED_BY_SPELL].Int32Value; + + if (LegacyVersion.RemovedInVersion(ClientVersionBuild.V2_0_1_6180) && + isCreate && updateData.UnitData.CreatedBy == GetSession().GameState.CurrentPlayerGuid) + { + int totemSlot = GameData.GetTotemSlotForSpell((uint)updateData.UnitData.CreatedBySpell); + if (totemSlot >= 0) + { + TotemCreated totem = new(); + totem.Slot = (byte)totemSlot; + totem.Totem = guid; + totem.Duration = 120000; + totem.SpellId = (uint)updateData.UnitData.CreatedBySpell; + totem.CannotDismiss = true; + SendPacketToClient(totem); + } + } } int UNIT_NPC_FLAGS = LegacyVersion.GetUpdateField(UnitField.UNIT_NPC_FLAGS); if (UNIT_NPC_FLAGS >= 0 && updateMaskArray[UNIT_NPC_FLAGS]) diff --git a/HermesProxy/World/Client/WorldClient.cs b/HermesProxy/World/Client/WorldClient.cs index 7703c5a6..71e52f54 100644 --- a/HermesProxy/World/Client/WorldClient.cs +++ b/HermesProxy/World/Client/WorldClient.cs @@ -185,7 +185,7 @@ private void ReceiveCallback(IAsyncResult AR) } WorldPacket packet = new WorldPacket(buffer); - packet.SetReceiveTime(Time.UnixTime); + packet.SetReceiveTime(Environment.TickCount); HandlePacket(packet); } else @@ -241,7 +241,7 @@ private void SendPacket(WorldPacket packet) header.Opcode = packet.GetOpcode(); header.Write(buffer); - Log.Print(LogType.Debug, $"Sending opcode {Opcodes.GetOpcodeNameForVersion(header.Opcode, Settings.ServerBuild)} ({header.Opcode}) with size {header.Size}."); + Log.Print(LogType.Debug, $"Sending opcode {LegacyVersion.GetUniversalOpcode(header.Opcode)} ({header.Opcode}) with size {header.Size}."); byte[] headerArray = buffer.GetData(); if (_worldCrypt != null) diff --git a/HermesProxy/World/Enums/ItemDefines.cs b/HermesProxy/World/Enums/ItemDefines.cs index e1ececd6..1b2534da 100644 --- a/HermesProxy/World/Enums/ItemDefines.cs +++ b/HermesProxy/World/Enums/ItemDefines.cs @@ -270,6 +270,91 @@ public enum InventoryResultVanilla LootCantLootThatNow, }; + public enum InventoryResultTBC + { + Ok = 0, + CantEquipLevel, + CantEquipSkill, + WrongSlot, + BagFull, + BagInBag, + TradeEquippedBag, + AmmoOnly, + ProficiencyNeeded, + NoSlotAvailable, + CantEquipEver, + CantEquipEver2, + NoSlotAvailable2, + Equipped2handed, + TwoHandSkillNotFound, + WrongBagType, + WrongBagType2, + ItemMaxCount, + NoSlotAvailable3, + CantStack, + NotEquippable, + CantSwap, + SlotEmpty, + ItemNotFound, + DropBoundItem, + OutOfRange, + TooFewToSplit, + SplitFailed, + SpellFailedReagentsGeneric, + NotEnoughMoney, + NotABag, + DestroyNonemptyBag, + NotOwner, + OnlyOneQuiver, + NoBankSlot, + NoBankHere, + ItemLocked, + GenericStunned, + PlayerDead, + ClientLockedOut, + InternalBagError, + OnlyOneBolt, + OnlyOneAmmo, + CantWrapStackable, + CantWrapEquipped, + CantWrapWrapped, + CantWrapBound, + CantWrapUnique, + CantWrapBags, + LootGone, + InvFull, + BankFull, + VendorSoldOut, + BagFull2, + ItemNotFound2, + CantStack2, + BagFull3, + VendorSoldOut2, + ObjectIsBusy, + CantBeDisenchanted, + NotInCombat, + NotWhileDisarmed, + BagFull4, + CantEquipRank, + CantEquipReputation, + TooManySpecialBags, + LootCantLootThatNow, + ItemUniqueEquippable, + VendorMissingTurnins, + NotEnoughHonorPoints, + NotEnoughArenaPoints, + ItemMaxCountSocketed, + MailBoundItem, + InternalBagError2, + BagFull5, + ItemMaxCountEquippedSocketed, + ItemUniqueEquippableSocketed, + TooMuchGold, + NotDuringArenaMatch, + TradeBoundItem, + CantEquipRating, + }; + public enum InventoryResult { Ok = 0, diff --git a/HermesProxy/World/Enums/ObjectType.cs b/HermesProxy/World/Enums/ObjectType.cs index 7f886f81..adc1c755 100644 --- a/HermesProxy/World/Enums/ObjectType.cs +++ b/HermesProxy/World/Enums/ObjectType.cs @@ -147,6 +147,7 @@ public enum HighGuidTypeLegacy Corpse = 0xF101, // blizz F100 MOTransport = 0x1FC0, // blizz 1FC0 (for GAMEOBJECT_TYPE_MO_TRANSPORT) Group = 0x1F50, // blizz 1F5x + Group2 = 0x5000, // for outdated tbc cores } public enum HighGuidType703 diff --git a/HermesProxy/World/Enums/Opcodes.cs b/HermesProxy/World/Enums/Opcodes.cs index 0aaec850..12e9cbb8 100644 --- a/HermesProxy/World/Enums/Opcodes.cs +++ b/HermesProxy/World/Enums/Opcodes.cs @@ -44,52 +44,41 @@ public static ClientVersionBuild GetOpcodesDefiningBuild(ClientVersionBuild vers } return ClientVersionBuild.Zero; } - public static uint GetOpcodeValueForVersion(Opcode opcode, ClientVersionBuild version) + + public static Type GetOpcodesEnumForVersion(ClientVersionBuild version) { switch (GetOpcodesDefiningBuild(version)) { case ClientVersionBuild.V1_12_1_5875: - return FindOpcodeValueInEnum(opcode.ToString()); + return typeof(V1_12_1_5875.Opcode); case ClientVersionBuild.V2_4_3_8606: - return FindOpcodeValueInEnum(opcode.ToString()); + return typeof(V2_4_3_8606.Opcode); case ClientVersionBuild.V3_3_5a_12340: - return FindOpcodeValueInEnum(opcode.ToString()); + return typeof(V3_3_5_12340.Opcode); case ClientVersionBuild.V2_5_2_39570: - return FindOpcodeValueInEnum(opcode.ToString()); + return typeof(V2_5_2_39570.Opcode); } - return 0; + return null; } - public static uint GetOpcodeValueForVersion(string opcode, ClientVersionBuild version) + public static uint GetOpcodeValueForVersion(Opcode opcode, ClientVersionBuild version) { - switch (GetOpcodesDefiningBuild(version)) - { - case ClientVersionBuild.V1_12_1_5875: - return FindOpcodeValueInEnum(opcode); - case ClientVersionBuild.V2_4_3_8606: - return FindOpcodeValueInEnum(opcode); - case ClientVersionBuild.V3_3_5a_12340: - return FindOpcodeValueInEnum(opcode); - case ClientVersionBuild.V2_5_2_39570: - return FindOpcodeValueInEnum(opcode); - } + return GetOpcodeValueForVersion(opcode.ToString(), version); + } + + public static uint GetOpcodeValueForVersion(string opcodeName, ClientVersionBuild version) + { + object opcode; + if (Enum.TryParse(GetOpcodesEnumForVersion(version), opcodeName, out opcode)) + return (uint)opcode; + return 0; } public static string GetOpcodeNameForVersion(uint opcode, ClientVersionBuild version) { - switch (GetOpcodesDefiningBuild(version)) - { - case ClientVersionBuild.V1_12_1_5875: - return FindOpcodeNameInEnum(opcode); - case ClientVersionBuild.V2_4_3_8606: - return FindOpcodeNameInEnum(opcode); - case ClientVersionBuild.V3_3_5a_12340: - return FindOpcodeNameInEnum(opcode); - case ClientVersionBuild.V2_5_2_39570: - return FindOpcodeNameInEnum(opcode); - } - return "UNKNOWN"; + Type enumType = GetOpcodesEnumForVersion(version); + return Enum.ToObject(enumType, opcode).ToString(); } public static Opcode GetUniversalOpcode(uint opcode, ClientVersionBuild version) @@ -100,11 +89,10 @@ public static Opcode GetUniversalOpcode(uint opcode, ClientVersionBuild version) public static Opcode GetUniversalOpcode(string name) { - foreach (var item in Enum.GetValues(typeof(Opcode))) - { - if (Enum.GetName(typeof(Opcode), item) == name) - return (Opcode)item; - } + object opcode; + if (Enum.TryParse(typeof(Opcode), name, out opcode)) + return (Opcode)opcode; + return Opcode.MSG_NULL_ACTION; } @@ -129,7 +117,7 @@ private static string FindOpcodeNameInEnum(uint value) where T : System.Enum } } - public enum Opcode + public enum Opcode : uint { /* Generic opcode enumeration * Every opcode _name_ should be here (any version) @@ -3235,6 +3223,7 @@ public enum Opcode SMSG_UNKNOWN_8, SMSG_UNLEARNED_SPELLS, SMSG_UNLOAD_CHILD_MAP, + SMSG_UPDATE_AADC_STATUS_RESPONSE, SMSG_UPDATE_ACCOUNT_DATA, SMSG_UPDATE_ACCOUNT_DATA_COMPLETE, SMSG_UPDATE_ACTION_BUTTONS, diff --git a/HermesProxy/World/Enums/PlayerDefines.cs b/HermesProxy/World/Enums/PlayerDefines.cs index 036d059d..878e7895 100644 --- a/HermesProxy/World/Enums/PlayerDefines.cs +++ b/HermesProxy/World/Enums/PlayerDefines.cs @@ -140,7 +140,16 @@ public enum RestState Normal = 0x02, }; - public enum ChatFlags + public enum ChatTag // vanilla only + { + None = 0x00, + AFK = 0x01, + DND = 0x02, + GM = 0x03, + } + + [Flags] + public enum ChatFlags // tbc+ { None = 0x00, AFK = 0x01, diff --git a/HermesProxy/World/Enums/V2_5_2_39570/Opcode.cs b/HermesProxy/World/Enums/V2_5_2_39570/Opcode.cs index c33d9c94..83e6acc8 100644 --- a/HermesProxy/World/Enums/V2_5_2_39570/Opcode.cs +++ b/HermesProxy/World/Enums/V2_5_2_39570/Opcode.cs @@ -48,7 +48,7 @@ public enum Opcode : uint CMSG_AUCTION_REMOVE_ITEM = 0x34CC, CMSG_AUCTION_REPLICATE_ITEMS = 0x34CE, CMSG_AUCTION_SELL_ITEM = 0x34CB, - CMSG_AUCTION_SET_FAVORITE_ITEM = 0x3738, + CMSG_AUCTION_SET_FAVORITE_ITEM = 0x3739, CMSG_AUTH_CONTINUED_SESSION = 0x3766, CMSG_AUTH_SESSION = 0x3765, CMSG_AUTOBANK_ITEM = 0x3997, @@ -70,13 +70,13 @@ public enum Opcode : uint CMSG_BATTLENET_CHALLENGE_RESPONSE = 0x36D8, CMSG_BATTLENET_REQUEST = 0x36FA, CMSG_BATTLE_PAY_ACK_FAILED_RESPONSE = 0x36D2, - CMSG_BATTLE_PAY_CANCEL_OPEN_CHECKOUT = 0x3717, + CMSG_BATTLE_PAY_CANCEL_OPEN_CHECKOUT = 0x3718, CMSG_BATTLE_PAY_CONFIRM_PURCHASE_RESPONSE = 0x36D1, CMSG_BATTLE_PAY_DISTRIBUTION_ASSIGN_TO_TARGET = 0x36C8, CMSG_BATTLE_PAY_GET_PRODUCT_LIST = 0x36C1, CMSG_BATTLE_PAY_GET_PURCHASE_LIST = 0x36C2, - CMSG_BATTLE_PAY_OPEN_CHECKOUT = 0x3712, - CMSG_BATTLE_PAY_REQUEST_PRICE_INFO = 0x370E, + CMSG_BATTLE_PAY_OPEN_CHECKOUT = 0x3711, + CMSG_BATTLE_PAY_REQUEST_PRICE_INFO = 0x370D, CMSG_BATTLE_PAY_START_PURCHASE = 0x36D0, CMSG_BATTLE_PAY_START_VAS_PURCHASE = 0x36F7, CMSG_BATTLE_PET_CLEAR_FANFARE = 0x312C, @@ -128,11 +128,11 @@ public enum Opcode : uint CMSG_CANCEL_TEMP_ENCHANTMENT = 0x34F2, CMSG_CANCEL_TRADE = 0x315C, CMSG_CAN_DUEL = 0x3664, - CMSG_CAN_REDEEM_TOKEN_FOR_BALANCE = 0x370D, + CMSG_CAN_REDEEM_TOKEN_FOR_BALANCE = 0x370C, CMSG_CAST_SPELL = 0x3294, CMSG_CHANGE_BAG_SLOT_FLAG = 0x32C0, CMSG_CHANGE_BANK_BAG_SLOT_FLAG = 0x32C1, - CMSG_CHANGE_REALM_TICKET = 0x3700, + CMSG_CHANGE_REALM_TICKET = 0x36FE, CMSG_CHARACTER_CHECK_UPGRADE = 0x36CB, CMSG_CHARACTER_RENAME_REQUEST = 0x36C6, CMSG_CHARACTER_UPGRADE_MANUAL_UNREVOKE_REQUEST = 0x36C9, @@ -184,16 +184,16 @@ public enum Opcode : uint CMSG_CLIENT_PORT_GRAVEYARD = 0x3526, CMSG_CLOSE_INTERACTION = 0x3493, CMSG_CLOSE_QUEST_CHOICE = 0x329A, - CMSG_CLUB_FINDER_APPLICATION_RESPONSE = 0x3722, - CMSG_CLUB_FINDER_GET_APPLICANTS_LIST = 0x3720, - CMSG_CLUB_FINDER_POST = 0x371D, - CMSG_CLUB_FINDER_REQUEST_CLUBS_DATA = 0x3724, - CMSG_CLUB_FINDER_REQUEST_CLUBS_LIST = 0x371E, - CMSG_CLUB_FINDER_REQUEST_MEMBERSHIP_TO_CLUB = 0x371F, - CMSG_CLUB_FINDER_REQUEST_PENDING_CLUBS_LIST = 0x3723, - CMSG_CLUB_FINDER_REQUEST_SUBSCRIBED_CLUB_POSTING_IDS = 0x3725, - CMSG_CLUB_FINDER_RESPOND_TO_APPLICANT = 0x3721, - CMSG_CLUB_PRESENCE_SUBSCRIBE = 0x36FE, + CMSG_CLUB_FINDER_APPLICATION_RESPONSE = 0x3723, + CMSG_CLUB_FINDER_GET_APPLICANTS_LIST = 0x3721, + CMSG_CLUB_FINDER_POST = 0x371E, + CMSG_CLUB_FINDER_REQUEST_CLUBS_DATA = 0x3725, + CMSG_CLUB_FINDER_REQUEST_CLUBS_LIST = 0x371F, + CMSG_CLUB_FINDER_REQUEST_MEMBERSHIP_TO_CLUB = 0x3720, + CMSG_CLUB_FINDER_REQUEST_PENDING_CLUBS_LIST = 0x3724, + CMSG_CLUB_FINDER_REQUEST_SUBSCRIBED_CLUB_POSTING_IDS = 0x3726, + CMSG_CLUB_FINDER_RESPOND_TO_APPLICANT = 0x3722, + CMSG_CLUB_PRESENCE_SUBSCRIBE = 0x36FC, CMSG_COLLECTION_ITEM_SET_FAVORITE = 0x3634, CMSG_COMMENTATOR_ENABLE = 0x35F1, CMSG_COMMENTATOR_ENTER_INSTANCE = 0x35F5, @@ -241,7 +241,7 @@ public enum Opcode : uint CMSG_DF_TELEPORT = 0x3618, CMSG_DISCARDED_TIME_SYNC_ACKS = 0x3A3D, CMSG_DISMISS_CRITTER = 0x34F9, - CMSG_DO_COUNTDOWN = 0x371C, + CMSG_DO_COUNTDOWN = 0x371D, CMSG_DO_READY_CHECK = 0x3635, CMSG_DUEL_RESPONSE = 0x34E2, CMSG_EJECT_PASSENGER = 0x3237, @@ -261,7 +261,7 @@ public enum Opcode : uint CMSG_GET_ITEM_PURCHASE_DATA = 0x352E, CMSG_GET_MIRROR_IMAGE_DATA = 0x328F, CMSG_GET_PVP_OPTIONS_ENABLED = 0x35EF, - CMSG_GET_RAF_ACCOUNT_INFO = 0x3726, + CMSG_GET_RAF_ACCOUNT_INFO = 0x3727, CMSG_GET_REMAINING_GAME_TIME = 0x36F0, CMSG_GET_UNDELETE_CHARACTER_COOLDOWN_STATUS = 0x36E4, CMSG_GET_VAS_ACCOUNT_CHARACTER_LIST = 0x36F5, @@ -518,23 +518,22 @@ public enum Opcode : uint CMSG_QUEST_LOG_REMOVE_QUEST = 0x352D, CMSG_QUEST_POI_QUERY = 0x36AD, CMSG_QUEST_PUSH_RESULT = 0x34A0, - CMSG_QUEST_SESSION_REQUEST_STOP = 0x3731, + CMSG_QUEST_SESSION_REQUEST_STOP = 0x3732, CMSG_QUEUED_MESSAGES_END = 0x376C, - CMSG_QUICK_JOIN_AUTO_ACCEPT_REQUESTS = 0x370C, - CMSG_QUICK_JOIN_REQUEST_INVITE = 0x370B, - CMSG_QUICK_JOIN_REQUEST_INVITE_WITH_CONFIRMATION = 0x3736, + CMSG_QUICK_JOIN_AUTO_ACCEPT_REQUESTS = 0x370B, + CMSG_QUICK_JOIN_REQUEST_INVITE_WITH_CONFIRMATION = 0x3737, CMSG_QUICK_JOIN_RESPOND_TO_INVITE = 0x370A, CMSG_QUICK_JOIN_SIGNAL_TOAST_DISPLAYED = 0x3709, CMSG_RAF_CLAIM_ACTIVITY_REWARD = 0x3504, - CMSG_RAF_CLAIM_NEXT_REWARD = 0x3727, - CMSG_RAF_GENERATE_RECRUITMENT_LINK = 0x3729, - CMSG_RAF_UPDATE_RECRUITMENT_INFO = 0x3728, + CMSG_RAF_CLAIM_NEXT_REWARD = 0x3728, + CMSG_RAF_GENERATE_RECRUITMENT_LINK = 0x372A, + CMSG_RAF_UPDATE_RECRUITMENT_INFO = 0x3729, CMSG_RANDOM_ROLL = 0x3657, CMSG_READY_CHECK_RESPONSE = 0x3636, CMSG_READ_ITEM = 0x32BF, CMSG_RECLAIM_CORPSE = 0x34DB, CMSG_REMOVE_NEW_ITEM = 0x32D7, - CMSG_REMOVE_RAF_RECRUIT = 0x372A, + CMSG_REMOVE_RAF_RECRUIT = 0x372B, CMSG_REORDER_CHARACTERS = 0x35EA, CMSG_REPAIR_ITEM = 0x34EC, CMSG_REPOP_REQUEST = 0x3525, @@ -688,13 +687,13 @@ public enum Opcode : uint CMSG_USE_EQUIPMENT_SET = 0x3995, CMSG_USE_ITEM = 0x3290, CMSG_USE_TOY = 0x3292, - CMSG_VAS_CHECK_TRANSFER_OK = 0x3711, - CMSG_VAS_GET_QUEUE_MINUTES = 0x3710, - CMSG_VAS_GET_SERVICE_STATUS = 0x370F, + CMSG_VAS_CHECK_TRANSFER_OK = 0x3710, + CMSG_VAS_GET_QUEUE_MINUTES = 0x370F, + CMSG_VAS_GET_SERVICE_STATUS = 0x370E, CMSG_VIOLENCE_LEVEL = 0x3188, - CMSG_VOICE_CHANNEL_STT_TOKEN_REQUEST = 0x3715, - CMSG_VOICE_CHAT_JOIN_CHANNEL = 0x3716, - CMSG_VOICE_CHAT_LOGIN = 0x3714, + CMSG_VOICE_CHANNEL_STT_TOKEN_REQUEST = 0x3714, + CMSG_VOICE_CHAT_JOIN_CHANNEL = 0x3715, + CMSG_VOICE_CHAT_LOGIN = 0x3713, CMSG_VOID_STORAGE_TRANSFER = 0x31A5, CMSG_WARDEN3_DATA = 0x35ED, CMSG_WHO = 0x3683, diff --git a/HermesProxy/World/GameData.cs b/HermesProxy/World/GameData.cs index 31e73d76..258547fc 100644 --- a/HermesProxy/World/GameData.cs +++ b/HermesProxy/World/GameData.cs @@ -22,6 +22,7 @@ public static class GameData public static Dictionary ItemEnchantVisuals = new Dictionary(); public static Dictionary SpellVisuals = new Dictionary(); public static Dictionary LearnSpells = new Dictionary(); + public static Dictionary TotemSpells = new Dictionary(); public static Dictionary Gems = new Dictionary(); public static Dictionary UnitDisplayScales = new Dictionary(); public static Dictionary TransportPeriods = new Dictionary(); @@ -30,6 +31,8 @@ public static class GameData public static HashSet MountAuras = new HashSet(); public static HashSet NextMeleeSpells = new HashSet(); public static HashSet AutoRepeatSpells = new HashSet(); + public static Dictionary TaxiPaths = new Dictionary(); + public static int[,] TaxiNodesGraph = new int[250,250]; // From Server public static Dictionary ItemTemplates = new Dictionary(); @@ -180,6 +183,14 @@ public static uint GetSpellVisual(uint spellId) return 0; } + public static int GetTotemSlotForSpell(uint spellId) + { + uint slot; + if (TotemSpells.TryGetValue(spellId, out slot)) + return (int)slot; + return -1; + } + public static uint GetRealSpell(uint learnSpellId) { uint realSpellId; @@ -299,6 +310,7 @@ public static void LoadEverything() LoadItemEnchantVisuals(); LoadSpellVisuals(); LoadLearnSpells(); + LoadTotemSpells(); LoadGems(); LoadUnitDisplayScales(); LoadTransports(); @@ -307,6 +319,8 @@ public static void LoadEverything() LoadMountAuras(); LoadMeleeSpells(); LoadAutoRepeatSpells(); + LoadTaxiPaths(); + LoadTaxiPathNodesGraph(); LoadHotfixes(); Log.Print(LogType.Storage, "Finished loading data."); } @@ -475,6 +489,33 @@ public static void LoadLearnSpells() } } + public static void LoadTotemSpells() + { + if (LegacyVersion.GetExpansionVersion() > 1) + return; + + var path = Path.Combine("CSV", $"TotemSpells.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + uint spellId = UInt32.Parse(fields[0]); + uint totemSlot = UInt32.Parse(fields[1]); + TotemSpells.Add(spellId, totemSlot); + } + } + } + public static void LoadGems() { if (ModernVersion.GetExpansionVersion() <= 1) @@ -676,6 +717,156 @@ public static void LoadAutoRepeatSpells() } } } + public static void LoadTaxiPaths() + { + var path = Path.Combine("CSV", $"TaxiPath{ModernVersion.GetExpansionVersion()}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(path)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = true; + + // Skip the row with the column names + csvParser.ReadLine(); + + uint counter = 0; + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + TaxiPath taxiPath = new TaxiPath(); + taxiPath.Id = UInt32.Parse(fields[0]); + taxiPath.From = UInt32.Parse(fields[1]); + taxiPath.To = UInt32.Parse(fields[2]); + taxiPath.Cost = Int32.Parse(fields[3]); + TaxiPaths.Add(counter, taxiPath); + counter++; + } + } + } + public static void LoadTaxiPathNodesGraph() + { + // Load TaxiNodes (used in calculating first and last parts of path) + Dictionary TaxiNodes = new Dictionary(); + var pathNodes = Path.Combine("CSV", $"TaxiNodes{ModernVersion.GetExpansionVersion()}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(pathNodes)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = false; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + TaxiNode taxiNode = new TaxiNode(); + taxiNode.Id = UInt32.Parse(fields[0]); + taxiNode.mapId = UInt32.Parse(fields[1]); + taxiNode.x = float.Parse(fields[2]); + taxiNode.y = float.Parse(fields[3]); + taxiNode.z = float.Parse(fields[4]); + TaxiNodes.Add(taxiNode.Id, taxiNode); + } + } + // Load TaxiPathNode (used in calculating rest of path) + Dictionary TaxiPathNodes = new Dictionary(); + var pathPathNodes = Path.Combine("CSV", $"TaxiPathNode{ModernVersion.GetExpansionVersion()}.csv"); + using (TextFieldParser csvParser = new TextFieldParser(pathPathNodes)) + { + csvParser.CommentTokens = new string[] { "#" }; + csvParser.SetDelimiters(new string[] { "," }); + csvParser.HasFieldsEnclosedInQuotes = true; + + // Skip the row with the column names + csvParser.ReadLine(); + + while (!csvParser.EndOfData) + { + // Read current line fields, pointer moves to the next line. + string[] fields = csvParser.ReadFields(); + + TaxiPathNode taxiPathNode = new TaxiPathNode(); + taxiPathNode.Id = UInt32.Parse(fields[0]); + taxiPathNode.pathId = UInt32.Parse(fields[1]); + taxiPathNode.nodeIndex = UInt32.Parse(fields[2]); + taxiPathNode.mapId = UInt32.Parse(fields[3]); + taxiPathNode.x = float.Parse(fields[4]); + taxiPathNode.y = float.Parse(fields[5]); + taxiPathNode.z = float.Parse(fields[6]); + taxiPathNode.flags = UInt32.Parse(fields[7]); + taxiPathNode.delay = UInt32.Parse(fields[8]); + TaxiPathNodes.Add(taxiPathNode.Id, taxiPathNode); + } + } + // calculate distances between nodes + for (uint i = 0; i < TaxiPaths.Count; i++) + { + if (TaxiPaths.ContainsKey(i)) + { + float dist = 0.0f; + TaxiPath taxiPath = TaxiPaths[i]; + TaxiNode nodeFrom = TaxiNodes[TaxiPaths[i].From]; + TaxiNode nodeTo = TaxiNodes[TaxiPaths[i].To]; + + if (nodeFrom.x == 0 && nodeFrom.x == 0 && nodeFrom.z == 0) + continue; + if (nodeTo.x == 0 && nodeTo.x == 0 && nodeTo.z == 0) + continue; + + // save all node ids of this path + HashSet pathNodeList = new HashSet(); + foreach (var itr in TaxiPathNodes) + { + TaxiPathNode pNode = itr.Value; + if (pNode.pathId != taxiPath.Id) + continue; + pathNodeList.Add(pNode.Id); + } + // sort ids by node index + IEnumerable query = pathNodeList.OrderBy(node => TaxiPathNodes[node].nodeIndex); + uint curNode = 0; + foreach (var itr in query) + { + TaxiPathNode pNode = TaxiPathNodes[itr]; + // calculate distance from start node + if (pNode.nodeIndex == 0) + { + dist += (float)Math.Sqrt(Math.Pow(nodeFrom.x - pNode.x, 2) + Math.Pow(nodeFrom.y - pNode.y, 2)); + continue; + } + // set previous node + if (curNode == 0) + { + curNode = pNode.Id; + continue; + } + // calculate distance to previous node + if (curNode != 0) + { + TaxiPathNode prevNode = TaxiPathNodes[curNode]; + curNode = pNode.Id; + if (prevNode.mapId != pNode.mapId) + continue; + + dist += (float)Math.Sqrt(Math.Pow(prevNode.x - pNode.x, 2) + Math.Pow(prevNode.y - pNode.y, 2)); + } + } + // calculate distance to last node + if (curNode != 0) // should not happen + { + TaxiPathNode lastNode = TaxiPathNodes[curNode]; + dist += (float)Math.Sqrt(Math.Pow(nodeTo.x - lastNode.x, 2) + Math.Pow(nodeTo.y - lastNode.y, 2)); + } + TaxiNodesGraph[TaxiPaths[i].From, TaxiPaths[i].To] = dist > 0 ? (int)dist : 0; + } + } + } #endregion #region HotFixes // Stores @@ -1855,6 +2046,29 @@ public class Battleground public bool IsArena; public List MapIds = new List(); } + public class TaxiPath + { + public uint Id; + public uint From; + public uint To; + public int Cost; + } + public class TaxiNode + { + public uint Id; + public uint mapId; + public float x, y, z; + } + public class TaxiPathNode + { + public uint Id; + public uint pathId; + public uint nodeIndex; + public uint mapId; + public float x, y, z; + public uint flags; + public uint delay; + } // Hotfix structures public class AreaTrigger { diff --git a/HermesProxy/World/HighGuid.cs b/HermesProxy/World/HighGuid.cs index f507361c..31f175c1 100644 --- a/HermesProxy/World/HighGuid.cs +++ b/HermesProxy/World/HighGuid.cs @@ -24,6 +24,7 @@ static readonly Dictionary HighLegacyToHighTyp { HighGuidTypeLegacy.None, HighGuidType.Null }, { HighGuidTypeLegacy.Player, HighGuidType.Player }, { HighGuidTypeLegacy.Group, HighGuidType.RaidGroup }, + { HighGuidTypeLegacy.Group2, HighGuidType.RaidGroup }, { HighGuidTypeLegacy.MOTransport, HighGuidType.MOTransport }, // ?? unused in wpp { HighGuidTypeLegacy.Item, HighGuidType.Item }, { HighGuidTypeLegacy.DynamicObject, HighGuidType.DynamicObject }, diff --git a/HermesProxy/World/Packet.cs b/HermesProxy/World/Packet.cs index 972bb86c..b16e4130 100644 --- a/HermesProxy/World/Packet.cs +++ b/HermesProxy/World/Packet.cs @@ -42,11 +42,14 @@ public void Dispose() public uint GetOpcode() { return _worldPacket.GetOpcode(); } public Opcode GetUniversalOpcode() { - return Opcodes.GetUniversalOpcode(GetOpcode(), Framework.Settings.ClientBuild); + return ModernVersion.GetUniversalOpcode(GetOpcode()); } public void LogPacket(ref SniffFile sniffFile) { + if (!Framework.Settings.PacketsLog) + return; + if (sniffFile == null) { sniffFile = new SniffFile("modern", (ushort)Framework.Settings.ClientBuild); @@ -64,7 +67,7 @@ protected ServerPacket(Opcode universalOpcode) { connectionType = ConnectionType.Realm; - uint opcode = Opcodes.GetOpcodeValueForVersion(universalOpcode, Framework.Settings.ClientBuild); + uint opcode = ModernVersion.GetCurrentOpcode(universalOpcode); System.Diagnostics.Trace.Assert(opcode != 0); _worldPacket = new WorldPacket(opcode); } @@ -73,7 +76,7 @@ protected ServerPacket(Opcode universalOpcode, ConnectionType type = ConnectionT { connectionType = type; - uint opcode = Opcodes.GetOpcodeValueForVersion(universalOpcode, Framework.Settings.ClientBuild); + uint opcode = ModernVersion.GetCurrentOpcode(universalOpcode); System.Diagnostics.Trace.Assert(opcode != 0); _worldPacket = new WorldPacket(opcode); } @@ -90,7 +93,7 @@ public uint GetOpcode() } public Opcode GetUniversalOpcode() { - return Opcodes.GetUniversalOpcode(GetOpcode(), Framework.Settings.ClientBuild); + return ModernVersion.GetUniversalOpcode(GetOpcode()); } public byte[] GetData() @@ -100,6 +103,9 @@ public byte[] GetData() public void LogPacket(ref SniffFile sniffFile) { + if (!Framework.Settings.PacketsLog) + return; + if (sniffFile == null) { sniffFile = new SniffFile("modern", (ushort)Framework.Settings.ClientBuild); @@ -137,7 +143,7 @@ public WorldPacket(uint opcode = 0) public WorldPacket(Opcode opcode) { - this.opcode = Opcodes.GetOpcodeValueForVersion(opcode, Framework.Settings.ServerBuild); + this.opcode = LegacyVersion.GetCurrentOpcode(opcode); System.Diagnostics.Trace.Assert(this.opcode != 0); } @@ -299,7 +305,10 @@ public void WriteBytes(WorldPacket data) public uint GetOpcode() { return opcode; } public Opcode GetUniversalOpcode(bool isModern) { - return Opcodes.GetUniversalOpcode(GetOpcode(), isModern ? Framework.Settings.ClientBuild : Framework.Settings.ServerBuild); + if (isModern) + return ModernVersion.GetUniversalOpcode(GetOpcode()); + else + return LegacyVersion.GetUniversalOpcode(GetOpcode()); } public long GetReceivedTime() { return m_receivedTime; } diff --git a/HermesProxy/World/Server/AccountDataManager.cs b/HermesProxy/World/Server/AccountDataManager.cs index 6b6cda85..9084abab 100644 --- a/HermesProxy/World/Server/AccountDataManager.cs +++ b/HermesProxy/World/Server/AccountDataManager.cs @@ -44,8 +44,7 @@ public static bool IsGlobalDataType(uint type) public string GetAccountDataDirectory() { - string path = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location); - path = Path.Combine(path, "AccountData"); + string path = "AccountData"; path = Path.Combine(path, _accountName); path = Path.Combine(path, _realmName); diff --git a/HermesProxy/World/Server/PacketHandlers/CharacterHandler.cs b/HermesProxy/World/Server/PacketHandlers/CharacterHandler.cs index 1c1aacc7..fe051c5e 100644 --- a/HermesProxy/World/Server/PacketHandlers/CharacterHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/CharacterHandler.cs @@ -17,6 +17,44 @@ void HandleEnumCharacters(EnumCharacters charEnum) SendPacketToServer(packet); } + [PacketHandler(Opcode.CMSG_GET_ACCOUNT_CHARACTER_LIST)] + void HandleGetAccountCharacterList(GetAccountCharacterListRequest request) + { + GetAccountCharacterListResult response = new(); + response.Token = request.Token; + + foreach (var ownCharacter in GetSession().GameState.OwnCharacters) + { + response.CharacterList.Add(new AccountCharacterListEntry + { + AccountId = WowGuid128.Create(HighGuidType703.WowAccount, GetSession().GameAccountInfo.Id), + CharacterGuid = ownCharacter.Guid, + RealmVirtualAddress = GetSession().RealmId.GetAddress(), + RealmName = "", // If empty the realm name will not be displayed + LastLoginUnixSec = ownCharacter.LastPlayedTime, + + Name = ownCharacter.Name, + Race = ownCharacter.RaceId, + Class = ownCharacter.ClassId, + Sex = ownCharacter.SexId, + Level = ownCharacter.ExperienceLevel, + }); + } + + SendPacket(response); + } + + [PacketHandler(Opcode.CMSG_GENERATE_RANDOM_CHARACTER_NAME)] + void HandleGenerateRandomCharacterNameRequest(GenerateRandomCharacterNameRequest randomCharacterName) + { + GenerateRandomCharacterNameResult result = new(); + + // The client can generate the name itself + result.Success = false; + + SendPacket(result); + } + [PacketHandler(Opcode.CMSG_CREATE_CHARACTER)] void HandleCreateCharacter(CreateCharacter charCreate) { @@ -182,5 +220,14 @@ void HandleInspectArenaTeams(Inspect inspect) SendPacket(pvp); } } + + [PacketHandler(Opcode.CMSG_CHARACTER_RENAME_REQUEST)] + void HandleCharacterRenameRequest(CharacterRenameRequest rename) + { + WorldPacket packet = new WorldPacket(Opcode.CMSG_CHARACTER_RENAME_REQUEST); + packet.WriteGuid(rename.Guid.To64()); + packet.WriteCString(rename.NewName); + SendPacketToServer(packet); + } } } diff --git a/HermesProxy/World/Server/PacketHandlers/ItemHandler.cs b/HermesProxy/World/Server/PacketHandlers/ItemHandler.cs index abdae82d..47546dd2 100644 --- a/HermesProxy/World/Server/PacketHandlers/ItemHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/ItemHandler.cs @@ -186,5 +186,30 @@ void HandleSetAmmo(SetAmmo ammo) packet.WriteUInt32(ammo.ItemId); SendPacketToServer(packet); } + + [PacketHandler(Opcode.CMSG_CANCEL_TEMP_ENCHANTMENT)] + void HandleCancelTempEnchantment(CancelTempEnchantment cancel) + { + if (LegacyVersion.RemovedInVersion(ClientVersionBuild.V2_0_1_6180)) + return; + WorldPacket packet = new WorldPacket(Opcode.CMSG_CANCEL_TEMP_ENCHANTMENT); + packet.WriteUInt32(cancel.EnchantmentSlot); + SendPacketToServer(packet); + } + + [PacketHandler(Opcode.CMSG_WRAP_ITEM)] + void HandleWrapItem(WrapItem item) + { + WorldPacket packet = new WorldPacket(Opcode.CMSG_WRAP_ITEM); + byte giftBag = item.GiftBag != Enums.Classic.InventorySlots.Bag0 ? ModernVersion.AdjustInventorySlot(item.GiftBag) : item.GiftBag; + byte giftSlot = item.GiftBag == Enums.Classic.InventorySlots.Bag0 ? ModernVersion.AdjustInventorySlot(item.GiftSlot) : item.GiftSlot; + byte itemBag = item.ItemBag != Enums.Classic.InventorySlots.Bag0 ? ModernVersion.AdjustInventorySlot(item.ItemBag) : item.ItemBag; + byte itemSlot = item.ItemBag == Enums.Classic.InventorySlots.Bag0 ? ModernVersion.AdjustInventorySlot(item.ItemSlot) : item.ItemSlot; + packet.WriteUInt8(giftBag); + packet.WriteUInt8(giftSlot); + packet.WriteUInt8(itemBag); + packet.WriteUInt8(itemSlot); + SendPacketToServer(packet); + } } } diff --git a/HermesProxy/World/Server/PacketHandlers/MailHandler.cs b/HermesProxy/World/Server/PacketHandlers/MailHandler.cs index 825a4a10..23040449 100644 --- a/HermesProxy/World/Server/PacketHandlers/MailHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/MailHandler.cs @@ -140,6 +140,7 @@ void HandleSendMail(SendMail mail) List attachments = new List(); attachments.Add(item); BuildSendMail(mail, attachments); + System.Threading.Thread.Sleep(500); // prevent triggering antiflood on server } } } diff --git a/HermesProxy/World/Server/PacketHandlers/MovementHandler.cs b/HermesProxy/World/Server/PacketHandlers/MovementHandler.cs index 984e5733..5da559e6 100644 --- a/HermesProxy/World/Server/PacketHandlers/MovementHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/MovementHandler.cs @@ -157,6 +157,14 @@ void HandleMoveSetActiveMover(SetActiveMover move) SendPacketToServer(packet); } + [PacketHandler(Opcode.CMSG_MOVE_INIT_ACTIVE_MOVER_COMPLETE)] + void HandleMoveInitActiveMoverComplete(InitActiveMoverComplete move) + { + WorldPacket packet = new WorldPacket(Opcode.CMSG_SET_ACTIVE_MOVER); + packet.WriteGuid(GetSession().GameState.CurrentPlayerGuid.To64()); + SendPacketToServer(packet); + } + [PacketHandler(Opcode.CMSG_MOVE_SPLINE_DONE)] void HandleMoveSplineDone(MoveSplineDone movement) { diff --git a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs index 6f570a30..9a9d7647 100644 --- a/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs @@ -104,11 +104,15 @@ public void SendCastRequestFailed(ClientCastRequest castRequest, bool isPet) [PacketHandler(Opcode.CMSG_CAST_SPELL)] void HandleCastSpell(CastSpell cast) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + if (GameData.NextMeleeSpells.Contains(cast.Cast.SpellID) || GameData.AutoRepeatSpells.Contains(cast.Cast.SpellID)) { ClientCastRequest castRequest = new ClientCastRequest(); - castRequest.Timestamp = Time.UnixTime; + castRequest.Timestamp = Environment.TickCount; castRequest.SpellId = cast.Cast.SpellID; castRequest.SpellXSpellVisualId = cast.Cast.SpellXSpellVisualID; castRequest.ClientGUID = cast.Cast.CastID; @@ -134,7 +138,7 @@ void HandleCastSpell(CastSpell cast) else { ClientCastRequest castRequest = new ClientCastRequest(); - castRequest.Timestamp = Time.UnixTime; + castRequest.Timestamp = Environment.TickCount; castRequest.SpellId = cast.Cast.SpellID; castRequest.SpellXSpellVisualId = cast.Cast.SpellXSpellVisualID; castRequest.ClientGUID = cast.Cast.CastID; @@ -148,8 +152,9 @@ void HandleCastSpell(CastSpell cast) } else { - if (GetSession().GameState.CurrentClientNormalCast.Timestamp + 10 < castRequest.Timestamp) + if (GetSession().GameState.CurrentClientNormalCast.Timestamp + 10000 < castRequest.Timestamp) { + System.Console.WriteLine("VERY DELAYED SPEEEEL"); SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCast, false); GetSession().GameState.CurrentClientNormalCast = null; foreach (var pending in GetSession().GameState.PendingClientCasts) @@ -190,8 +195,12 @@ void HandleCastSpell(CastSpell cast) [PacketHandler(Opcode.CMSG_PET_CAST_SPELL)] void HandlePetCastSpell(PetCastSpell cast) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + ClientCastRequest castRequest = new ClientCastRequest(); - castRequest.Timestamp = Time.UnixTime; + castRequest.Timestamp = Environment.TickCount; castRequest.SpellId = cast.Cast.SpellID; castRequest.SpellXSpellVisualId = cast.Cast.SpellXSpellVisualID; castRequest.ClientGUID = cast.Cast.CastID; @@ -205,7 +214,7 @@ void HandlePetCastSpell(PetCastSpell cast) } else { - if (GetSession().GameState.CurrentClientPetCast.Timestamp + 10 < castRequest.Timestamp) + if (GetSession().GameState.CurrentClientPetCast.Timestamp + 10000 < castRequest.Timestamp) { SendCastRequestFailed(GetSession().GameState.CurrentClientPetCast, true); GetSession().GameState.CurrentClientPetCast = null; @@ -237,8 +246,12 @@ void HandlePetCastSpell(PetCastSpell cast) [PacketHandler(Opcode.CMSG_USE_ITEM)] void HandleUseItem(UseItem use) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + ClientCastRequest castRequest = new ClientCastRequest(); - castRequest.Timestamp = Time.UnixTime; + castRequest.Timestamp = Environment.TickCount; castRequest.SpellId = use.Cast.SpellID; castRequest.SpellXSpellVisualId = use.Cast.SpellXSpellVisualID; castRequest.ClientGUID = use.Cast.CastID; @@ -253,7 +266,7 @@ void HandleUseItem(UseItem use) } else { - if (GetSession().GameState.CurrentClientNormalCast.Timestamp + 10 < castRequest.Timestamp) + if (GetSession().GameState.CurrentClientNormalCast.Timestamp + 10000 < castRequest.Timestamp) { SendCastRequestFailed(GetSession().GameState.CurrentClientNormalCast, false); GetSession().GameState.CurrentClientNormalCast = null; @@ -288,6 +301,10 @@ void HandleUseItem(UseItem use) [PacketHandler(Opcode.CMSG_CANCEL_CAST)] void HandleCancelCast(CancelCast cast) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + WorldPacket packet = new WorldPacket(Opcode.CMSG_CANCEL_CAST); if (LegacyVersion.AddedInVersion(ClientVersionBuild.V3_0_2_9056)) packet.WriteUInt8(0); @@ -297,10 +314,24 @@ void HandleCancelCast(CancelCast cast) [PacketHandler(Opcode.CMSG_CANCEL_CHANNELLING)] void HandleCancelChannelling(CancelChannelling cast) { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + WorldPacket packet = new WorldPacket(Opcode.CMSG_CANCEL_CHANNELLING); packet.WriteInt32(cast.SpellID); SendPacketToServer(packet); } + [PacketHandler(Opcode.CMSG_CANCEL_AUTO_REPEAT_SPELL)] + void HandleCancelAutoRepeatSpell(CancelAutoRepeatSpell aura) + { + // Artificial lag is needed for spell packets, + // or spells will bug out and glow if spammed. + System.Threading.Thread.Sleep(20); + + WorldPacket packet = new WorldPacket(Opcode.CMSG_CANCEL_AUTO_REPEAT_SPELL); + SendPacketToServer(packet); + } [PacketHandler(Opcode.CMSG_CANCEL_AURA)] void HandleCancelAura(CancelAura aura) { @@ -338,12 +369,6 @@ void HandleCancelMountAura(EmptyClientPacket cancel) } } } - [PacketHandler(Opcode.CMSG_CANCEL_AUTO_REPEAT_SPELL)] - void HandleCancelAutoRepeatSpell(CancelAutoRepeatSpell aura) - { - WorldPacket packet = new WorldPacket(Opcode.CMSG_CANCEL_AUTO_REPEAT_SPELL); - SendPacketToServer(packet); - } [PacketHandler(Opcode.CMSG_LEARN_TALENT)] void HandleLearnTalent(LearnTalent talent) { @@ -366,5 +391,16 @@ void HandleSelfRes(SelfRes revive) WorldPacket packet = new WorldPacket(Opcode.CMSG_SELF_RES); SendPacketToServer(packet); } + + [PacketHandler(Opcode.CMSG_TOTEM_DESTROYED)] + void HandleTotemDestroyed(TotemDestroyed totem) + { + if (LegacyVersion.RemovedInVersion(ClientVersionBuild.V2_0_1_6180)) + return; + + WorldPacket packet = new WorldPacket(Opcode.CMSG_TOTEM_DESTROYED); + packet.WriteUInt8(totem.Slot); + SendPacketToServer(packet); + } } } diff --git a/HermesProxy/World/Server/PacketHandlers/TaxiHandler.cs b/HermesProxy/World/Server/PacketHandlers/TaxiHandler.cs index 95baa863..a35a76b4 100644 --- a/HermesProxy/World/Server/PacketHandlers/TaxiHandler.cs +++ b/HermesProxy/World/Server/PacketHandlers/TaxiHandler.cs @@ -5,6 +5,7 @@ using HermesProxy.World.Objects; using HermesProxy.World.Server.Packets; using System; +using System.Collections.Generic; namespace HermesProxy.World.Server { @@ -31,12 +32,118 @@ void HandleEnableTaxiNode(InteractWithNPC interact) [PacketHandler(Opcode.CMSG_ACTIVATE_TAXI)] void HandleActivateTaxi(ActivateTaxi taxi) { - WorldPacket packet = new WorldPacket(Opcode.CMSG_ACTIVATE_TAXI); - packet.WriteGuid(taxi.FlightMaster.To64()); - packet.WriteUInt32(GetSession().GameState.CurrentTaxiNode); - packet.WriteUInt32(taxi.Node); - SendPacketToServer(packet); + // direct path exist + if (TaxiPathExist(GetSession().GameState.CurrentTaxiNode, taxi.Node)) + { + WorldPacket packet = new WorldPacket(Opcode.CMSG_ACTIVATE_TAXI); + packet.WriteGuid(taxi.FlightMaster.To64()); + packet.WriteUInt32(GetSession().GameState.CurrentTaxiNode); + packet.WriteUInt32(taxi.Node); + SendPacketToServer(packet); + } + else // find shortest path + { + HashSet path = GetTaxiPath(GetSession().GameState.CurrentTaxiNode, taxi.Node, GetSession().GameState.UsableTaxiNodes); + if (path.Count <= 1) // no nodes found + return; + + WorldPacket packet = new WorldPacket(Opcode.CMSG_ACTIVATE_TAXI_EXPRESS); + packet.WriteGuid(taxi.FlightMaster.To64()); + packet.WriteUInt32(0); // total cost, not used + packet.WriteUInt32((uint)path.Count); // node count + foreach (uint itr in path) + packet.WriteUInt32(itr); + SendPacketToServer(packet); + } GetSession().GameState.IsWaitingForTaxiStart = true; } + bool TaxiPathExist(uint from, uint to) + { + foreach (var itr in GameData.TaxiPaths) + { + if (itr.Value.From == from && itr.Value.To == to || + itr.Value.From == to && itr.Value.To == from) + return true; + } + return false; + } + bool IsTaxiNodeKnown(uint node, List usableNodes) + { + byte field = (byte)((node - 1) / 8); + uint submask = (uint)1 << (byte)((node - 1) % 8); + return (usableNodes[field] & submask) == submask; + } + HashSet GetTaxiPath(uint from, uint to, List usableNodes) + { + // shortest path node list + HashSet nodes = new HashSet { from }; + // copy taxi nodes graph and disable unknown nodes + int[,] graphCopy = new int[GameData.TaxiNodesGraph.GetLength(0), GameData.TaxiNodesGraph.GetLength(1)]; + Buffer.BlockCopy(GameData.TaxiNodesGraph, 0, graphCopy, 0, GameData.TaxiNodesGraph.Length * sizeof(uint)); + for (uint i = 1; i < graphCopy.GetLength(0); i++) + { + if (!IsTaxiNodeKnown(i, usableNodes)) + { + for (uint itr = 0; itr < graphCopy.GetLength(1); itr++) + graphCopy[i, itr] = 0; + + for (uint itr = 0; itr < graphCopy.GetLength(0); itr++) + graphCopy[itr, i] = 0; + } + } + int minDist = Dijkstra(graphCopy, (int)from, (int)to, graphCopy.GetLength(0), nodes); + return nodes; + } + int MinDistance(int[] dist, bool[] sptSet, int vCnt) + { + int min = int.MaxValue, min_index = -1; + for (int v = 0; v < vCnt; v++) + if (sptSet[v] == false && dist[v] <= min) + { + min = dist[v]; + min_index = v; + } + return min_index; + } + void SavePath(int[] parent, int j, HashSet nodes) + { + if (parent[j] == -1) + return; + SavePath(parent, parent[j], nodes); + nodes.Add((uint)j); + } + // taken from https://www.geeksforgeeks.org/printing-paths-dijkstras-shortest-path-algorithm/ + int Dijkstra(int[,] graph, int src, int dest, int vCnt, HashSet nodes) + { + int[] dist = new int[vCnt]; + int[] parent = new int[vCnt]; + bool[] sptSet = new bool[vCnt]; + for (int i = 0; i < vCnt; i++) + { + dist[i] = int.MaxValue; + sptSet[i] = false; + parent[i] = -1; + } + dist[src] = 0; + for (int count = 0; count < vCnt - 1; count++) + { + int u = MinDistance(dist, sptSet, vCnt); + sptSet[u] = true; + + for (int v = 0; v < vCnt; v++) + { + if (!sptSet[v] && graph[u, v] != 0 && + dist[u] != int.MaxValue && dist[u] + graph[u, v] < dist[v]) + { + parent[v] = u; + dist[v] = dist[u] + graph[u, v]; + } + } + } + // save shortest path + SavePath(parent, dest, nodes); + // return shortest path distance + return dist[dest]; + } } } diff --git a/HermesProxy/World/Server/Packets/CharacterPackets.cs b/HermesProxy/World/Server/Packets/CharacterPackets.cs index dde854ab..3723a892 100644 --- a/HermesProxy/World/Server/Packets/CharacterPackets.cs +++ b/HermesProxy/World/Server/Packets/CharacterPackets.cs @@ -240,6 +240,106 @@ public void Write(WorldPacket data) } } + public class AccountCharacterListEntry + { + public void Write(WorldPacket packet) + { + packet.WritePackedGuid128(AccountId); + packet.WritePackedGuid128(CharacterGuid); + packet.WriteUInt32(RealmVirtualAddress); + packet.WriteUInt8((byte)Race); + packet.WriteUInt8((byte)Class); + packet.WriteUInt8((byte)Sex); + packet.WriteUInt8(Level); + + packet.WriteInt64(LastLoginUnixSec); + + packet.ResetBitPos(); + packet.WriteBits(Name.GetByteCount(), 6); + packet.WriteBits(RealmName.GetByteCount(), 9); + + packet.WriteString(Name); + packet.WriteString(RealmName); + } + + public WowGuid128 AccountId; + + public uint RealmVirtualAddress; + public string RealmName; + + public WowGuid128 CharacterGuid; + public string Name; + public Race Race; + public Class Class; + public Gender Sex; + public byte Level; + public long LastLoginUnixSec; + } + + public class GetAccountCharacterListRequest : ClientPacket + { + public GetAccountCharacterListRequest(WorldPacket packet) : base(packet) { } + + public override void Read() + { + Token = _worldPacket.ReadUInt32(); + } + + public uint Token = 0; + } + + public class GetAccountCharacterListResult : ServerPacket + { + public GetAccountCharacterListResult() : base(Opcode.SMSG_GET_ACCOUNT_CHARACTER_LIST_RESULT) + { + } + + public override void Write() + { + _worldPacket.WriteUInt32(Token); + _worldPacket.WriteUInt32((uint)CharacterList.Count); + + _worldPacket.ResetBitPos(); + _worldPacket.WriteBit(false); // unknown bit + + foreach (var entry in CharacterList) + entry.Write(_worldPacket); + } + + public uint Token = 0; + public List CharacterList = new(); + } + + public class GenerateRandomCharacterNameRequest : ClientPacket + { + public GenerateRandomCharacterNameRequest(WorldPacket packet) : base(packet) { } + + public override void Read() + { + Race = (Race)_worldPacket.ReadUInt8(); + Sex = (Gender)_worldPacket.ReadUInt8(); + } + + public Race Race; + public Gender Sex; + } + + public class GenerateRandomCharacterNameResult : ServerPacket + { + public GenerateRandomCharacterNameResult() : base(Opcode.SMSG_GENERATE_RANDOM_CHARACTER_NAME_RESULT) { } + + public override void Write() + { + _worldPacket.WriteBool(Success); + + _worldPacket.WriteBits(Name.Length, 6); + _worldPacket.WriteString(Name); + } + + public bool Success; + public string Name = ""; + } + public class ChrCustomizationChoice : IComparable { public uint ChrCustomizationOptionID; @@ -982,4 +1082,40 @@ public void Write(WorldPacket data) public int PersonalGamesPlayed; public int PersonalRating; } + + public class CharacterRenameRequest : ClientPacket + { + public CharacterRenameRequest(WorldPacket packet) : base(packet) { } + + public override void Read() + { + Guid = _worldPacket.ReadPackedGuid128(); + NewName = _worldPacket.ReadString(_worldPacket.ReadBits(6)); + } + + public string NewName; + public WowGuid128 Guid; + } + + public class CharacterRenameResult : ServerPacket + { + public CharacterRenameResult() : base(Opcode.SMSG_CHARACTER_RENAME_RESULT) { } + + public override void Write() + { + _worldPacket.WriteUInt8((byte)Result); + _worldPacket.WriteBit(Guid != null); + _worldPacket.WriteBits(Name.GetByteCount(), 6); + _worldPacket.FlushBits(); + + if (Guid != null) + _worldPacket.WritePackedGuid128(Guid); + + _worldPacket.WriteString(Name); + } + + public string Name = ""; + public Enums.Classic.ResponseCodes Result = 0; + public WowGuid128 Guid; + } } diff --git a/HermesProxy/World/Server/Packets/ItemPackets.cs b/HermesProxy/World/Server/Packets/ItemPackets.cs index d798af2f..2e37f540 100644 --- a/HermesProxy/World/Server/Packets/ItemPackets.cs +++ b/HermesProxy/World/Server/Packets/ItemPackets.cs @@ -654,4 +654,55 @@ public override void Write() public uint Slot; public WowGuid128 OwnerGuid; } + + class EnchantmentLog : ServerPacket + { + public EnchantmentLog() : base(Opcode.SMSG_ENCHANTMENT_LOG) { } + + public override void Write() + { + _worldPacket.WritePackedGuid128(Owner); + _worldPacket.WritePackedGuid128(Caster); + _worldPacket.WritePackedGuid128(ItemGUID); + _worldPacket.WriteInt32(ItemID); + _worldPacket.WriteInt32(Enchantment); + _worldPacket.WriteInt32(EnchantSlot); + } + public WowGuid128 Owner; + public WowGuid128 Caster; + public WowGuid128 ItemGUID; + public int ItemID; + public int Enchantment; + public int EnchantSlot = 1; + } + + public class CancelTempEnchantment : ClientPacket + { + public CancelTempEnchantment(WorldPacket packet) : base(packet) { } + + public override void Read() + { + EnchantmentSlot = _worldPacket.ReadUInt32(); + } + + public uint EnchantmentSlot; + } + + public class WrapItem : ClientPacket + { + public WrapItem(WorldPacket packet) : base(packet) { } + + public override void Read() + { + _worldPacket.ReadUInt8(); // Unknown Value. Usually 128 + GiftBag = _worldPacket.ReadUInt8(); + GiftSlot = _worldPacket.ReadUInt8(); + ItemBag = _worldPacket.ReadUInt8(); + ItemSlot = _worldPacket.ReadUInt8(); + } + public byte GiftBag; + public byte GiftSlot; + public byte ItemBag; + public byte ItemSlot; + } } diff --git a/HermesProxy/World/Server/Packets/MovementPackets.cs b/HermesProxy/World/Server/Packets/MovementPackets.cs index bfa7d5b6..69ced884 100644 --- a/HermesProxy/World/Server/Packets/MovementPackets.cs +++ b/HermesProxy/World/Server/Packets/MovementPackets.cs @@ -415,6 +415,30 @@ public override void Read() public MovementAck Ack; } + class MoveSetCollisionHeight : ServerPacket + { + public MoveSetCollisionHeight() : base(Opcode.SMSG_MOVE_SET_COLLISION_HEIGHT) { } + + public override void Write() + { + _worldPacket.WritePackedGuid128(MoverGUID); + _worldPacket.WriteUInt32(SequenceIndex); + _worldPacket.WriteFloat(Height); + _worldPacket.WriteFloat(Scale); + _worldPacket.WriteUInt8(Reason); + _worldPacket.WriteUInt32(MountDisplayID); + _worldPacket.WriteInt32(ScaleDuration); + } + + public WowGuid128 MoverGUID; + public uint SequenceIndex = 1; + public float Height = 1.0f; + public float Scale = 1.0f; + public byte Reason; + public uint MountDisplayID; + public int ScaleDuration = 2000; + } + class MoveKnockBack : ServerPacket { public MoveKnockBack() : base(Opcode.SMSG_MOVE_KNOCK_BACK, ConnectionType.Instance) { } @@ -504,6 +528,19 @@ public override void Read() public WowGuid128 MoverGUID; } + + public class InitActiveMoverComplete : ClientPacket + { + public InitActiveMoverComplete(WorldPacket packet) : base(packet) { } + + public override void Read() + { + Ticks = _worldPacket.ReadUInt32(); + } + + public uint Ticks; + } + class MoveSplineDone : ClientPacket { public MoveSplineDone(WorldPacket packet) : base(packet) { } diff --git a/HermesProxy/World/Server/Packets/SpellPackets.cs b/HermesProxy/World/Server/Packets/SpellPackets.cs index 935f42c9..d2381597 100644 --- a/HermesProxy/World/Server/Packets/SpellPackets.cs +++ b/HermesProxy/World/Server/Packets/SpellPackets.cs @@ -1527,6 +1527,41 @@ public override void Read() public uint SpellId; } + class TotemCreated : ServerPacket + { + public TotemCreated() : base(Opcode.SMSG_TOTEM_CREATED) { } + + public override void Write() + { + _worldPacket.WriteUInt8(Slot); + _worldPacket.WritePackedGuid128(Totem); + _worldPacket.WriteUInt32(Duration); + _worldPacket.WriteUInt32(SpellId); + _worldPacket.WriteFloat(TimeMod); + _worldPacket.WriteBit(CannotDismiss); + _worldPacket.FlushBits(); + } + public byte Slot; + public WowGuid128 Totem; + public uint Duration; + public uint SpellId; + public float TimeMod = 1; + public bool CannotDismiss = false; + } + + class TotemDestroyed : ClientPacket + { + public TotemDestroyed(WorldPacket packet) : base(packet) { } + + public override void Read() + { + Slot = _worldPacket.ReadUInt8(); + Guid = _worldPacket.ReadPackedGuid128(); + } + public byte Slot; + public WowGuid Guid; + } + public class SetSpellModifier : ServerPacket { public SetSpellModifier(Opcode opcode) : base(opcode, ConnectionType.Instance) { } diff --git a/HermesProxy/World/Server/Packets/UpdatePackets.cs b/HermesProxy/World/Server/Packets/UpdatePackets.cs index 8b7fc55e..2f90c618 100644 --- a/HermesProxy/World/Server/Packets/UpdatePackets.cs +++ b/HermesProxy/World/Server/Packets/UpdatePackets.cs @@ -103,10 +103,22 @@ public void InitializePlaceholders() if (CreateData.MoveInfo != null) { + if (CreateData.MoveInfo.WalkSpeed == 0) + CreateData.MoveInfo.WalkSpeed = 2.5f; + if (CreateData.MoveInfo.RunSpeed == 0) + CreateData.MoveInfo.RunSpeed = 7; + if (CreateData.MoveInfo.RunBackSpeed == 0) + CreateData.MoveInfo.RunBackSpeed = 4.5f; + if (CreateData.MoveInfo.SwimSpeed == 0) + CreateData.MoveInfo.SwimSpeed = 4.722222f; + if (CreateData.MoveInfo.SwimBackSpeed == 0) + CreateData.MoveInfo.SwimBackSpeed = 2.5f; if (CreateData.MoveInfo.FlightSpeed == 0) CreateData.MoveInfo.FlightSpeed = 7; if (CreateData.MoveInfo.FlightBackSpeed == 0) CreateData.MoveInfo.FlightBackSpeed = 4.5f; + if (CreateData.MoveInfo.TurnRate == 0) + CreateData.MoveInfo.TurnRate = 3.141594f; if (CreateData.MoveInfo.PitchRate == 0) CreateData.MoveInfo.PitchRate = CreateData.MoveInfo.TurnRate; if (CreateData.MoveInfo.Flags.HasAnyFlag(MovementFlagModern.WalkMode) && (CreateData.MoveSpline != null)) diff --git a/HermesProxy/World/Server/WorldSocket.cs b/HermesProxy/World/Server/WorldSocket.cs index 18a5b7ec..8ffd9530 100644 --- a/HermesProxy/World/Server/WorldSocket.cs +++ b/HermesProxy/World/Server/WorldSocket.cs @@ -60,8 +60,6 @@ public partial class WorldSocket : SocketBase ConnectToKey _instanceConnectKey; RealmId _realmId; - long _LastPingTime; - ZLib.z_stream _compressionStream; ConcurrentDictionary _clientPacketTable = new(); GlobalSessionData _globalSession; @@ -373,7 +371,7 @@ public void SendPacket(ServerPacket packet) buffer.WriteBytes(compressedData, compressedSize); packetSize = (int)(compressedSize + 12); - opcode = (ushort)Opcodes.GetOpcodeValueForVersion(Opcode.SMSG_COMPRESSED_PACKET, Framework.Settings.ClientBuild); + opcode = (ushort)ModernVersion.GetCurrentOpcode(Opcode.SMSG_COMPRESSED_PACKET); System.Diagnostics.Trace.Assert(opcode != 0); data = buffer.GetData(); @@ -454,7 +452,7 @@ void HandleAuthSession(AuthSession authSession) void HandleAuthSessionCallback(AuthSession authSession) { - RealmBuildInfo buildInfo = Global.RealmMgr.GetBuildInfo(GetSession().Build); + RealmBuildInfo buildInfo = GetSession().RealmManager.GetBuildInfo(GetSession().Build); if (buildInfo == null) { SendAuthResponseError(BattlenetRpcErrorCode.BadVersion); @@ -539,7 +537,7 @@ void HandleAuthSessionCallback(AuthSession authSession) _realmId = new RealmId((byte)authSession.RegionID, (byte)authSession.BattlegroupID, authSession.RealmID); GetSession().WorldClient = new HermesProxy.World.Client.WorldClient(); - if (!GetSession().WorldClient.ConnectToWorldServer(RealmManager.Instance.GetRealm(_realmId), GetSession())) + if (!GetSession().WorldClient.ConnectToWorldServer(GetSession().RealmManager.GetRealm(_realmId), GetSession())) { SendAuthResponseError(BattlenetRpcErrorCode.BadServer); Log.Print(LogType.Error, "The WorldClient failed to connect to the selected world server!"); @@ -709,7 +707,7 @@ void HandleEnterEncryptedModeAck() SendClientCacheVersion(0); SendAvailableHotfixes(); SendBnetConnectionState(1); - GetSession().AccountDataMgr = new AccountDataManager(GetSession().Username, RealmManager.Instance.GetRealm(_realmId).Name); + GetSession().AccountDataMgr = new AccountDataManager(GetSession().Username, GetSession().RealmManager.GetRealm(_realmId).Name); GetSession().RealmSocket = this; } else @@ -742,7 +740,7 @@ public void SendAuthResponse(BattlenetRpcErrorCode code, bool queued, uint queue response.SuccessInfo.VirtualRealmAddress = _realmId.GetAddress(); response.SuccessInfo.Time = (uint)Time.UnixTime; - var realm = RealmManager.Instance.GetRealm(_realmId); + var realm = GetSession().RealmManager.GetRealm(_realmId); // Send current home realm. Also there is no need to send it later in realm queries. response.SuccessInfo.VirtualRealms.Add(new VirtualRealmInfo(realm.Id.GetAddress(), true, false, realm.Name, realm.NormalizedName)); @@ -1021,15 +1019,6 @@ public void SendServerTimeOffset() void HandlePing(Ping ping) { - if (_LastPingTime == 0) - _LastPingTime = Time.UnixTime; // for 1st ping - else - { - long now = Time.UnixTime; - long diff = now - _LastPingTime; - _LastPingTime = now; - } - SendPacket(new Pong(ping.Serial)); } diff --git a/HermesProxy/World/SniffFile.cs b/HermesProxy/World/SniffFile.cs index a3c2b7ea..5218fede 100644 --- a/HermesProxy/World/SniffFile.cs +++ b/HermesProxy/World/SniffFile.cs @@ -11,7 +11,14 @@ public class SniffFile { public SniffFile(string fileName, ushort build) { - _fileWriter = new System.IO.BinaryWriter(File.Open(fileName + "_" + build + "_" + Time.UnixTime + ".pkt", FileMode.Create)); + string path = "PacketsLog"; + if (!Directory.Exists(path)) + Directory.CreateDirectory(path); + + string file = fileName + "_" + build + "_" + Time.UnixTime + ".pkt"; + path = Path.Combine(path, file); + + _fileWriter = new System.IO.BinaryWriter(File.Open(path, FileMode.Create)); _gameVersion = build; } BinaryWriter _fileWriter; @@ -42,7 +49,7 @@ public void WritePacket(uint opcode, bool isFromClient, byte[] data) uint unixtime = (uint)Time.UnixTime; _fileWriter.Write(unixtime); - _fileWriter.Write(unixtime); // tick count + _fileWriter.Write(Environment.TickCount); if (isFromClient) { diff --git a/README.md b/README.md index f3eb6a11..402345bf 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,25 @@ -# HermesProxy +# HermesProxy ![Build](https://github.com/WowLegacyCore/HermesProxy/actions/workflows/Build_Proxy.yml/badge.svg) -This project enables play on existing legacy WoW emulation cores using the modern clients. It serves as a translation layer, converting all network traffic to the appropriate format each side can understand. There are 4 major components to the application. The modern BNetServer to which the client initially logs into. The legacy AuthClient which will in turn login to the remote authentication server (realmd). The modern WorldServer to which the game client will connect once a realm has been selected. And the legacy WorldClient which communicates with the remote world server (mangosd). +This project enables play on existing legacy WoW emulation cores using the modern clients. It serves as a translation layer, converting all network traffic to the appropriate format each side can understand. -### Modern Versions Supported -- 1.14.0 -- 2.5.2 +There are 4 major components to the application: +- The modern BNetServer to which the client initially logs into. +- The legacy AuthClient which will in turn login to the remote authentication server (realmd). +- The modern WorldServer to which the game client will connect once a realm has been selected. +- The legacy WorldClient which communicates with the remote world server (mangosd). -### Legacy Versions Supported -- 1.12.1 -- 2.4.3 +## Supported Versions + +| Modern Versions | Legacy Versions | +|-----------------|-----------------| +| 1.14.0 | 1.12.1 | +| 2.5.2 | 2.4.3 | ## Usage Instructions - Edit the app's config to specify the exact versions of your game client and the remote server, along with the address. - Go into your game folder, in the Classic or Classic Era subdirectory, and edit WTF/Config.wtf to set the portal to 127.0.0.1. -- Download the static auth seed branch of the [Arctium Launcher](https://github.com/Arctium/WoW-Launcher/tree/static-auth-seed) into the main game folder, and then run it with the "--version=ClassicEra" (or Classic for TBC) argument. +- Download the static auth seed branch of the [Arctium Launcher](https://github.com/Arctium/WoW-Launcher/tree/static-auth-seed) into the main game folder, and then run it with the `--version=ClassicEra` (or Classic for TBC) argument. - Start the proxy app and login through the game with your usual credentials. example start.bat @@ -29,3 +34,9 @@ example start.bat ## Acknowledgements Parts of this poject's code are based on [CypherCore](https://github.com/CypherCore/CypherCore) and [BotFarm](https://github.com/jackpoz/BotFarm). I would like to extend my sincere thanks to these projects, as the creation of this app might have never happened without them. And I would also like to expressly thank [Modox](https://github.com/mdx7) for all his work on reverse engineering the classic clients and all the help he has personally given me. + +## Download HermesProxy +Stable Downloads: [Releases](https://github.com/WowLegacyCore/HermesProxy/releases) + +Latest Downloads (development, unstable): [Build Artifacts](https://github.com/WowLegacyCore/HermesProxy/actions/workflows/Build_Proxy.yml?query=branch%3Amaster) +(click at the latest successful build and look at the artifacts at the bottom)